blob: 08ddb7be636988921cbff99a3a1a3d37ed3aa640 [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
* <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.container.common.volume;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Set;
import java.util.UUID;
import org.apache.hadoop.hdds.DFSConfigKeysLegacy;
import org.apache.hadoop.hdds.conf.ConfigurationSource;
import org.apache.hadoop.hdds.conf.OzoneConfiguration;
import org.apache.hadoop.test.GenericTestUtils;
import org.apache.hadoop.util.DiskChecker.DiskErrorException;
import org.apache.hadoop.util.Timer;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Iterables;
import org.apache.commons.io.FileUtils;
import static org.hamcrest.CoreMatchers.is;
import org.junit.After;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.assertTrue;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.rules.Timeout;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Verify that {@link MutableVolumeSet} correctly checks for failed disks
* during initialization.
*/
public class TestVolumeSetDiskChecks {
public static final Logger LOG = LoggerFactory.getLogger(
TestVolumeSetDiskChecks.class);
@Rule
public Timeout globalTimeout = Timeout.seconds(30);
@Rule
public ExpectedException thrown = ExpectedException.none();
private OzoneConfiguration conf = null;
/**
* Cleanup volume directories.
*/
@After
public void cleanup() {
final Collection<String> dirs = conf.getTrimmedStringCollection(
DFSConfigKeysLegacy.DFS_DATANODE_DATA_DIR_KEY);
for (String d: dirs) {
FileUtils.deleteQuietly(new File(d));
}
}
/**
* Verify that VolumeSet creates volume root directories at startup.
* @throws IOException
*/
@Test
public void testOzoneDirsAreCreated() throws IOException {
final int numVolumes = 2;
conf = getConfWithDataNodeDirs(numVolumes);
final MutableVolumeSet volumeSet =
new MutableVolumeSet(UUID.randomUUID().toString(), conf);
assertThat(volumeSet.getVolumesList().size(), is(numVolumes));
assertThat(volumeSet.getFailedVolumesList().size(), is(0));
// Verify that the Ozone dirs were created during initialization.
Collection<String> dirs = conf.getTrimmedStringCollection(
DFSConfigKeysLegacy.DFS_DATANODE_DATA_DIR_KEY);
for (String d : dirs) {
assertTrue(new File(d).isDirectory());
}
volumeSet.shutdown();
}
/**
* Verify that bad volumes are filtered at startup.
* @throws IOException
*/
@Test
public void testBadDirectoryDetection() throws IOException {
final int numVolumes = 5;
final int numBadVolumes = 2;
conf = getConfWithDataNodeDirs(numVolumes);
final MutableVolumeSet volumeSet = new MutableVolumeSet(
UUID.randomUUID().toString(), conf) {
@Override
HddsVolumeChecker getVolumeChecker(ConfigurationSource configuration)
throws DiskErrorException {
return new DummyChecker(configuration, new Timer(), numBadVolumes);
}
};
assertThat(volumeSet.getFailedVolumesList().size(), is(numBadVolumes));
assertThat(volumeSet.getVolumesList().size(),
is(numVolumes - numBadVolumes));
volumeSet.shutdown();
}
/**
* Verify that all volumes are added to fail list if all volumes are bad.
*/
@Test
public void testAllVolumesAreBad() throws IOException {
final int numVolumes = 5;
conf = getConfWithDataNodeDirs(numVolumes);
final MutableVolumeSet volumeSet = new MutableVolumeSet(
UUID.randomUUID().toString(), conf) {
@Override
HddsVolumeChecker getVolumeChecker(ConfigurationSource configuration)
throws DiskErrorException {
return new DummyChecker(configuration, new Timer(), numVolumes);
}
};
assertEquals(volumeSet.getFailedVolumesList().size(), numVolumes);
assertEquals(volumeSet.getVolumesList().size(), 0);
volumeSet.shutdown();
}
/**
* Update configuration with the specified number of Datanode
* storage directories.
* @param numDirs
*/
private OzoneConfiguration getConfWithDataNodeDirs(int numDirs) {
final OzoneConfiguration ozoneConf = new OzoneConfiguration();
final List<String> dirs = new ArrayList<>();
for (int i = 0; i < numDirs; ++i) {
dirs.add(GenericTestUtils.getRandomizedTestDir().getPath());
}
ozoneConf.set(DFSConfigKeysLegacy.DFS_DATANODE_DATA_DIR_KEY,
String.join(",", dirs));
return ozoneConf;
}
/**
* A no-op checker that fails the given number of volumes and succeeds
* the rest.
*/
static class DummyChecker extends HddsVolumeChecker {
private final int numBadVolumes;
DummyChecker(ConfigurationSource conf, Timer timer, int numBadVolumes)
throws DiskErrorException {
super(conf, timer);
this.numBadVolumes = numBadVolumes;
}
@Override
public Set<HddsVolume> checkAllVolumes(Collection<HddsVolume> volumes)
throws InterruptedException {
// Return the first 'numBadVolumes' as failed.
return ImmutableSet.copyOf(Iterables.limit(volumes, numBadVolumes));
}
}
}