Umeshkumar9414 commented on code in PR #6534: URL: https://github.com/apache/hbase/pull/6534#discussion_r1886453188
########## hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/SplitWALProcedure.java: ########## @@ -51,6 +51,7 @@ public class SplitWALProcedure private ServerName worker; private ServerName crashedServer; private RetryCounter retryCounter; + private Integer workerChangeCount = 0; Review Comment: I might have wrongly remembered that becuase of autoboxing and unboxing Interger is better for performance. I have changed it to int ########## hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/SplitWALProcedure.java: ########## @@ -51,6 +51,7 @@ public class SplitWALProcedure private ServerName worker; private ServerName crashedServer; private RetryCounter retryCounter; + private Integer workerChangeCount = 0; Review Comment: I might have wrongly remembered that becuase of autoboxing and unboxing, Interger is better for performance. I have changed it to int -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
