我正在尝试使用此示例代码插入一行:
https://developers.google.com/bigquery/streaming-data-into-bigquery#streaminginsertexamples
我收到一个错误:
com.google.api.client.googleapis.json.GoogleJsonResponseException: 400
{
"code" : 400,
"errors" : [ {
"domain" : "global",
"message" : "Invalid table ID \"projectid:datasetid.tableid\".",
"reason" : "invalid"
} ],
"message" : "Invalid table ID \"projectid:datasetid.tableid\"."
}
项目、数据集和表都存在。当我从错误报告中复制实际的 projectid:datasetid.tableid 并将其粘贴到 BigQuery Web UI 中时,它就可以工作了。projectid 中有一个“-”,其余的是字母数字。为什么 API 会抱怨 Web UI 接受的 id?
更新以回答乔丹的问题。这是我的电话:
TableDataInsertAllResponse response =
bigquery
.tabledata()
.insertAll(projectId, datasetId, table.getId(), content)
.execute();
在我调用它之前,我通过获取它们来确保项目、数据集和表都存在。然后我使用表的实际 ID。
新信息:结果(如您所料)table.getId() 返回完全限定的 id,包括项目和数据集。当我硬编码缩短的 id 以排除它们时,它起作用了。