-
Notifications
You must be signed in to change notification settings - Fork 1.7k
bigtable set_cell? #2517
Copy link
Copy link
Closed
Labels
api: bigtableIssues related to the Bigtable API.Issues related to the Bigtable API.priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.
Metadata
Metadata
Assignees
Labels
api: bigtableIssues related to the Bigtable API.Issues related to the Bigtable API.priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.
I'm little confused with the purpose of
set_cellmethod. Here is what I see in official doc:https://cloud.google.com/bigtable/docs/samples-python-hello
My question is if I have multiple columns to write (under column family stat), like:
user, game, spot, asset then I need to perform multiple set_cell calls before making row.commit()?
Something like this
am I correct?
also do we have an ability to batch insert many rows or they should be done one by one sequentially?