HDFS-9003. ForkJoin thread pool leaks. Contributed by Kihwal Lee.
(cherry picked from commit de928d566a
)
This commit is contained in:
parent
e1943e4471
commit
1d56325a80
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue