-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
api: bigtableIssues related to the Bigtable API.Issues related to the Bigtable API.
Description
-
OS type and version
Ubuntu 14.04 -
Python version and virtual environment information
python --version
Python 2.7.6 -
google-cloud-python version
pip show google-cloud
,pip show google-<service>
orpip freeze
Name: google-cloud-bigtable
Version: 0.22.0
- Stacktrace if available
Traceback (most recent call last):
File "bt.py", line 13, in <module>
row = bt_table.read_row('mykey')
File "/home/jungho.ahn/tmp/test/local/lib/python2.7/site-packages/google/cloud/bigtable/table.py", line 234, in read_row
rows_data.consume_all()
File "/home/jungho.ahn/tmp/test/local/lib/python2.7/site-packages/google/cloud/bigtable/row_data.py", line 323, in consume_all
self.consume_next()
File "/home/jungho.ahn/tmp/test/local/lib/python2.7/site-packages/google/cloud/bigtable/row_data.py", line 275, in consume_next
self._validate_chunk(chunk)
File "/home/jungho.ahn/tmp/test/local/lib/python2.7/site-packages/google/cloud/bigtable/row_data.py", line 390, in _validate_chunk
self._validate_chunk_row_in_progress(chunk)
File "/home/jungho.ahn/tmp/test/local/lib/python2.7/site-packages/google/cloud/bigtable/row_data.py", line 370, in _validate_chunk_row_in_progress
_raise_if(not chunk.timestamp_micros or not chunk.value)
File "/home/jungho.ahn/tmp/test/local/lib/python2.7/site-packages/google/cloud/bigtable/row_data.py", line 441, in _raise_if
raise InvalidChunk(*args)
google.cloud.bigtable.row_data.InvalidChunk
- Steps to reproduce
See the code example - Code example
from google.cloud import bigtable
bt_client = bigtable.client.Client(project='myproject', read_only=True)
bt_instance = bt_client.instance(instance_id='myinstance')
bt_table = bt_instance.table(table_id='mytable')
row = bt_table.read_row('mykey')
print row.cells
This exception is raised all the time. Did I use incorrectly?
Thanks,
Metadata
Metadata
Assignees
Labels
api: bigtableIssues related to the Bigtable API.Issues related to the Bigtable API.