Uttkarsh Jain
Uttkarsh Jain

Reputation: 228

Gremlin Scala - Bulk Loading of vertices

we have some 5 different types of vertice labels which will cumulatively have 1 million vertices.

Currently loading full vertices is very bad in performance. Is there a way to do bulk loading with better performance.

I am using DSE 6.0 and we are using graph via gremlin scala.

Upvotes: 0

Views: 95

Answers (1)

jlacefie
jlacefie

Reputation: 614

The best way to do bulk loading in DSE Graph 6.0 is with DSE GraphFrames - https://docs.datastax.com/en/dse/6.0/dse-dev/datastax_enterprise/graph/graphAnalytics/dseGraphFrameOverview.html

We've seen in internal benchmarks good results with DSE GraphFrames vs. pure Tinkerpop. Have you tried this approach yet?

Upvotes: 2

Related Questions