HDFS-12528. Add an option to not disable short-circuit reads on failures. Contributed by Xiao Chen.
This commit is contained in:
parent
f9dd5b61f4
commit
2e7331ca26
|
@ -127,6 +127,9 @@ public interface HdfsClientConfigKeys {
|
||||||
boolean DFS_CLIENT_DOMAIN_SOCKET_DATA_TRAFFIC_DEFAULT = false;
|
boolean DFS_CLIENT_DOMAIN_SOCKET_DATA_TRAFFIC_DEFAULT = false;
|
||||||
String DFS_DOMAIN_SOCKET_PATH_KEY = "dfs.domain.socket.path";
|
String DFS_DOMAIN_SOCKET_PATH_KEY = "dfs.domain.socket.path";
|
||||||
String DFS_DOMAIN_SOCKET_PATH_DEFAULT = "";
|
String DFS_DOMAIN_SOCKET_PATH_DEFAULT = "";
|
||||||
|
String DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_KEY =
|
||||||
|
"dfs.domain.socket.disable.interval.seconds";
|
||||||
|
long DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_DEFAULT = 600;
|
||||||
String DFS_SHORT_CIRCUIT_SHARED_MEMORY_WATCHER_INTERRUPT_CHECK_MS =
|
String DFS_SHORT_CIRCUIT_SHARED_MEMORY_WATCHER_INTERRUPT_CHECK_MS =
|
||||||
"dfs.short.circuit.shared.memory.watcher.interrupt.check.ms";
|
"dfs.short.circuit.shared.memory.watcher.interrupt.check.ms";
|
||||||
int DFS_SHORT_CIRCUIT_SHARED_MEMORY_WATCHER_INTERRUPT_CHECK_MS_DEFAULT =
|
int DFS_SHORT_CIRCUIT_SHARED_MEMORY_WATCHER_INTERRUPT_CHECK_MS_DEFAULT =
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.hadoop.hdfs.client.impl;
|
package org.apache.hadoop.hdfs.client.impl;
|
||||||
|
|
||||||
|
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_KEY;
|
||||||
import static org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.ShortCircuitFdResponse.USE_RECEIPT_VERIFICATION;
|
import static org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.ShortCircuitFdResponse.USE_RECEIPT_VERIFICATION;
|
||||||
|
|
||||||
import java.io.BufferedOutputStream;
|
import java.io.BufferedOutputStream;
|
||||||
|
@ -644,10 +645,17 @@ public class BlockReaderFactory implements ShortCircuitReplicaCreator {
|
||||||
LOG.debug("{}:{}", this, msg);
|
LOG.debug("{}:{}", this, msg);
|
||||||
return new ShortCircuitReplicaInfo(new InvalidToken(msg));
|
return new ShortCircuitReplicaInfo(new InvalidToken(msg));
|
||||||
default:
|
default:
|
||||||
LOG.warn(this + ": unknown response code " + resp.getStatus() +
|
final long expiration =
|
||||||
" while attempting to set up short-circuit access. " +
|
clientContext.getDomainSocketFactory().getPathExpireSeconds();
|
||||||
resp.getMessage() + ". Disabling short-circuit read for DataNode "
|
String disableMsg = "disabled temporarily for " + expiration + " seconds";
|
||||||
+ datanode + " temporarily.");
|
if (expiration == 0) {
|
||||||
|
disableMsg = "not disabled";
|
||||||
|
}
|
||||||
|
LOG.warn("{}: unknown response code {} while attempting to set up "
|
||||||
|
+ "short-circuit access. {}. Short-circuit read for "
|
||||||
|
+ "DataNode {} is {} based on {}.",
|
||||||
|
this, resp.getStatus(), resp.getMessage(), datanode,
|
||||||
|
disableMsg, DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_KEY);
|
||||||
clientContext.getDomainSocketFactory()
|
clientContext.getDomainSocketFactory()
|
||||||
.disableShortCircuitForPath(pathInfo.getPath());
|
.disableShortCircuitForPath(pathInfo.getPath());
|
||||||
return null;
|
return null;
|
||||||
|
|
|
@ -68,6 +68,8 @@ import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_CLIENT_USE_
|
||||||
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_CLIENT_WRITE_PACKET_SIZE_DEFAULT;
|
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_CLIENT_WRITE_PACKET_SIZE_DEFAULT;
|
||||||
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_CLIENT_WRITE_PACKET_SIZE_KEY;
|
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_CLIENT_WRITE_PACKET_SIZE_KEY;
|
||||||
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_DATANODE_SOCKET_WRITE_TIMEOUT_KEY;
|
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_DATANODE_SOCKET_WRITE_TIMEOUT_KEY;
|
||||||
|
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_DEFAULT;
|
||||||
|
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_KEY;
|
||||||
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_DOMAIN_SOCKET_PATH_DEFAULT;
|
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_DOMAIN_SOCKET_PATH_DEFAULT;
|
||||||
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_DOMAIN_SOCKET_PATH_KEY;
|
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_DOMAIN_SOCKET_PATH_KEY;
|
||||||
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_REPLICATION_DEFAULT;
|
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_REPLICATION_DEFAULT;
|
||||||
|
@ -602,6 +604,7 @@ public class DfsClientConf {
|
||||||
private final long shortCircuitMmapCacheExpiryMs;
|
private final long shortCircuitMmapCacheExpiryMs;
|
||||||
private final long shortCircuitMmapCacheRetryTimeout;
|
private final long shortCircuitMmapCacheRetryTimeout;
|
||||||
private final long shortCircuitCacheStaleThresholdMs;
|
private final long shortCircuitCacheStaleThresholdMs;
|
||||||
|
private final long domainSocketDisableIntervalSeconds;
|
||||||
|
|
||||||
private final long keyProviderCacheExpiryMs;
|
private final long keyProviderCacheExpiryMs;
|
||||||
|
|
||||||
|
@ -679,6 +682,11 @@ public class DfsClientConf {
|
||||||
shortCircuitSharedMemoryWatcherInterruptCheckMs = conf.getInt(
|
shortCircuitSharedMemoryWatcherInterruptCheckMs = conf.getInt(
|
||||||
DFS_SHORT_CIRCUIT_SHARED_MEMORY_WATCHER_INTERRUPT_CHECK_MS,
|
DFS_SHORT_CIRCUIT_SHARED_MEMORY_WATCHER_INTERRUPT_CHECK_MS,
|
||||||
DFS_SHORT_CIRCUIT_SHARED_MEMORY_WATCHER_INTERRUPT_CHECK_MS_DEFAULT);
|
DFS_SHORT_CIRCUIT_SHARED_MEMORY_WATCHER_INTERRUPT_CHECK_MS_DEFAULT);
|
||||||
|
domainSocketDisableIntervalSeconds = conf.getLong(
|
||||||
|
DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_KEY,
|
||||||
|
DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_DEFAULT);
|
||||||
|
Preconditions.checkArgument(domainSocketDisableIntervalSeconds >= 0,
|
||||||
|
DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_KEY + "can't be negative.");
|
||||||
|
|
||||||
keyProviderCacheExpiryMs = conf.getLong(
|
keyProviderCacheExpiryMs = conf.getLong(
|
||||||
DFS_CLIENT_KEY_PROVIDER_CACHE_EXPIRY_MS,
|
DFS_CLIENT_KEY_PROVIDER_CACHE_EXPIRY_MS,
|
||||||
|
@ -793,6 +801,13 @@ public class DfsClientConf {
|
||||||
return shortCircuitCacheStaleThresholdMs;
|
return shortCircuitCacheStaleThresholdMs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the domainSocketDisableIntervalSeconds
|
||||||
|
*/
|
||||||
|
public long getDomainSocketDisableIntervalSeconds() {
|
||||||
|
return domainSocketDisableIntervalSeconds;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the keyProviderCacheExpiryMs
|
* @return the keyProviderCacheExpiryMs
|
||||||
*/
|
*/
|
||||||
|
@ -827,7 +842,9 @@ public class DfsClientConf {
|
||||||
+ ", shortCircuitSharedMemoryWatcherInterruptCheckMs = "
|
+ ", shortCircuitSharedMemoryWatcherInterruptCheckMs = "
|
||||||
+ shortCircuitSharedMemoryWatcherInterruptCheckMs
|
+ shortCircuitSharedMemoryWatcherInterruptCheckMs
|
||||||
+ ", keyProviderCacheExpiryMs = "
|
+ ", keyProviderCacheExpiryMs = "
|
||||||
+ keyProviderCacheExpiryMs;
|
+ keyProviderCacheExpiryMs
|
||||||
|
+ ", domainSocketDisableIntervalSeconds = "
|
||||||
|
+ domainSocketDisableIntervalSeconds;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -92,10 +92,8 @@ public class DomainSocketFactory {
|
||||||
/**
|
/**
|
||||||
* Information about domain socket paths.
|
* Information about domain socket paths.
|
||||||
*/
|
*/
|
||||||
final Cache<String, PathState> pathMap =
|
private final long pathExpireSeconds;
|
||||||
CacheBuilder.newBuilder()
|
private final Cache<String, PathState> pathMap;
|
||||||
.expireAfterWrite(10, TimeUnit.MINUTES)
|
|
||||||
.build();
|
|
||||||
|
|
||||||
public DomainSocketFactory(ShortCircuitConf conf) {
|
public DomainSocketFactory(ShortCircuitConf conf) {
|
||||||
final String feature;
|
final String feature;
|
||||||
|
@ -121,6 +119,10 @@ public class DomainSocketFactory {
|
||||||
LOG.debug(feature + " is enabled.");
|
LOG.debug(feature + " is enabled.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pathExpireSeconds = conf.getDomainSocketDisableIntervalSeconds();
|
||||||
|
pathMap = CacheBuilder.newBuilder()
|
||||||
|
.expireAfterWrite(pathExpireSeconds, TimeUnit.SECONDS).build();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -192,4 +194,8 @@ public class DomainSocketFactory {
|
||||||
public void clearPathMap() {
|
public void clearPathMap() {
|
||||||
pathMap.invalidateAll();
|
pathMap.invalidateAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long getPathExpireSeconds() {
|
||||||
|
return pathExpireSeconds;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -278,7 +278,7 @@ public class ShortCircuitCache implements Closeable {
|
||||||
* Maximum total size of the cache, including both mmapped and
|
* Maximum total size of the cache, including both mmapped and
|
||||||
* no$-mmapped elements.
|
* no$-mmapped elements.
|
||||||
*/
|
*/
|
||||||
private final int maxTotalSize;
|
private int maxTotalSize;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Non-mmaped elements older than this will be closed.
|
* Non-mmaped elements older than this will be closed.
|
||||||
|
@ -369,6 +369,11 @@ public class ShortCircuitCache implements Closeable {
|
||||||
return staleThresholdMs;
|
return staleThresholdMs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@VisibleForTesting
|
||||||
|
public void setMaxTotalSize(int maxTotalSize) {
|
||||||
|
this.maxTotalSize = maxTotalSize;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Increment the reference count of a replica, and remove it from any free
|
* Increment the reference count of a replica, and remove it from any free
|
||||||
* list it may be in.
|
* list it may be in.
|
||||||
|
@ -1025,4 +1030,13 @@ public class ShortCircuitCache implements Closeable {
|
||||||
public DfsClientShmManager getDfsClientShmManager() {
|
public DfsClientShmManager getDfsClientShmManager() {
|
||||||
return shmManager;
|
return shmManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Can be used in testing to verify whether a read went through SCR, after
|
||||||
|
* the read is done and before the stream is closed.
|
||||||
|
*/
|
||||||
|
@VisibleForTesting
|
||||||
|
public int getReplicaInfoMapSize() {
|
||||||
|
return replicaInfoMap.size();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2603,6 +2603,17 @@
|
||||||
</description>
|
</description>
|
||||||
</property>
|
</property>
|
||||||
|
|
||||||
|
<property>
|
||||||
|
<name>dfs.domain.socket.disable.interval.seconds</name>
|
||||||
|
<value>600</value>
|
||||||
|
<description>
|
||||||
|
The interval that a DataNode is disabled for future Short-Circuit Reads,
|
||||||
|
after an error happens during a Short-Circuit Read. Setting this to 0 will
|
||||||
|
not disable Short-Circuit Reads at all after errors happen. Negative values
|
||||||
|
are invalid.
|
||||||
|
</description>
|
||||||
|
</property>
|
||||||
|
|
||||||
<property>
|
<property>
|
||||||
<name>dfs.client.read.shortcircuit.skip.checksum</name>
|
<name>dfs.client.read.shortcircuit.skip.checksum</name>
|
||||||
<value>false</value>
|
<value>false</value>
|
||||||
|
|
|
@ -22,6 +22,8 @@ import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_CLIENT_CONT
|
||||||
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_CLIENT_DOMAIN_SOCKET_DATA_TRAFFIC;
|
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_CLIENT_DOMAIN_SOCKET_DATA_TRAFFIC;
|
||||||
import static org.apache.hadoop.hdfs.DFSConfigKeys.DFS_DOMAIN_SOCKET_PATH_KEY;
|
import static org.apache.hadoop.hdfs.DFSConfigKeys.DFS_DOMAIN_SOCKET_PATH_KEY;
|
||||||
import static org.apache.hadoop.hdfs.DFSConfigKeys.DFS_SHORT_CIRCUIT_SHARED_MEMORY_WATCHER_INTERRUPT_CHECK_MS;
|
import static org.apache.hadoop.hdfs.DFSConfigKeys.DFS_SHORT_CIRCUIT_SHARED_MEMORY_WATCHER_INTERRUPT_CHECK_MS;
|
||||||
|
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_DEFAULT;
|
||||||
|
import static org.apache.hadoop.hdfs.client.HdfsClientConfigKeys.DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_KEY;
|
||||||
import static org.hamcrest.CoreMatchers.equalTo;
|
import static org.hamcrest.CoreMatchers.equalTo;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
@ -36,9 +38,8 @@ import java.util.concurrent.TimeUnit;
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
|
||||||
import org.apache.commons.logging.LogFactory;
|
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
|
import org.apache.hadoop.fs.FSDataInputStream;
|
||||||
import org.apache.hadoop.fs.FileSystem;
|
import org.apache.hadoop.fs.FileSystem;
|
||||||
import org.apache.hadoop.fs.Path;
|
import org.apache.hadoop.fs.Path;
|
||||||
import org.apache.hadoop.hdfs.BlockReader;
|
import org.apache.hadoop.hdfs.BlockReader;
|
||||||
|
@ -54,18 +55,29 @@ import org.apache.hadoop.hdfs.shortcircuit.DfsClientShmManager.PerDatanodeVisito
|
||||||
import org.apache.hadoop.hdfs.shortcircuit.DfsClientShmManager.Visitor;
|
import org.apache.hadoop.hdfs.shortcircuit.DfsClientShmManager.Visitor;
|
||||||
import org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache;
|
import org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache;
|
||||||
import org.apache.hadoop.hdfs.shortcircuit.ShortCircuitReplicaInfo;
|
import org.apache.hadoop.hdfs.shortcircuit.ShortCircuitReplicaInfo;
|
||||||
|
import org.apache.hadoop.io.IOUtils;
|
||||||
import org.apache.hadoop.net.unix.DomainSocket;
|
import org.apache.hadoop.net.unix.DomainSocket;
|
||||||
import org.apache.hadoop.net.unix.TemporarySocketDirectory;
|
import org.apache.hadoop.net.unix.TemporarySocketDirectory;
|
||||||
|
import org.apache.hadoop.test.GenericTestUtils;
|
||||||
|
import org.hamcrest.CoreMatchers;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.Assert;
|
import org.junit.Assert;
|
||||||
import org.junit.Assume;
|
import org.junit.Assume;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
|
import org.junit.Rule;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import com.google.common.util.concurrent.Uninterruptibles;
|
import com.google.common.util.concurrent.Uninterruptibles;
|
||||||
|
import org.junit.rules.Timeout;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
public class TestBlockReaderFactory {
|
public class TestBlockReaderFactory {
|
||||||
static final Log LOG = LogFactory.getLog(TestBlockReaderFactory.class);
|
static final Logger LOG =
|
||||||
|
LoggerFactory.getLogger(TestBlockReaderFactory.class);
|
||||||
|
|
||||||
|
@Rule
|
||||||
|
public final Timeout globalTimeout = new Timeout(180000);
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void init() {
|
public void init() {
|
||||||
|
@ -209,7 +221,7 @@ public class TestBlockReaderFactory {
|
||||||
* occurs); however, the failure result should not be cached. We want
|
* occurs); however, the failure result should not be cached. We want
|
||||||
* to be able to retry later and succeed.
|
* to be able to retry later and succeed.
|
||||||
*/
|
*/
|
||||||
@Test(timeout=60000)
|
@Test
|
||||||
public void testShortCircuitCacheTemporaryFailure()
|
public void testShortCircuitCacheTemporaryFailure()
|
||||||
throws Exception {
|
throws Exception {
|
||||||
BlockReaderTestUtil.enableBlockReaderFactoryTracing();
|
BlockReaderTestUtil.enableBlockReaderFactoryTracing();
|
||||||
|
@ -302,7 +314,96 @@ public class TestBlockReaderFactory {
|
||||||
Assert.assertFalse(testFailed.get());
|
Assert.assertFalse(testFailed.get());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Test that by default, reads after a failure does not go through SCR.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testShortCircuitCacheUnbufferDefault() throws Exception {
|
||||||
|
testShortCircuitCacheUnbufferWithDisableInterval(
|
||||||
|
DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_DEFAULT, true);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Test the case where if we disable the cache in
|
||||||
|
* {@link org.apache.hadoop.hdfs.shortcircuit.DomainSocketFactory}, reads
|
||||||
|
* after a failure still goes through SCR.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testShortCircuitCacheUnbufferDisabled() throws Exception {
|
||||||
|
testShortCircuitCacheUnbufferWithDisableInterval(0, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void testShortCircuitCacheUnbufferWithDisableInterval(
|
||||||
|
final long interval, final boolean disabled) throws Exception {
|
||||||
|
final String testName = GenericTestUtils.getMethodName();
|
||||||
|
BlockReaderTestUtil.enableBlockReaderFactoryTracing();
|
||||||
|
try (TemporarySocketDirectory sockDir = new TemporarySocketDirectory()) {
|
||||||
|
Configuration conf = createShortCircuitConf(testName, sockDir);
|
||||||
|
conf.set(DFS_CLIENT_CONTEXT, testName + interval + disabled);
|
||||||
|
conf.setLong(DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_KEY, interval);
|
||||||
|
Configuration serverConf = new Configuration(conf);
|
||||||
|
MiniDFSCluster.Builder builder =
|
||||||
|
new MiniDFSCluster.Builder(serverConf).numDataNodes(1);
|
||||||
|
try (MiniDFSCluster cluster = builder.build();
|
||||||
|
DistributedFileSystem dfs = (DistributedFileSystem) FileSystem
|
||||||
|
.get(cluster.getURI(0), conf)) {
|
||||||
|
cluster.waitActive();
|
||||||
|
final Path testFile = new Path("/test_file");
|
||||||
|
final int testFileLen = 4000;
|
||||||
|
final int seed = 0xFADED;
|
||||||
|
DFSTestUtil.createFile(dfs, testFile, testFileLen, (short) 1, seed);
|
||||||
|
final byte[] expected = DFSTestUtil.
|
||||||
|
calculateFileContentsFromSeed(seed, testFileLen);
|
||||||
|
|
||||||
|
try (FSDataInputStream in = dfs.open(testFile)) {
|
||||||
|
Assert.assertEquals(0,
|
||||||
|
dfs.getClient().getClientContext().getShortCircuitCache()
|
||||||
|
.getReplicaInfoMapSize());
|
||||||
|
|
||||||
|
final byte[] buf = new byte[testFileLen];
|
||||||
|
IOUtils.readFully(in, buf, 0, testFileLen);
|
||||||
|
validateReadResult(dfs, expected, buf, 1);
|
||||||
|
|
||||||
|
// Set cache size to 0 so the replica marked evictable by unbuffer
|
||||||
|
// will be purged immediately.
|
||||||
|
dfs.getClient().getClientContext().getShortCircuitCache()
|
||||||
|
.setMaxTotalSize(0);
|
||||||
|
LOG.info("Unbuffering");
|
||||||
|
in.unbuffer();
|
||||||
|
Assert.assertEquals(0,
|
||||||
|
dfs.getClient().getClientContext().getShortCircuitCache()
|
||||||
|
.getReplicaInfoMapSize());
|
||||||
|
|
||||||
|
DFSTestUtil.appendFile(dfs, testFile, "append more data");
|
||||||
|
|
||||||
|
// This read will force a new replica read via TCP.
|
||||||
|
Arrays.fill(buf, (byte) 0);
|
||||||
|
in.seek(0);
|
||||||
|
IOUtils.readFully(in, buf, 0, testFileLen);
|
||||||
|
validateReadResult(dfs, expected, buf, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
LOG.info("Reading {} again.", testFile);
|
||||||
|
try (FSDataInputStream in = dfs.open(testFile)) {
|
||||||
|
final byte[] buf = new byte[testFileLen];
|
||||||
|
Arrays.fill(buf, (byte) 0);
|
||||||
|
IOUtils.readFully(in, buf, 0, testFileLen);
|
||||||
|
final int expectedMapSize = disabled ? 0 : 1;
|
||||||
|
validateReadResult(dfs, expected, buf, expectedMapSize);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void validateReadResult(final DistributedFileSystem dfs,
|
||||||
|
final byte[] expected, final byte[] actual,
|
||||||
|
final int expectedScrRepMapSize) {
|
||||||
|
Assert.assertThat(expected, CoreMatchers.is(actual));
|
||||||
|
Assert.assertEquals(expectedScrRepMapSize,
|
||||||
|
dfs.getClient().getClientContext().getShortCircuitCache()
|
||||||
|
.getReplicaInfoMapSize());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
* Test that a client which supports short-circuit reads using
|
* Test that a client which supports short-circuit reads using
|
||||||
* shared memory can fall back to not using shared memory when
|
* shared memory can fall back to not using shared memory when
|
||||||
* the server doesn't support it.
|
* the server doesn't support it.
|
||||||
|
|
Loading…
Reference in New Issue