Adding Data To Cosmos - is there a fast way? #807
-
What is the most efficient (fastest) way to add data to a Cosmos Graph. I have a graph with approx 2K nodes and 3K edges, using individual awaited actions (AddV, AddE) in a loop seems very slow Is there a beeter way to add this data? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
ToddShelton
Nov 4, 2022
Replies: 1 comment 1 reply
-
Microsoft's Bulk Executor library works well. It's fast and pretty easy to configure. The quick start should get you going. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
situssoft
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Microsoft's Bulk Executor library works well. It's fast and pretty easy to configure. The quick start should get you going.