After setting up a dgraph cluster of 5 zeros and 30 servers divided into 10 groups, I ingest some data, and try to run a query:
{yield(func: eq(___kind,"foobar"))
{
uid
expand(_all_)
}
}
Some dgraph server are able to execute expand all but some only show the uid,
If I query a particular property all dgraph servers are working as expected. My guess is there is a bug in the expand all function.
{yield(func: eq(___kind,"foobar"))
{
uid
name
}
}
Image dgraph/dgraph:master
Also a predicate (___kind) is corrupted, sometimes it will error with no predicate defined, other times it will not be returned on some results, other times it won’t be returned at all, other times it will be returned on all results.