1

what will be the best way to load data from csv to Azure cosmos graph ( gremline ) DB? I checked below link for.net https://learn.microsoft.com/en-us/azure/cosmos-db/create-graph-dotnet

but not getting full phase for load data from csv . Any suggestion for bulk load from csv file

Note : I read below link for : Azure cosmos db bulk import

Jack
  • 21
  • 1
  • 5

1 Answers1

0

If you want to bulk import from CSV to Azure cosmos graph, you can consider using the SDK graph BulkExecutor .NET library. Regarding how to use the sdk, please refer to the sample

Jim Xu
  • 21,610
  • 2
  • 19
  • 39
  • The graph bulk executor seems to simply spawn lots of tasks to upload the gremlin elements in parallel (rather than, say, maintain one or more streams to continuously upload a large number of gremlin elements). This approach seems to quickly saturate the request limit. The Azure SDK nuget package overview doesn't even list a stable Cosmos nuget package at the time of writing: https://azure.github.io/azure-sdk/releases/latest/dotnet.html – Bent Rasmussen Mar 25 '22 at 03:06