Azure Data Factory和GraphDb

问题描述 投票:2回答:1

在Azure环境中,我有一个Azure SQL Db和一个CosmosDb图。我使用Azure数据工厂需要将数据从Sql db插入/更新到GraphDb。

我的想法是,我需要先将数据转换为json,然后将其插入到GraphDb中。这是要走的路吗?还有其他方法吗?

谢谢。

azure azure-cosmosdb azure-data-factory
1个回答
2
投票

1。基于ADF copy activity connector和线程:@silent提到的How can we create Azure's Data Factory pipeline with Cosoms DB (with Graph API) as data sink ?,到目前为止ADF不支持Cosmos db graph api连接器。您可以在此反馈link中对此功能进行投票,该反馈将于2019年4月12日更新。

2。目前,Gremlin API帐户不支持导入Cosmos数据库迁移工具。请查看此链接:https://docs.microsoft.com/en-us/azure/cosmos-db/import-data

3。您现在可以了解graph bulk executor .NET library。这是示例应用程序:git clone https://github.com/Azure-Samples/azure-cosmosdb-graph-bulkexecutor-dotnet-getting-started.gi

© www.soinside.com 2019 - 2024. All rights reserved.