我正在尝试使用此示例代码插入一行:
https://developers.google.com/bigquery/streaming-data-into-bigquery#streaminginsertexamples
TableRow row = new TableRow();
row.set("Col1", 50);
row.set("Col2", 50);
TableDataInsertAllRequest.Rows rows = new TableDataInsertAllRequest.Rows();
rows.setInsertId("" + System.currentTimeMillis());
rows.setJson(row);
List rowList = new ArrayList();
rowList.add(rows);
TableDataInsertAllRequest content = new TableDataInsertAllRequest().setRows(rowList);
try
{
TableDataInsertAllResponse response =
bigquery
.tabledata()
.insertAll("<myprojectid>", "6bc2cf53x8684x42a4x8149x9ff20fa8beed", "TestTable", content)
.execute();
System.out.println("Response: " + response);
}
catch (IOException e)
{
// handle
}
架构是这样的:
Col1 INTEGER NULLABLE
Col2 INTEGER NULLABLE
我收到一个错误:
com.google.api.client.googleapis.json.GoogleJsonResponseException: 500
{
"code" : 500,
"errors" : [ {
"domain" : "global",
"message" : "Unexpected. Please try again.",
"reason" : "internalError"
} ],
"message" : "Unexpected. Please try again."
}
项目存在,数据集存在,表存在,数据类型与列规范匹配,我正在使用示例代码。Jordan 在这个问题 [1] 上说 500 表示 BigQuery 错误。我不介意解决它(如果是这样的话),但我不知道该怎么做。我可以尝试什么?我为每一列硬编码了简单的值,我尝试了一个不同的表,我尝试了一个不同的、全新的项目/数据集/表集。结果相同。
这在 dev 或 GAE 环境中。
如果有帮助:
项目编号:1066943214796(注意我没有使用它,我在调用中使用字符串 id),datasetid 和 table 现在在上面的代码中。