Home > Mobile >  Can we load the Wikidata dumps to AWS Neptune and query using Gremlin?
Can we load the Wikidata dumps to AWS Neptune and query using Gremlin?

Time:09-28

Is it possible to load the Wikidata dumps into AWS Neptune and query the data using Apache TinkerPop Gremlin?

Is there a straight-forward way to load the json/ttl/nt dumps into Neptune (or) should the dumps be in Gremlin format?

CodePudding user response:

While Neptune supports both RDF and Labeled Property Graph frameworks, it is not currently possible to load data in an RDF format and query with any of the Property Graph query languages. You would need to transform the Wikidata dumps into Neptune's CSV format for Property Graph [1] first. Then you could load this data and query via Gremlin or openCypher (the two supported Property Graph query languages).

  • Related