Skip to content

HDFS-14889. Ability to check if a block has a replica on provided storage. #1573

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,12 @@ public int getCapacity() {
/** @return true if there is no datanode storage associated with the block */
abstract boolean hasNoStorage();

/**
* Checks whether this block has a Provided replica.
* @return true if this block has a replica on Provided storage.
*/
abstract boolean isProvided();

/**
* Find specified DatanodeStorageInfo.
* @return DatanodeStorageInfo or null if not found.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import com.google.common.base.Preconditions;
import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.fs.StorageType;
import org.apache.hadoop.hdfs.protocol.Block;
import org.apache.hadoop.hdfs.protocol.BlockType;

Expand Down Expand Up @@ -80,6 +81,19 @@ boolean removeStorage(DatanodeStorageInfo storage) {
return true;
}

@Override
boolean isProvided() {
int len = getCapacity();
for (int idx = 0; idx < len; idx++) {
DatanodeStorageInfo storage = getStorageInfo(idx);
if (storage != null
&& storage.getStorageType().equals(StorageType.PROVIDED)) {
return true;
}
}
return false;
}

@Override
public int numNodes() {
assert this.storages != null : "BlockInfo is not initialized";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,15 @@ final boolean hasNoStorage() {
return true;
}

/**
* Striped blocks on Provided Storage is not supported. All blocks on
* Provided storage are assumed to be "contiguous".
*/
@Override
boolean isProvided() {
return false;
}

/**
* This class contains datanode storage information and block index in the
* block group.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@

import static org.apache.hadoop.hdfs.server.namenode.INodeId.INVALID_INODE_ID;
import static org.hamcrest.core.Is.is;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

import org.apache.hadoop.fs.StorageType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.hadoop.hdfs.DFSTestUtil;
Expand Down Expand Up @@ -64,6 +67,39 @@ public void testAddStorage() throws Exception {
Assert.assertEquals(storage, blockInfo.getStorageInfo(0));
}

@Test
public void testAddProvidedStorage() throws Exception {
// block with only provided storage
BlockInfo blockInfo = new BlockInfoContiguous((short) 3);
DatanodeStorageInfo providedStorage = mock(DatanodeStorageInfo.class);
when(providedStorage.getStorageType()).thenReturn(StorageType.PROVIDED);
boolean added = blockInfo.addStorage(providedStorage, blockInfo);
Assert.assertTrue(added);
Assert.assertEquals(providedStorage, blockInfo.getStorageInfo(0));
Assert.assertTrue(blockInfo.isProvided());
}

@Test
public void testAddTwoStorageTypes() throws Exception {
// block with only disk storage
BlockInfo blockInfo = new BlockInfoContiguous((short) 3);
DatanodeStorageInfo diskStorage = mock(DatanodeStorageInfo.class);
DatanodeDescriptor mockDN = mock(DatanodeDescriptor.class);
when(diskStorage.getDatanodeDescriptor()).thenReturn(mockDN);
when(diskStorage.getStorageType()).thenReturn(StorageType.DISK);
boolean added = blockInfo.addStorage(diskStorage, blockInfo);
Assert.assertTrue(added);
Assert.assertEquals(diskStorage, blockInfo.getStorageInfo(0));
Assert.assertFalse(blockInfo.isProvided());

// now add provided storage
DatanodeStorageInfo providedStorage = mock(DatanodeStorageInfo.class);
when(providedStorage.getStorageType()).thenReturn(StorageType.PROVIDED);
added = blockInfo.addStorage(providedStorage, blockInfo);
Assert.assertTrue(added);
Assert.assertTrue(blockInfo.isProvided());
}

@Test
public void testReplaceStorage() throws Exception {

Expand Down