Skip to content

Commit

Permalink
HBASE-27595 ThreadGroup is removed since Hadoop 3.2.4 (#5001)
Browse files Browse the repository at this point in the history
Co-authored-by: tianhang.tang <[email protected]>
Signed-off-by: Duo Zhang <[email protected]>
  • Loading branch information
thangTang and tianhang.tang authored Feb 2, 2023
1 parent 8e72cc6 commit a3686eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,10 @@ public void run() {
threadGroup.setDaemon(false);
}
}
} catch (NoSuchFieldException e) {
LOG.debug("NoSuchFieldException: " + e.getMessage()
+ "; It might because your Hadoop version > 3.2.3 or 3.3.4, "
+ "See HBASE-27595 for details.");
} catch (Exception e) {
LOG.warn("failed to reset thread pool timeout for FsDatasetAsyncDiskService", e);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,10 @@ public void run() {
threadGroup.setDaemon(false);
}
}
} catch (NoSuchFieldException e) {
LOG.debug("NoSuchFieldException: " + e.getMessage()
+ "; It might because your Hadoop version > 3.2.3 or 3.3.4, "
+ "See HBASE-27595 for details.");
} catch (Exception e) {
LOG.warn("failed to reset thread pool timeout for FsDatasetAsyncDiskService", e);
}
Expand Down

0 comments on commit a3686eb

Please sign in to comment.