-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels
api: bigtableIssues related to the Bigtable API.Issues related to the Bigtable API.triage meI really want to be triaged.I really want to be triaged.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Description
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());Metadata
Metadata
Assignees
Labels
api: bigtableIssues related to the Bigtable API.Issues related to the Bigtable API.triage meI really want to be triaged.I really want to be triaged.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.