【发布时间】:2019-05-26 19:20:01
【问题描述】:
如何使用 insertId 和 Bigquery 流式插入 node.js 的每一行
const bigquery = new BigQuery({
projectId: projectId,
});
// Inserts data into a table
await big query
.dataset(datasetId)
.table(tableId)
.insert(rows);
console.log(`Inserted ${rows.length} rows`);
【问题讨论】:
-
您好!欢迎来到 SO。你读过这个吗? cloud.google.com/bigquery/…
标签: google-bigquery