rakeshadr commented on a change in pull request #1507: URL: https://github.com/apache/hadoop-ozone/pull/1507#discussion_r512525048
########## File path: hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/om/OzoneManager.java ########## @@ -1228,17 +1238,57 @@ public void restart() throws IOException { // Allow OM to start as Http Server failure is not fatal. LOG.error("OM HttpServer failed to start.", ex); } - omRpcServer.start(); + isOmRpcServerRunning = true; + startTrashEmptier(configuration); + registerMXBean(); startJVMPauseMonitor(); setStartTime(); omState = State.RUNNING; } + + /** + * @param conf + * @throws IOException + * Starts a Trash Emptier thread that does an fs.trashRoots and performs Review comment: Please follow general guidelines for the javadoc. 1) Begins with function details. 2) Provide `@param` details. 3) Then `@throws` exception cases. 4) Ending with `@return` info. ########## File path: hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/om/OzoneManager.java ########## @@ -1228,17 +1238,57 @@ public void restart() throws IOException { // Allow OM to start as Http Server failure is not fatal. LOG.error("OM HttpServer failed to start.", ex); } - omRpcServer.start(); + isOmRpcServerRunning = true; + startTrashEmptier(configuration); + registerMXBean(); startJVMPauseMonitor(); setStartTime(); omState = State.RUNNING; } + + /** + * @param conf + * @throws IOException + * Starts a Trash Emptier thread that does an fs.trashRoots and performs + * checkpointing & deletion + */ + private void startTrashEmptier(Configuration conf) throws IOException { + long trashInterval = + conf.getLong(FS_TRASH_INTERVAL_KEY, FS_TRASH_INTERVAL_DEFAULT); + if (trashInterval == 0) { + return; Review comment: Please add a warn or even a lighter info log message to make the behavior loud to the users as this will disable trash emptier. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: ozone-issues-unsubscr...@hadoop.apache.org For additional commands, e-mail: ozone-issues-h...@hadoop.apache.org