-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
kind/bugSomething is broken.Something is broken.status/more-info-neededThe issue has been sent back to the reporter asking for clarificationsThe issue has been sent back to the reporter asking for clarifications
Description
What version of Dgraph are you using?
1.1.0
Have you tried reproducing the issue with the latest release?
yes
What is the hardware spec (RAM, OS)?
aws: i3.large
ram: 15gb
cpu: 2 vcpu
os: Canonical, Ubuntu, 16.04 LTS, amd64 xenial image build on 2019-06-17, 4.4.0-1085-aws
Steps to reproduce the issue (command/config used to run Dgraph).
- Running queries after not running set mutation in a few days
query:
{
get(func: eq(merchant_id, 1))
@filter(eq(team_id, 1) AND
eq(type, "type") AND
eq(menu_name, "name") )
@recurse(depth:10, loop:true)
{
uid merchant_id team_id external_id name display_name sub_type type images description price origin times menu_name extra_data
contains @facets
}
}
schema:
<contains>: [uid] .
<description>: string .
<display_name>: string .
<external_id>: string @index(exact) .
<extra_data>: string .
<id>: int @index(int) .
<images>: [string] .
<is_in_tree>: bool .
<menu_name>: string @index(exact) .
<merchant_id>: int @index(int) .
<name>: string .
<origin>: string .
<price>: float .
<sub_type>: string .
<team_id>: int @index(int) .
<times>: string .
<type>: string @index(exact) .
- CPU become very high, getting DEADLINE_EXCEEDED (we set the deadline to 60000 milliseconds, usually the queries take 5-6 seconds)
- When we are running some set mutation with fields that are indexed, the queries starting to work and CPU return to normal
Command and config we use to run graph:
zero:
/opt/dgraph/dgraph zero --config=/etc/dgraph/zero.yml --wal=/var/lib/dgraph-zero --log_dir=/var/log/dgraph/zero
config:
cat /etc/dgraph/zero.yml
idx: 174338185313
peer: dgraph-zero.service.production.consul:5080
my: x.x.x.x:5080
replicas: 3
alpha:
/opt/dgraph/dgraph alpha --config=/etc/dgraph/alpha.yml --wal=/data/dgraph/w --postings=/data/dgraph/p --export=/mnt/backup/export --log_dir=/var/log/dgraph/alpha
config:
cat /etc/dgraph/alpha.yml
badger.vlog: disk
lru_mb: 2048
my: x.x.x.x:7080
Expected behaviour and actual result.
Expected to get query result
received DEADLINE_EXCEEDED
eliranha, stolenng, yosiat and taintedkernel
Metadata
Metadata
Assignees
Labels
kind/bugSomething is broken.Something is broken.status/more-info-neededThe issue has been sent back to the reporter asking for clarificationsThe issue has been sent back to the reporter asking for clarifications