Google BigQuery 连接器(将 Data Studio 连接到 BigQuery 表)- 我想修改此连接器以根据我的特殊要求进行自定义

Google BigQuery connector (Connect Data Studio to BigQuery tables) - I would like to modify this connector to customize for my special requirements

我需要修改 Google Data Studio - Google BigQuery Connector 以满足自定义要求。

https://support.google.com/datastudio/answer/6370296

第一个问题:我如何找到这个数据连接器的源代码?

第二题:

根据指南,https://developers.google.com/datastudio/connector/reference,getData(), Returns 给定请求的表格数据。

并且响应采用这种格式

{
     "schema":[
        {
           "name":"OpportunityName",
           "dataType":"STRING"
        },
        {
           "name":"IsVerified",
           "dataType":"BOOLEAN"
        },
        {
           "name":"Created",
           "dataType":"STRING"
        },
        {
           "name":"Amount",
           "dataType":"NUMBER"
        }
     ],
     "rows":[
        {
           "values":[
              "Interesting",
              true,
              "2017-05-23",
              "120453.65"
           ]
        },
        {
           "values":[
              "SF",
              false,
              "2017-03-03",
              "362705286.92"
           ]
        },
        {
           "values":[
              "Spring Sale",
              true,
              "2017-04-21",
              "870.12"
           ]
        }
     ],
     "cachedData":true
  }

但是 BigQuery 在 table 中可能有 1 亿条记录。我们不关心它可能是 1 亿条记录,我们只是以这种格式给出响应?

谢谢!

现有的 DS-BQ 连接器不是开源的,因此您无法修改它的行为。

话虽如此:

  • DS-BQ 连接器比打开的连接器有一个 "smarter" API 合同 - 查询和过滤器将向下传递。

  • 随意使用您可能需要的任何逻辑创建您自己的 DS-BQ 连接器!社区连接器会喜欢你的贡献。