本文整理汇总了Java中org.apache.hadoop.fi.DataTransferTestUtil类的典型用法代码示例。如果您正苦于以下问题:Java DataTransferTestUtil类的具体用法?Java DataTransferTestUtil怎么用?Java DataTransferTestUtil使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DataTransferTestUtil类属于org.apache.hadoop.fi包,在下文中一共展示了DataTransferTestUtil类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: runSlowDatanodeTest
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
private static void runSlowDatanodeTest(String methodName, SleepAction a
) throws IOException {
FiTestUtil.LOG.info("Running " + methodName + " ...");
final DataTransferTest t = (DataTransferTest)DataTransferTestUtil.initTest();
t.fiCallReceivePacket.set(a);
t.fiReceiverOpWriteBlock.set(a);
t.fiStatusRead.set(a);
write1byte(methodName);
}
开发者ID:naver,项目名称:hadoop,代码行数:10,代码来源:TestFiDataTransferProtocol.java
示例2: runReceiverOpWriteBlockTest
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
private static void runReceiverOpWriteBlockTest(String methodName,
int errorIndex, Action<DatanodeID, IOException> a) throws IOException {
FiTestUtil.LOG.info("Running " + methodName + " ...");
final DataTransferTest t = (DataTransferTest) DataTransferTestUtil
.initTest();
t.fiReceiverOpWriteBlock.set(a);
t.fiPipelineInitErrorNonAppend.set(new VerificationAction(methodName,
errorIndex));
write1byte(methodName);
Assert.assertTrue(t.isSuccess());
}
开发者ID:naver,项目名称:hadoop,代码行数:12,代码来源:TestFiDataTransferProtocol.java
示例3: runStatusReadTest
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
private static void runStatusReadTest(String methodName, int errorIndex,
Action<DatanodeID, IOException> a) throws IOException {
FiTestUtil.LOG.info("Running " + methodName + " ...");
final DataTransferTest t = (DataTransferTest) DataTransferTestUtil
.initTest();
t.fiStatusRead.set(a);
t.fiPipelineInitErrorNonAppend.set(new VerificationAction(methodName,
errorIndex));
write1byte(methodName);
Assert.assertTrue(t.isSuccess());
}
开发者ID:naver,项目名称:hadoop,代码行数:12,代码来源:TestFiDataTransferProtocol.java
示例4: runCallWritePacketToDisk
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
private static void runCallWritePacketToDisk(String methodName,
int errorIndex, Action<DatanodeID, IOException> a) throws IOException {
FiTestUtil.LOG.info("Running " + methodName + " ...");
final DataTransferTest t = (DataTransferTest)DataTransferTestUtil.initTest();
t.fiCallWritePacketToDisk.set(a);
t.fiPipelineErrorAfterInit.set(new VerificationAction(methodName, errorIndex));
write1byte(methodName);
Assert.assertTrue(t.isSuccess());
}
开发者ID:naver,项目名称:hadoop,代码行数:10,代码来源:TestFiDataTransferProtocol.java
示例5: runPipelineCloseTest
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
private static void runPipelineCloseTest(String methodName,
Action<DatanodeID, IOException> a) throws IOException {
FiTestUtil.LOG.info("Running " + methodName + " ...");
final DataTransferTest t = (DataTransferTest) DataTransferTestUtil
.initTest();
t.fiPipelineClose.set(a);
TestFiDataTransferProtocol.write1byte(methodName);
}
开发者ID:naver,项目名称:hadoop,代码行数:9,代码来源:TestFiPipelineClose.java
示例6: runPipelineCloseAck
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
private static void runPipelineCloseAck(String name, int i, DataNodeAction a
) throws IOException {
FiTestUtil.LOG.info("Running " + name + " ...");
final DataTransferTest t = (DataTransferTest)DataTransferTestUtil.initTest();
final MarkerConstraint marker = new MarkerConstraint(name);
t.fiPipelineClose.set(new DatanodeMarkingAction(name, i, marker));
t.fiPipelineAck.set(new ConstraintSatisfactionAction<DatanodeID, IOException>(a, marker));
TestFiDataTransferProtocol.write1byte(name);
}
开发者ID:naver,项目名称:hadoop,代码行数:10,代码来源:TestFiPipelineClose.java
示例7: runBlockFileCloseTest
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
private static void runBlockFileCloseTest(String methodName,
Action<DatanodeID, IOException> a) throws IOException {
FiTestUtil.LOG.info("Running " + methodName + " ...");
final DataTransferTest t = (DataTransferTest) DataTransferTestUtil
.initTest();
t.fiBlockFileClose.set(a);
TestFiDataTransferProtocol.write1byte(methodName);
}
开发者ID:naver,项目名称:hadoop,代码行数:9,代码来源:TestFiPipelineClose.java
示例8: runTest17_19
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
private void runTest17_19(String methodName, int dnIndex)
throws IOException {
FiTestUtil.LOG.info("Running " + methodName + " ...");
final DataTransferTest t = (DataTransferTest) DataTransferTestUtil
.initTest();
initSlowDatanodeTest(t, new SleepAction(methodName, 0, 0, MAX_SLEEP));
initSlowDatanodeTest(t, new SleepAction(methodName, 1, 0, MAX_SLEEP));
initSlowDatanodeTest(t, new SleepAction(methodName, 2, 0, MAX_SLEEP));
t.fiCallWritePacketToDisk.set(new CountdownDoosAction(methodName, dnIndex, 3));
t.fiPipelineErrorAfterInit.set(new VerificationAction(methodName, dnIndex));
writeSeveralPackets(methodName);
Assert.assertTrue(t.isSuccess());
}
开发者ID:naver,项目名称:hadoop,代码行数:14,代码来源:TestFiDataTransferProtocol2.java
示例9: runTest29_30
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
private void runTest29_30(String methodName, int dnIndex) throws IOException {
FiTestUtil.LOG.info("Running " + methodName + " ...");
final DataTransferTest t = (DataTransferTest) DataTransferTestUtil
.initTest();
initSlowDatanodeTest(t, new SleepAction(methodName, 0, 0, MAX_SLEEP));
initSlowDatanodeTest(t, new SleepAction(methodName, 1, 0, MAX_SLEEP));
initSlowDatanodeTest(t, new SleepAction(methodName, 2, 0, MAX_SLEEP));
t.fiAfterDownstreamStatusRead.set(new CountdownOomAction(methodName, dnIndex, 3));
t.fiPipelineErrorAfterInit.set(new VerificationAction(methodName, dnIndex));
writeSeveralPackets(methodName);
Assert.assertTrue(t.isSuccess());
}
开发者ID:naver,项目名称:hadoop,代码行数:13,代码来源:TestFiDataTransferProtocol2.java
示例10: runTest34_35
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
private void runTest34_35(String methodName, int dnIndex) throws IOException {
FiTestUtil.LOG.info("Running " + methodName + " ...");
final DataTransferTest t = (DataTransferTest) DataTransferTestUtil
.initTest();
t.fiAfterDownstreamStatusRead.set(new CountdownSleepAction(methodName, dnIndex, 0, 3));
t.fiPipelineErrorAfterInit.set(new VerificationAction(methodName, dnIndex));
writeSeveralPackets(methodName);
Assert.assertTrue(t.isSuccess());
}
开发者ID:naver,项目名称:hadoop,代码行数:10,代码来源:TestFiDataTransferProtocol2.java
示例11: pipeline_Fi_20
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
/**
* Streaming: Client writes several packets with DN0 very slow. Client
* finishes write successfully.
*/
@Test
public void pipeline_Fi_20() throws IOException {
final String methodName = FiTestUtil.getMethodName();
FiTestUtil.LOG.info("Running " + methodName + " ...");
final DataTransferTest t = (DataTransferTest) DataTransferTestUtil
.initTest();
initSlowDatanodeTest(t, new SleepAction(methodName, 0, MAX_SLEEP));
writeSeveralPackets(methodName);
}
开发者ID:naver,项目名称:hadoop,代码行数:14,代码来源:TestFiDataTransferProtocol2.java
示例12: pipeline_Fi_21
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
/**
* Streaming: Client writes several packets with DN1 very slow. Client
* finishes write successfully.
*/
@Test
public void pipeline_Fi_21() throws IOException {
final String methodName = FiTestUtil.getMethodName();
FiTestUtil.LOG.info("Running " + methodName + " ...");
final DataTransferTest t = (DataTransferTest) DataTransferTestUtil
.initTest();
initSlowDatanodeTest(t, new SleepAction(methodName, 1, MAX_SLEEP));
writeSeveralPackets(methodName);
}
开发者ID:naver,项目名称:hadoop,代码行数:14,代码来源:TestFiDataTransferProtocol2.java
示例13: pipeline_Fi_22
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
/**
* Streaming: Client writes several packets with DN2 very slow. Client
* finishes write successfully.
*/
@Test
public void pipeline_Fi_22() throws IOException {
final String methodName = FiTestUtil.getMethodName();
FiTestUtil.LOG.info("Running " + methodName + " ...");
final DataTransferTest t = (DataTransferTest) DataTransferTestUtil
.initTest();
initSlowDatanodeTest(t, new SleepAction(methodName, 2, MAX_SLEEP));
writeSeveralPackets(methodName);
}
开发者ID:naver,项目名称:hadoop,代码行数:14,代码来源:TestFiDataTransferProtocol2.java
示例14: runDiskErrorTest
import org.apache.hadoop.fi.DataTransferTestUtil; //导入依赖的package包/类
/** Methods initializes a test and sets required actions to be used later by
* an injected advice
* @param conf mini cluster configuration
* @param methodName String representation of a test method invoking this
* method
* @param block_size needed size of file's block
* @param a is an action to be set for the set
* @throws IOException in case of any errors
*/
private static void runDiskErrorTest (final Configuration conf,
final String methodName, final int block_size, DerrAction a, int index,
boolean trueVerification)
throws IOException {
FiTestUtil.LOG.info("Running " + methodName + " ...");
final HFlushTest hft = (HFlushTest) FiHFlushTestUtil.initTest();
hft.fiCallHFlush.set(a);
hft.fiErrorOnCallHFlush.set(new DataTransferTestUtil.VerificationAction(methodName, index));
TestHFlush.doTheJob(conf, methodName, block_size, (short)3);
if (trueVerification)
assertTrue("Some of expected conditions weren't detected", hft.isSuccess());
}
开发者ID:naver,项目名称:hadoop,代码行数:22,代码来源:TestFiHFlush.java
注:本文中的org.apache.hadoop.fi.DataTransferTestUtil类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论