|
@@ -0,0 +1,213 @@
|
|
|
+/**
|
|
|
+ * 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
|
|
|
+ * <p>
|
|
|
+ * http://www.apache.org/licenses/LICENSE-2.0
|
|
|
+ * <p>
|
|
|
+ * 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.ozone.client.rpc;
|
|
|
+
|
|
|
+import org.apache.hadoop.conf.StorageUnit;
|
|
|
+import org.apache.hadoop.hdds.client.ReplicationType;
|
|
|
+import org.apache.hadoop.hdds.conf.OzoneConfiguration;
|
|
|
+import org.apache.hadoop.hdds.scm.container.ContainerID;
|
|
|
+import org.apache.hadoop.hdds.scm.container.ContainerInfo;
|
|
|
+import org.apache.hadoop.hdds.scm.pipeline.Pipeline;
|
|
|
+import org.apache.hadoop.hdds.scm.pipeline.PipelineID;
|
|
|
+import org.apache.hadoop.hdds.scm.storage.BlockOutputStream;
|
|
|
+import org.apache.hadoop.ozone.MiniOzoneCluster;
|
|
|
+import org.apache.hadoop.ozone.OzoneConfigKeys;
|
|
|
+import org.apache.hadoop.ozone.client.ObjectStore;
|
|
|
+import org.apache.hadoop.ozone.client.OzoneClient;
|
|
|
+import org.apache.hadoop.ozone.client.OzoneClientFactory;
|
|
|
+import org.apache.hadoop.ozone.client.io.BlockOutputStreamEntry;
|
|
|
+import org.apache.hadoop.ozone.client.io.KeyOutputStream;
|
|
|
+import org.apache.hadoop.ozone.client.io.OzoneOutputStream;
|
|
|
+import org.apache.hadoop.ozone.container.ContainerTestHelper;
|
|
|
+import org.apache.ratis.protocol.GroupMismatchException;
|
|
|
+import org.junit.After;
|
|
|
+import org.junit.Assert;
|
|
|
+import org.junit.Before;
|
|
|
+import org.junit.Test;
|
|
|
+
|
|
|
+import java.io.IOException;
|
|
|
+import java.io.OutputStream;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+import java.util.UUID;
|
|
|
+import java.util.concurrent.TimeUnit;
|
|
|
+
|
|
|
+import static java.nio.charset.StandardCharsets.UTF_8;
|
|
|
+import static org.apache.hadoop.hdds.scm.ScmConfigKeys.HDDS_SCM_WATCHER_TIMEOUT;
|
|
|
+import static org.apache.hadoop.hdds.scm.ScmConfigKeys.OZONE_SCM_STALENODE_INTERVAL;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Tests failure detection and handling in BlockOutputStream Class.
|
|
|
+ */
|
|
|
+public class TestOzoneClientRetriesOnException {
|
|
|
+
|
|
|
+ private static MiniOzoneCluster cluster;
|
|
|
+ private OzoneConfiguration conf = new OzoneConfiguration();
|
|
|
+ private OzoneClient client;
|
|
|
+ private ObjectStore objectStore;
|
|
|
+ private int chunkSize;
|
|
|
+ private int flushSize;
|
|
|
+ private int maxFlushSize;
|
|
|
+ private int blockSize;
|
|
|
+ private String volumeName;
|
|
|
+ private String bucketName;
|
|
|
+ private String keyString;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Create a MiniDFSCluster for testing.
|
|
|
+ * <p>
|
|
|
+ * Ozone is made active by setting OZONE_ENABLED = true
|
|
|
+ *
|
|
|
+ * @throws IOException
|
|
|
+ */
|
|
|
+ @Before
|
|
|
+ public void init() throws Exception {
|
|
|
+ chunkSize = 100;
|
|
|
+ flushSize = 2 * chunkSize;
|
|
|
+ maxFlushSize = 2 * flushSize;
|
|
|
+ blockSize = 2 * maxFlushSize;
|
|
|
+ conf.set(OzoneConfigKeys.OZONE_CLIENT_WATCH_REQUEST_TIMEOUT, "5000ms");
|
|
|
+ conf.setTimeDuration(HDDS_SCM_WATCHER_TIMEOUT, 1000, TimeUnit.MILLISECONDS);
|
|
|
+ conf.setTimeDuration(OZONE_SCM_STALENODE_INTERVAL, 3, TimeUnit.SECONDS);
|
|
|
+ conf.set(OzoneConfigKeys.OZONE_CLIENT_CHECKSUM_TYPE, "NONE");
|
|
|
+ conf.setInt(OzoneConfigKeys.DFS_RATIS_CLIENT_REQUEST_MAX_RETRIES_KEY, 2);
|
|
|
+ conf.set(OzoneConfigKeys.DFS_RATIS_CLIENT_REQUEST_RETRY_INTERVAL_KEY, "1s");
|
|
|
+ conf.setInt(OzoneConfigKeys.OZONE_CLIENT_MAX_RETRIES, 3);
|
|
|
+ conf.setQuietMode(false);
|
|
|
+ cluster = MiniOzoneCluster.newBuilder(conf)
|
|
|
+ .setNumDatanodes(7)
|
|
|
+ .setBlockSize(blockSize)
|
|
|
+ .setChunkSize(chunkSize)
|
|
|
+ .setStreamBufferFlushSize(flushSize)
|
|
|
+ .setStreamBufferMaxSize(maxFlushSize)
|
|
|
+ .setStreamBufferSizeUnit(StorageUnit.BYTES)
|
|
|
+ .build();
|
|
|
+ cluster.waitForClusterToBeReady();
|
|
|
+ //the easiest way to create an open container is creating a key
|
|
|
+ client = OzoneClientFactory.getClient(conf);
|
|
|
+ objectStore = client.getObjectStore();
|
|
|
+ keyString = UUID.randomUUID().toString();
|
|
|
+ volumeName = "testblockoutputstreamwithretries";
|
|
|
+ bucketName = volumeName;
|
|
|
+ objectStore.createVolume(volumeName);
|
|
|
+ objectStore.getVolume(volumeName).createBucket(bucketName);
|
|
|
+ }
|
|
|
+
|
|
|
+ private String getKeyName() {
|
|
|
+ return UUID.randomUUID().toString();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Shutdown MiniDFSCluster.
|
|
|
+ */
|
|
|
+ @After
|
|
|
+ public void shutdown() {
|
|
|
+ if (cluster != null) {
|
|
|
+ cluster.shutdown();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void testGroupMismatchExceptionHandling() throws Exception {
|
|
|
+ String keyName = getKeyName();
|
|
|
+ OzoneOutputStream key = createKey(keyName, ReplicationType.RATIS, 0);
|
|
|
+ int dataLength = maxFlushSize + 50;
|
|
|
+ // write data more than 1 chunk
|
|
|
+ byte[] data1 =
|
|
|
+ ContainerTestHelper.getFixedLengthString(keyString, dataLength)
|
|
|
+ .getBytes(UTF_8);
|
|
|
+ key.write(data1);
|
|
|
+ Assert.assertTrue(key.getOutputStream() instanceof KeyOutputStream);
|
|
|
+ KeyOutputStream keyOutputStream = (KeyOutputStream)key.getOutputStream();
|
|
|
+ long containerID =
|
|
|
+ keyOutputStream.getStreamEntries().get(0).getBlockID().getContainerID();
|
|
|
+ OutputStream stream = keyOutputStream.getStreamEntries().get(0)
|
|
|
+ .getOutputStream();
|
|
|
+ Assert.assertTrue(stream instanceof BlockOutputStream);
|
|
|
+ BlockOutputStream blockOutputStream = (BlockOutputStream) stream;
|
|
|
+ Assert.assertTrue(keyOutputStream.getStreamEntries().size() == 1);
|
|
|
+ ContainerInfo container =
|
|
|
+ cluster.getStorageContainerManager().getContainerManager()
|
|
|
+ .getContainer(ContainerID.valueof(containerID));
|
|
|
+ Pipeline pipeline =
|
|
|
+ cluster.getStorageContainerManager().getPipelineManager()
|
|
|
+ .getPipeline(container.getPipelineID());
|
|
|
+ ContainerTestHelper.waitForPipelineClose(key, cluster, true);
|
|
|
+ key.flush();
|
|
|
+ Assert.assertTrue(keyOutputStream.checkForException(blockOutputStream
|
|
|
+ .getIoException()) instanceof GroupMismatchException);
|
|
|
+ Assert.assertTrue(keyOutputStream.getExcludeList().getPipelineIds()
|
|
|
+ .contains(pipeline.getId()));
|
|
|
+ key.close();
|
|
|
+ Assert.assertTrue(keyOutputStream.getStreamEntries().size() == 2);
|
|
|
+ validateData(keyName, data1);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void testMaxRetriesByOzoneClient() throws Exception {
|
|
|
+ String keyName = getKeyName();
|
|
|
+ OzoneOutputStream key =
|
|
|
+ createKey(keyName, ReplicationType.RATIS, 4 * blockSize);
|
|
|
+ Assert.assertTrue(key.getOutputStream() instanceof KeyOutputStream);
|
|
|
+ KeyOutputStream keyOutputStream = (KeyOutputStream) key.getOutputStream();
|
|
|
+ List<BlockOutputStreamEntry> entries = keyOutputStream.getStreamEntries();
|
|
|
+ Assert.assertTrue(keyOutputStream.getStreamEntries().size() == 4);
|
|
|
+ int dataLength = maxFlushSize + 50;
|
|
|
+ // write data more than 1 chunk
|
|
|
+ byte[] data1 =
|
|
|
+ ContainerTestHelper.getFixedLengthString(keyString, dataLength)
|
|
|
+ .getBytes(UTF_8);
|
|
|
+ key.write(data1);
|
|
|
+
|
|
|
+ OutputStream stream = entries.get(0).getOutputStream();
|
|
|
+ Assert.assertTrue(stream instanceof BlockOutputStream);
|
|
|
+ BlockOutputStream blockOutputStream = (BlockOutputStream) stream;
|
|
|
+ List<PipelineID> pipelineList = new ArrayList<>();
|
|
|
+ long containerID;
|
|
|
+ for (BlockOutputStreamEntry entry : entries) {
|
|
|
+ containerID = entry.getBlockID().getContainerID();
|
|
|
+ ContainerInfo container =
|
|
|
+ cluster.getStorageContainerManager().getContainerManager()
|
|
|
+ .getContainer(ContainerID.valueof(containerID));
|
|
|
+ Pipeline pipeline =
|
|
|
+ cluster.getStorageContainerManager().getPipelineManager()
|
|
|
+ .getPipeline(container.getPipelineID());
|
|
|
+ pipelineList.add(pipeline.getId());
|
|
|
+ }
|
|
|
+ ContainerTestHelper.waitForPipelineClose(key, cluster, false);
|
|
|
+ try {
|
|
|
+ key.write(data1);
|
|
|
+ } catch (IOException ioe) {
|
|
|
+ Assert.assertTrue(keyOutputStream.checkForException(blockOutputStream
|
|
|
+ .getIoException()) instanceof GroupMismatchException);
|
|
|
+ Assert.assertTrue(ioe.getMessage().contains(
|
|
|
+ "Retry request failed. retries get failed due to exceeded maximum "
|
|
|
+ + "allowed retries number: 3"));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private OzoneOutputStream createKey(String keyName, ReplicationType type,
|
|
|
+ long size) throws Exception {
|
|
|
+ return ContainerTestHelper
|
|
|
+ .createKey(keyName, type, size, objectStore, volumeName, bucketName);
|
|
|
+ }
|
|
|
+
|
|
|
+ private void validateData(String keyName, byte[] data) throws Exception {
|
|
|
+ ContainerTestHelper
|
|
|
+ .validateData(keyName, data, objectStore, volumeName, bucketName);
|
|
|
+ }
|
|
|
+}
|