第 26 章 Google BigQuery
从 Camel 2.20 开始
仅支持生成者。
Google Bigquery 组件通过 link:https://developers.google.com/api-client-library/java/apis/bigquery/v2 [Google Client Services API] 提供对 Cloud BigQuery Infrastructure 的访问。
当前实施不使用 gRPC。
当前实施不支持查询 BigQuery,它只是一个制作者。
将以下依赖项添加到此组件的 pom.xml
中:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-google-bigquery</artifactId> <version>3.20.1.redhat-00031</version> <!-- use the same version as your Camel core version --> </dependency>
26.1. 身份验证配置
Google BigQuery 组件身份验证主要用于 GCP 服务帐户。如需更多信息,请参阅 Google Cloud Platform Auth Guide。
Google 安全凭证可以通过提供到 GCP 凭证文件位置的路径来明确设置。
或者它们被隐式设置,其中连接工厂回退到 应用程序默认凭据。
具有 服务帐户密钥 时,您可以为应用程序代码提供身份验证凭据。Google 安全凭证可以通过组件端点设置:
String endpoint = "google-bigquery://project-id:datasetId[:tableId]?serviceAccountKey=/home/user/Downloads/my-key.json";
如果您不想设置文件系统路径,您还可以使用身份验证凭证文件的 base64 编码内容。
String endpoint = "google-bigquery://project-id:datasetId[:tableId]?serviceAccountKey=base64:<base64 encoded>";
或者设置环境变量 GOOGLE_APPLICATION_CREDENTIALS
:
export GOOGLE_APPLICATION_CREDENTIALS="/home/user/Downloads/my-key.json"