查询和流式传输数据时出现 BigQuery、tableUnavailable 错误
BigQuery, tableUnavailable error while querying and streaming data into
我正在尝试使用我的 BigQuery table 之一,但我收到此错误:
Errors:
Something went wrong with the table you queried. Contact the table owner for assistance. (error code: tableUnavailable)
我曾经能够 运行 几个小时前的查询而没有问题,我仍然可以在不同的数据集中查询另一个 table。
我也 运行正在使用 Python 应用程序将数据流式传输到此 table,但现在:
table.insert_data(rows)
导致此错误的原因:
google.cloud.exceptions.ServiceUnavailable:
503 Error encountered during execution. Retrying may solve the problem.
(POST https://www.googleapis.com/bigquery/v2/projects/#myProjectId#/datasets/#myDatasetName#/tables/#myTableName#/insertAll)
我在这里读过类似的问题,但找不到解决这个问题的方法。
这里是最新的错误jobId
"jobId": "bquijob_6491e032_15846c06c18"
这已经有一段时间了,有人可以帮忙吗?
希望这是一次罕见的 BigQuery 事件:
我正在尝试使用我的 BigQuery table 之一,但我收到此错误:
Errors:
Something went wrong with the table you queried. Contact the table owner for assistance. (error code: tableUnavailable)
我曾经能够 运行 几个小时前的查询而没有问题,我仍然可以在不同的数据集中查询另一个 table。
我也 运行正在使用 Python 应用程序将数据流式传输到此 table,但现在:
table.insert_data(rows)
导致此错误的原因:
google.cloud.exceptions.ServiceUnavailable:
503 Error encountered during execution. Retrying may solve the problem.
(POST https://www.googleapis.com/bigquery/v2/projects/#myProjectId#/datasets/#myDatasetName#/tables/#myTableName#/insertAll)
我在这里读过类似的问题,但找不到解决这个问题的方法。
这里是最新的错误jobId
"jobId": "bquijob_6491e032_15846c06c18"
这已经有一段时间了,有人可以帮忙吗?
希望这是一次罕见的 BigQuery 事件: