运行 合并时 BigQuery 内部错误

BigQuery Internal error when running Merge

我正在执行合并 table 的查询。我每周都执行相同的查询,但这次它抛出一个内部错误。我等待并在同一天和第二天再次尝试。错误并没有消失。

错误:

Error running query
An internal error occurred and the request could not be completed. This is usually caused by a transient issue. Retrying the job with back-off as described in the BigQuery SLA should solve the problem: https://cloud.google.com/bigquery/sla. If the error continues to occur please contact support at https://cloud.google.com/support. Error: 5423415

我的代码

MERGE TB
        USING TBT
        ON TB.id = TBT.id
        WHEN MATCHED THEN
          UPDATE SET id = TBT.id, col1 = TBT.col1 ....
        WHEN NOT MATCHED THEN
          INSERT (id, col1 ...) VALUES(id, col1 ...)

有谁知道是否发生了某些变化,或者为什么现在会向我抛出错误。

更新:

第三天查询成功了,其他几天也成功了。但是对于另一个table marge(2个不同的tables)我得到了同样的错误。

在通过 BigQuery component 与支持人员交谈一段时间后,他们在 BigQuery 中实施了一个修复程序,解决了我的问题。线程是私有的,因为我必须描述个人信息和确切的问题。