blob: 40ac206dd8925eb672e6a5ec27e437f7fc661929 [file] [log] [blame]
/**
* 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.hdfs;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.Timeout;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import static org.apache.hadoop.hdfs.ReadStripedFileWithDecodingHelper.BLOCK_SIZE;
import static org.apache.hadoop.hdfs.ReadStripedFileWithDecodingHelper.FILE_LENGTHS;
import static org.apache.hadoop.hdfs.ReadStripedFileWithDecodingHelper.NUM_DATA_UNITS;
import static org.apache.hadoop.hdfs.ReadStripedFileWithDecodingHelper.NUM_PARITY_UNITS;
import static org.apache.hadoop.hdfs.ReadStripedFileWithDecodingHelper.initializeCluster;
import static org.apache.hadoop.hdfs.ReadStripedFileWithDecodingHelper.tearDownCluster;
/**
* Test online recovery with failed DNs. This test is parameterized.
*/
@RunWith(Parameterized.class)
public class TestReadStripedFileWithDNFailure {
static final Logger LOG =
LoggerFactory.getLogger(TestReadStripedFileWithDNFailure.class);
private static MiniDFSCluster cluster;
private static DistributedFileSystem dfs;
@Rule
public Timeout globalTimeout = new Timeout(300000);
@BeforeClass
public static void setup() throws IOException {
cluster = initializeCluster();
dfs = cluster.getFileSystem();
}
@AfterClass
public static void tearDown() throws IOException {
tearDownCluster(cluster);
}
@Parameterized.Parameters
public static Collection<Object[]> getParameters() {
ArrayList<Object[]> params = new ArrayList<>();
for (int fileLength : FILE_LENGTHS) {
for (int i = 0; i < NUM_PARITY_UNITS; i++) {
params.add(new Object[] {fileLength, i+1});
}
}
return params;
}
private int fileLength;
private int dnFailureNum;
public TestReadStripedFileWithDNFailure(int fileLength, int dnFailureNum) {
this.fileLength = fileLength;
this.dnFailureNum = dnFailureNum;
}
/**
* Shutdown tolerable number of Datanode before reading.
* Verify the decoding works correctly.
*/
@Test
public void testReadWithDNFailure() throws Exception {
try {
// setup a new cluster with no dead datanode
setup();
ReadStripedFileWithDecodingHelper.testReadWithDNFailure(cluster,
dfs, fileLength, dnFailureNum);
} catch (IOException ioe) {
String fileType = fileLength < (BLOCK_SIZE * NUM_DATA_UNITS) ?
"smallFile" : "largeFile";
LOG.error("Failed to read file with DN failure:"
+ " fileType = " + fileType
+ ", dnFailureNum = " + dnFailureNum);
} finally {
// tear down the cluster
tearDown();
}
}
}