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
While performing readRows, the abstraction layer(ServerStreamingCallable<Query, RowT>) introduced by this library prevents user to create requests to target the table using an absolute resource name(Custom app-profile-id).
What you want to happen.
It would be helpful if we introduce these new API in EnhanceBigtableStub.java to expose ServerStreamingCallable<ReadRowsRequest, RowT>:
<RowT> ServerStreamingCallable<ReadRowsRequest, RowT> createReadRowsRawCallable(RowAdapteradapter) {
returncreateReadRowsBaseCallable(adapter).withDefaultContext(..);
}
<RowT> ServerStreamingCallable<ReadRowsRequest, RowT> createReadRowsBaseCallable(RowAdapteradapter) {
//... same impl as now, except without the UserFacingCallable
}
What the problem is.
While performing readRows, the abstraction layer(ServerStreamingCallable<Query, RowT>) introduced by this library prevents user to create requests to target the table using an absolute resource name(Custom
app-profile-id).What you want to happen.
It would be helpful if we introduce these new API in
EnhanceBigtableStub.javato exposeServerStreamingCallable<ReadRowsRequest, RowT>:Related to an internal ticket.