datastore-connector-latest.jar 的来源在哪里?我可以将其添加为 Maven 依赖项吗?
Where is the source of datastore-connector-latest.jar? Could I add this as a maven dependency?
我从 https://cloud.google.com/hadoop/datastore-connector 那里得到了连接器
但我正在尝试将 datastore-connector
(以及 bigquery-connector
)添加为 pom 中的依赖项……我不知道这是否可能。我找不到合适的工件和groupId。
是否有一些包含 datastore-connector
的 Maven 存储库?
另外,我正在寻找datastore-connector
的出处,但没有找到。根据CHANGES.txt
中的注释,它似乎来自:
https://github.com/GoogleCloudPlatform/bigdata-interop
源应该在包 com.google.cloud.hadoop.io.datastore
(src/main/***/com/google/cloud/hadoop/io/datastore/
) 中,但它不在那里。
事实上,bigquery-connector
的来源似乎在GitHub along with its pom上,但是datastore-connector
的来源可用吗?
数据存储连接器源不可用,也没有包含该工件的 Maven 存储库。您最好的选择是按照 this helpful article.
中所述在您的源代码树中创建本地 raven 存储库
大卫在另一个答案中说的是正确的。为了详细说明,引擎盖下的连接器使用 Protocol Buffers SDK, and uses, for example, the QuerySplitter to define splits. In the near future, we will be posting more information to gcp-hadoop-announce 以及有关 Hadoop 数据存储连接器未来的进一步指导。
您可能想要熟悉其他可能更适合您的目的的 Datastore 功能,包括 Datastore backup to GCS, and this codelab 了解 AppEngine 友好的方法以从 Datastore 中提取数据并将其加载到 BigQuery 中进行分析。您可能会在该页面的顶部注意到一个公告,该公告可用于将 Datastore 备份直接后端加载到 BigQuery 中。
我从 https://cloud.google.com/hadoop/datastore-connector 那里得到了连接器
但我正在尝试将 datastore-connector
(以及 bigquery-connector
)添加为 pom 中的依赖项……我不知道这是否可能。我找不到合适的工件和groupId。
是否有一些包含 datastore-connector
的 Maven 存储库?
另外,我正在寻找datastore-connector
的出处,但没有找到。根据CHANGES.txt
中的注释,它似乎来自:
https://github.com/GoogleCloudPlatform/bigdata-interop
源应该在包 com.google.cloud.hadoop.io.datastore
(src/main/***/com/google/cloud/hadoop/io/datastore/
) 中,但它不在那里。
事实上,bigquery-connector
的来源似乎在GitHub along with its pom上,但是datastore-connector
的来源可用吗?
数据存储连接器源不可用,也没有包含该工件的 Maven 存储库。您最好的选择是按照 this helpful article.
中所述在您的源代码树中创建本地 raven 存储库大卫在另一个答案中说的是正确的。为了详细说明,引擎盖下的连接器使用 Protocol Buffers SDK, and uses, for example, the QuerySplitter to define splits. In the near future, we will be posting more information to gcp-hadoop-announce 以及有关 Hadoop 数据存储连接器未来的进一步指导。
您可能想要熟悉其他可能更适合您的目的的 Datastore 功能,包括 Datastore backup to GCS, and this codelab 了解 AppEngine 友好的方法以从 Datastore 中提取数据并将其加载到 BigQuery 中进行分析。您可能会在该页面的顶部注意到一个公告,该公告可用于将 Datastore 备份直接后端加载到 BigQuery 中。