Igor Bernstein
Igor Bernstein
Renovate PR #6847 intended to only upgrade hbase in the bigtable/spark example. But it seems to have also accidentally upgraded spark as well. This caused the example to break since...
This issue falls somewhere between google-cloud-java clients, stackdriver and the oss bom. It doesn't seem like there is consensus on how to deal with this issue. So I'll start the...
Gax uses a pattern of `abstract B toBuilder();` in a base class, expecting a subclass to override it with a concrete return type. This causes warnings like: ``` BigtableTableAdminStubSettings.java:[764,43] build()...
gax supports a round robin channel pooling to allow increased concurrency to spread load across afes. Currently its statically sized at client construction time. It would be nice to dynamically...
I accidentally left incomplete javadoc for the TracedResponseObserver class. It was supposed to read ```java * The operation will be marked as complete before notifying the wrapped observer. Which means...
The current approach pulls the version from the jar manifest. Unfortunately this will break if the application builds an uber jar (the version will come from the uber jar rather...
If a client is configured with DEADLINE_EXCEEDED as a retryable error and the user sets a deadline using ApiCallContext#withTimeout. Then when user's deadline is met, all retry attempts will failed...
Feature request: provide some kind of helper that can be used to mock a PagedListResponse. As it stands it's next to impossible for end users to write unit tests that...
Currently there is no straightforward way to asynchronously get all of the entries in a paginated method. The user either has to use a thread pool and call `AbstractPage#iterateAll()` or...
Currently if there is a pack-n-play the system-tests just fail with the message "Process xxx exited with code y", this doesn't really help debugging the underlying problem. Bubbling up the...