You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adjust ForkJoinPool prefix in HdfsClientThreadLeakFilter (#127534) (#127683)
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#127676Closes#127677Closes#127678Closes#127679
(cherry picked from commit 4408e38)
Copy file name to clipboardExpand all lines: test/fixtures/hdfs-fixture/src/main/java/org/elasticsearch/test/fixtures/hdfs/HdfsClientThreadLeakFilter.java
+2-1
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,7 @@ public boolean reject(Thread t) {
35
35
|| t.getName().startsWith("SSL Certificates Store Monitor") // hadoop 3 brings that in
0 commit comments