I've tried to insert 100 values into a column test_col in column family test_cf in a row key test-123
The problem is that I successfully inserted 100 values into Bigtable.
However, The number of values in the test_col column in test_cf is less than 100 and It appears to be randomly inserted.
The code I wrote is below.
rows = []
values = ['123-123124-325324', '543-123-45324-123123', '292-123124-54324-234', '292-213123-123123123-3213']
# ... 100 values in the list
row_key = 'test-123'.encode()
direct_row = table.direct_row(row_key)
for val in values:
row.set_cell("test_cf",
"test_col".encode('utf-8'),
val,
datetime.utcnow())
rows.append(row)
rtn = table.mutate_rows(rows)
for i, status in enumerate(rtn):
if status.code != 0:
print('ERROR')
And the weird thing is that the response status is always 0 for the 100 values mutation.