I have 1 lakh (100,000) records in MongoDb. I need to ingest them in Dgraph.
steps I followed:
- created a rdf file for the records using java code
It took nearly 1 hour for the creation of rdf file for 1 lakh records
2)used bulk loader to ingest data
I am getting some errors due to improper rdf tuples so i used the --ignore errors flag - Data got ingested but only 60k records got ingested.
what I wanted to know:
- can we check what are the errors while bulk loading ?If yes, how?
- Best approach to convert mongoDb document to RDF
2)Can you suggest me good approach for parsing the rdf files properly? - what might be the reasons for that much difference in no of records that got ingested?