Environment details
- Bigtable
- Linux Centos 7
- JDK 1.8
- google-cloud-java version(s): v0.110.0
Steps to reproduce
- construct a BigtableDataClient with the code example below
- make some queries with the client
- take some thread dumps and note that only 4 threads are ever created, not 20 as I would expect
Code example
BigtableDataSettings.Builder settings = BigtableDataSettings.newBuilder()
.setProjectId("my-project")
.setInstanceId("my-instance-id");
settings
.stubSettings()
.setExecutorProvider(
InstantiatingExecutorProvider
.newBuilder()
.setExecutorThreadCount(20)
.build()
)
BigtableDataClient client = BigtableDataClient.create(settings.build());
Environment details
Steps to reproduce
Code example