HDFS-9003. ForkJoin thread pool leaks. Contributed by Kihwal Lee.

(cherry picked from commit de928d566a)
This commit is contained in:
Jing Zhao 2015-09-02 15:19:04 -07:00
parent e1943e4471
commit 1d56325a80
2 changed files with 3 additions and 0 deletions

View File

@ -935,6 +935,8 @@ Release 2.8.0 - UNRELEASED
HDFS-8388. Time and Date format need to be in sync in NameNode UI page.
(Surendra Singh Lilhore via aajisaka)
HDFS-9003. ForkJoin thread pool leaks. (Kihwal Lee via jing9)
Release 2.7.2 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -884,6 +884,7 @@ public class FSImage implements Closeable {
root, counts);
p.execute(task);
task.join();
p.shutdown();
LOG.info("Quota initialization completed in " + (Time.now() - start) +
" milliseconds\n" + counts);
}