Bigtable批量插入
我可以使用python在Bigtable中执行批量插入操作吗?Bigtable批量插入
我正在使用下面的方法插入,这是非常缓慢的。我有数百万行插入。
def row(self, row_key, filter_=None, append=False): """Factory to create a row associated with this table.
参考文献:https://googlecloudplatform.github.io/google-cloud-python/latest/bigtable/table.html
感谢。
回答:
我认为你正在寻找mutate_rows
: https://googlecloudplatform.github.io/google-cloud-python/latest/bigtable/table.html#google.cloud.bigtable.table.Table.mutate_rows
以上是 Bigtable批量插入 的全部内容, 来源链接: utcz.com/qa/261404.html