rmdmattingly commented on code in PR #5226:
URL: https://github.com/apache/hbase/pull/5226#discussion_r1200731755


##########
hbase-client/src/main/java/org/apache/hadoop/hbase/client/backoff/HBaseServerExceptionPauseManager.java:
##########
@@ -0,0 +1,62 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.hbase.client.backoff;
+
+import java.util.concurrent.TimeUnit;
+import java.util.function.Function;
+import org.apache.hadoop.hbase.HBaseServerException;
+import org.apache.hadoop.hbase.quotas.RpcThrottlingException;
+import org.apache.yetus.audience.InterfaceAudience;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+@InterfaceAudience.Private
+public class HBaseServerExceptionPauseManager {
+
+  private static final Logger LOG = 
LoggerFactory.getLogger(HBaseServerExceptionPauseManager.class);
+
+  public static long getPauseNanos(Throwable t, long 
pauseNsForServerOverloaded, long pauseNs) {
+    long pauseMsForServerOverloaded = 
TimeUnit.NANOSECONDS.toMillis(pauseNsForServerOverloaded);
+    long basePauseMs = TimeUnit.NANOSECONDS.toMillis(pauseNs);
+    long pauseMillis = getPauseMillis(t, null, pauseMsForServerOverloaded, 
basePauseMs);
+    return TimeUnit.MILLISECONDS.toNanos(pauseMillis);

Review Comment:
   I can definitely see an argument for some duplicative logic rather than 
these superfluous conversions. happy to make that change if people think it'd 
be preferable/meaningful



-- 
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: issues-unsubscr...@hbase.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to