We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 720c078 commit 1ea3164Copy full SHA for 1ea3164
java-client/src/main/java/co/elastic/clients/elasticsearch/_helpers/bulk/BulkIngester.java
@@ -108,7 +108,7 @@ private BulkIngester(Builder<Context> builder) {
108
if (builder.scheduler == null) {
109
scheduler = Executors.newScheduledThreadPool(maxRequests + 1, (r) -> {
110
Thread t = Executors.defaultThreadFactory().newThread(r);
111
- t.setName("bulk-ingester-executor#" + ingesterId);
+ t.setName("bulk-ingester-executor#" + ingesterId + "#" + t.getId());
112
t.setDaemon(true);
113
return t;
114
});
0 commit comments