You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All the RPC calls we do on Bigtable via the Python client seem to fail, e.g. listing the instances of a project returns:
In [1]: from gcloud import bigtable
In [2]: client = bigtable.Client(project=u'project-id', admin=True)
In [3]: client.start()
In [4]: client.is_started()
Out[4]: True
In [4]: client.list_instances()
AbortionError: AbortionError(code=StatusCode.INTERNAL, details="{"created":"@1472199496.200250000","description":"RST_STREAM","file":"src/core/ext/transport/chttp2/transport/frame_rst_stream.c","file_line":107,"http2_error":1}")
We've tried downgrading the gcloud or the grpcio library but without success. Also, the Bigtable Golang client seems to function correctly.
Edit: The issue is also present when querying Datastore over GRPC.
Using:
All the RPC calls we do on Bigtable via the Python client seem to fail, e.g. listing the instances of a project returns:
We've tried downgrading the gcloud or the grpcio library but without success. Also, the Bigtable Golang client seems to function correctly.
Edit: The issue is also present when querying Datastore over GRPC.