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
Temporary workaround: use the underlying gRPC client by calling bigtable.getSession().getDataClient().readRowsAsync(readRowsRequest), and passing in a valid ReadRowsRequest object.
The text was updated successfully, but these errors were encountered:
ckreiling
changed the title
gRPC client throws error when startQualifier(Closed|Open) or endQualifier(Closed|Open) is called.
gRPC client throws uncaught error when simple-bigtable sets a column qualifier range
Jul 24, 2018
I create a simple-bigtable client, and try to run the following to read a few rows:
When I run the code with that client, I receive the following error:
Taking a deeper look, it appears as though the
ColumnRange
builder wrappers insideReadColumns.java
does not set the column family field on theColumnRange.Builder
object, thus causing the error above.Temporary workaround: use the underlying gRPC client by calling
bigtable.getSession().getDataClient().readRowsAsync(readRowsRequest)
, and passing in a validReadRowsRequest
object.The text was updated successfully, but these errors were encountered: