Dgraph live loader error: cannot be greater than lease

Thanks.

I retried with bland nodes. And I found that dgraph take the same blank node in multiple RDFs are different nodes, which is not my expectation. Could you please help me with this? Thanks!

command1: dgraph live -r demo1.rdf -s demo.schema
command2: dgraph live -r demo2.rdf

both demo1.rdf and demo2.rdf have the same blank node “_:alice”, but dgraph take it as TWO nodes!!!

CONTENT in demo1.rdf:
_:alice “Alice” .
_:bob “Bob” .
_:charlie “Charlie” .
_:dave “Dave” .
_:alice _:bob .

CONTENT in demo2.rdf:
_:alice _:charlie .
_:alice _:dave .

If I query with
{
test (func: has(friend)) {
uid
name
friend {
uid
name }
}
}

returns:
{
“data”: {
“test”: [
{
“uid”: “0x11171”,
“name”: “Alice”,
“friend”: [
{
“uid”: “0x13881”,
“name”: “Bob”
}
]
},
{
“uid”: “0x1d4c1”,
“friend”: [
{
“uid”: “0x1fbd1”
},
{
“uid”: “0x222e1”
}
]
}
]
}
}