Report a Dgraph Bug
What version of Dgraph are you using?
21.03
Have you tried reproducing the issue with the latest release?
What is the hardware spec (RAM, OS)?
Ubuntu
Steps to reproduce the issue (command/config used to run Dgraph).
- Start Alpha and Zero with docker-compose:
version: "3.2"
services:
zero:
image: dgraph/dgraph:latest
volumes:
- /data/zero4:/dgraph4
ports:
# - 5080:5080
- 6084:6080
restart: on-failure
command: dgraph zero --my=zero:5080
alpha:
image: dgraph/dgraph:latest
volumes:
- /data/server17:/dgraph
- ./hmac_secret_file:/dgraph/acl/hmac_secret_file
ports:
- 8084:8080
- 9084:9080
restart: on-failure
command: dgraph alpha --my=alpha:7080 --zero=zero:5080 --security whitelist=172.17.0.0:172.30.0.0,192.168.0.0,192.168.64.1,192.168.32.1,192.168.80.1,192.168.96.1,192.168.0.1,192.168.1.1:192.168.250.1,172.22.0.0,172.23.0.1 --graphql lambda-url=http://lambda:8686/graphql-worker
- Create schema with node type:
type User @secret(field: "password") {
id: ID!
email: String! @id @search(by: [hash])
}
- Update schema
- Create a node of the User type:
curl --location --request POST 'localhost:8084/graphql' \
--header 'Content-Type: application/json' \
--data-raw '{"query":"# Creation of the User1\nmutation {\n addUser (input: {email:\"zmajew@gmail.com\"}) {\n user {\n id \n email\n }\n }\n}","variables":{}}'
- Delete a node of the type User from Ratel and check if the node is deleted:
upsert {
query {
users as var (func: has(<dgraph.type>)) @filter(eq(<dgraph.type>, "User")) {
uid
}
}
mutation {
delete {
uid(users) * * .
}
}
}
{
q(func: type(User)) {
uid
User.email
}
}
- Shut down Alpha and Zero with docker-compose down
- Start Alpha and Zero with docker-compose up -d
- Go to Ratel and check if the deleted User node exists (keep trying several times)
Expected behavior and actual result.
- Deleted node appears.
(some times it appears for just a period of time, but sometimes it stays. It will appear on any dgraph restart) - GraphQL endpoint returns an error that schema does not exist after the restart.