【发布时间】:2020-09-26 02:35:55
【问题描述】:
我想在 Bigtable 中插入一行,我试过这个简单的代码
const rowToInsert = {
key: `${tenantId}:${customerId}`,
data: personalInfo
};
await table.insert(rowToInsert);
但我得到了
Error while mutating the row '999:customerId' : Requested column family not found.
列族存在,那么如何设置这个插入的列族呢? 我在文档中看到了this 示例,我不清楚
【问题讨论】:
标签: node.js google-api insert google-cloud-bigtable bigtable