|
@@ -0,0 +1,88 @@
|
|
|
+/**
|
|
|
+ * 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.fs.azurebfs.services;
|
|
|
+
|
|
|
+import java.util.Random;
|
|
|
+
|
|
|
+import org.junit.Assert;
|
|
|
+import org.junit.Test;
|
|
|
+
|
|
|
+import org.apache.hadoop.conf.Configuration;
|
|
|
+
|
|
|
+import org.apache.hadoop.fs.azurebfs.AbfsConfiguration;
|
|
|
+import org.apache.hadoop.fs.azurebfs.AbstractAbfsIntegrationTest;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Unit test TestExponentialRetryPolicy.
|
|
|
+ */
|
|
|
+public class TestExponentialRetryPolicy extends AbstractAbfsIntegrationTest {
|
|
|
+
|
|
|
+ private final int maxRetryCount = 30;
|
|
|
+ private final int noRetryCount = 0;
|
|
|
+ private final int retryCount = new Random().nextInt(maxRetryCount);
|
|
|
+ private final int retryCountBeyondMax = maxRetryCount + 1;
|
|
|
+
|
|
|
+
|
|
|
+ public TestExponentialRetryPolicy() throws Exception {
|
|
|
+ super();
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void testDifferentMaxIORetryCount() throws Exception {
|
|
|
+ AbfsConfiguration abfsConfig = getAbfsConfig();
|
|
|
+ abfsConfig.setMaxIoRetries(noRetryCount);
|
|
|
+ testMaxIOConfig(abfsConfig);
|
|
|
+ abfsConfig.setMaxIoRetries(retryCount);
|
|
|
+ testMaxIOConfig(abfsConfig);
|
|
|
+ abfsConfig.setMaxIoRetries(retryCountBeyondMax);
|
|
|
+ testMaxIOConfig(abfsConfig);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void testDefaultMaxIORetryCount() throws Exception {
|
|
|
+ AbfsConfiguration abfsConfig = getAbfsConfig();
|
|
|
+ Assert.assertTrue(
|
|
|
+ String.format("default maxIORetry count is %s.", maxRetryCount),
|
|
|
+ abfsConfig.getMaxIoRetries() == maxRetryCount);
|
|
|
+ testMaxIOConfig(abfsConfig);
|
|
|
+ }
|
|
|
+
|
|
|
+ private AbfsConfiguration getAbfsConfig() throws Exception {
|
|
|
+ Configuration
|
|
|
+ config = new Configuration(this.getRawConfiguration());
|
|
|
+ return new AbfsConfiguration(config, "dummyAccountName");
|
|
|
+ }
|
|
|
+
|
|
|
+ private void testMaxIOConfig(AbfsConfiguration abfsConfig) {
|
|
|
+ ExponentialRetryPolicy retryPolicy = new ExponentialRetryPolicy(
|
|
|
+ abfsConfig.getMaxIoRetries());
|
|
|
+ int localRetryCount = 0;
|
|
|
+
|
|
|
+ while (localRetryCount < abfsConfig.getMaxIoRetries()) {
|
|
|
+ Assert.assertTrue(
|
|
|
+ "Retry should be allowed when retryCount less than max count configured.",
|
|
|
+ retryPolicy.shouldRetry(localRetryCount, -1));
|
|
|
+ localRetryCount++;
|
|
|
+ }
|
|
|
+
|
|
|
+ Assert.assertTrue(
|
|
|
+ "When all retries are exhausted, the retryCount will be same as max configured",
|
|
|
+ localRetryCount == abfsConfig.getMaxIoRetries());
|
|
|
+ }
|
|
|
+}
|