使用 Python,将 google.cloud.bigquery.job.query.QueryJob 输出保存到本地 JSON 文件

Posted

技术标签:

【中文标题】使用 Python,将 google.cloud.bigquery.job.query.QueryJob 输出保存到本地 JSON 文件【英文标题】:With Python, save google.cloud.bigquery.job.query.QueryJob output to local JSON file 【发布时间】:2021-08-10 14:01:55 【问题描述】:

我们正在使用 google bigquery 客户端库在 python 中从 BigQuery 导出到本地 JSON 文件:

from google.cloud import bigquery
import json

bq = bigquery.Client()
full_query = """
    SELECT TO_JSON_STRING(t)
    FROM (select * from bigquery-public-data.baseball.schedules) AS t
"""
query_rowiterator = bq.query(full_query).result() # rowIterator

TO_JSON_STRING 中包装我们的查询会将输出转换为 JSON并维护类型 (BigQuery downloading or exporting as JSON does not respect types),这对于我们的表提取很重要。

如何尽快将queryjob_output 的输出转储到本地 JSON 文件中?

【问题讨论】:

【参考方案1】:

我们需要做的就是从索引 [0] 处的行中获取 JSON:

with open(f'tmp/test_output.json', 'w') as f:
    for row in query_rowiterator:
        f.write(row[0] + '\n')

【讨论】:

以上是关于使用 Python,将 google.cloud.bigquery.job.query.QueryJob 输出保存到本地 JSON 文件的主要内容,如果未能解决你的问题,请参考以下文章

我如何将我的Python代码链接到Google Cloud的服务?我应该使用哪种服务?

将 python 对象上传到 Google Cloud Storage 而不将其保存到文件

使用 Python 将 Google Cloud Storage 中的数据加载到 BigQuery 时,如何强制忽略双引号?

将 Django 连接到 Google Cloud SQL

使用 Python 向 Google Cloud Storage 写入流式传输

如何将 Google Cloud Firestore 本地模拟器用于 python 和测试目的