需要通过IR连接ADF和BigQuery

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

我想通过IR连接Azure数据工厂和Google Big查询,需要什么值以及如何从Big Query访问数据

google-bigquery azure-data-factory
1个回答
2
投票

ADF支持谷歌大查询连接器:https://docs.microsoft.com/en-us/azure/data-factory/connector-google-bigquery。下面给出了一个链接服务有效载荷示例:

{
    "name": "GoogleBigQueryLinkedService",
    "properties": {
        "type": "GoogleBigQuery",
        "typeProperties": {
            "project" : "<project ID>",
            "additionalProjects" : "<additional project IDs>",
            "requestGoogleDriveScope" : true,
            "authenticationType" : "UserAuthentication",
            "clientId": "<id of the application used to generate the refresh token>",
            "clientSecret": {
                "type": "SecureString",
                "value":"<secret of the application used to generate the refresh token>"
            },
            "refreshToken": {
                "type": "SecureString",
                "value": "<refresh token>"
            }
        }
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.