mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 09:28:55 -04:00
Adds the ForkJoinPool.commonPool-worker- prefix to the
Thread getName().startsWith() checks in HdfsClientThreadLeakFilter.
This resolves the
"There are still zombie threads that couldn't be terminated"
errors in the Hdfs IT tests.
Closes #128305
Closes #128306
Closes #128307
Closes #128308
(cherry picked from commit 4408e38bc6
)
This commit is contained in:
parent
7e6b0c96bd
commit
2dd25e9630
1 changed files with 2 additions and 1 deletions
|
@ -35,6 +35,7 @@ public final class HdfsClientThreadLeakFilter implements ThreadFilter {
|
||||||
|| t.getName().startsWith("SSL Certificates Store Monitor") // hadoop 3 brings that in
|
|| t.getName().startsWith("SSL Certificates Store Monitor") // hadoop 3 brings that in
|
||||||
|| t.getName().startsWith("GcTimeMonitor") // hadoop 3
|
|| t.getName().startsWith("GcTimeMonitor") // hadoop 3
|
||||||
|| t.getName().startsWith("Command processor") // hadoop 3
|
|| t.getName().startsWith("Command processor") // hadoop 3
|
||||||
|| t.getName().startsWith("ForkJoinPool-"); // hadoop 3
|
|| t.getName().startsWith("ForkJoinPool-") // hadoop 3
|
||||||
|
|| t.getName().startsWith("ForkJoinPool.commonPool-worker-"); // hadoop 3
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue