【发布时间】:2016-04-07 09:26:15
【问题描述】:
我将数据流式传输到 BigQuery 300 行,大约每分钟 3 次。插入在一周前停止工作,出现以下错误:
Google.Apis.Requests.RequestError 执行过程中遇到错误。重试可能会解决问题。 [503] 错误 [ 消息[执行过程中遇到错误。重试可能会解决问题。] Location[ - ] Reason[backendError] Domain[global] ]
我的服务正常运行了 2 个月,并且自从我们开始使用它以来没有任何代码更改。
这是调用 BigQuery 的代码:
public async Task<TableDataInsertAllResponse> Update(List<TableDataInsertAllRequest.RowsData> rows, string tableSuffix)
{
var request = new TableDataInsertAllRequest {Rows = rows, TemplateSuffix = tableSuffix};
var insertRequest = mBigqueryService.Tabledata.InsertAll(request, ProjectId, mDatasetId, mTableId);
return await insertRequest.ExecuteAsync();
}
还有其他人遇到过这个问题吗?
【问题讨论】:
-
您是否有项目 ID 以便团队进行调试?
-
项目id是solutohome
标签: google-bigquery