Hello Everyone,
I have been using dgraph since v1.0.x, I migrated my data to v1.2.x and everything is working fine. Now that v1.2.x is about to reach its EOL, I am trying to migrate to v20.,07.x.
Here @MichelDiz told me that simple export from v1.2.x and bulk load in to v20.07.x should work.
I tried that and load was successful, now to verify data I am running following query:
{
vertices(func:has(dgraph.type)){
count(uid)
}
}
On v1.2.x it shows 22547
and on v20.07.x it shows 117
Also these 117 records only have uid not even showing dgraph.type.
Would appreciate if anyone can help me find the issue and rectify it.
My bulk load command:
dgraph bulk -f g01.rdf.gz -s g01.schema.gz --zero localhost:5110
Thanks alot.