当前位置: 首页>>代码示例>>Java>>正文


Java DataTransferTestUtil.initTest方法代码示例

本文整理汇总了Java中org.apache.hadoop.fi.DataTransferTestUtil.initTest方法的典型用法代码示例。如果您正苦于以下问题:Java DataTransferTestUtil.initTest方法的具体用法?Java DataTransferTestUtil.initTest怎么用?Java DataTransferTestUtil.initTest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.hadoop.fi.DataTransferTestUtil的用法示例。


在下文中一共展示了DataTransferTestUtil.initTest方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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: 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:hopshadoop,项目名称:hops,代码行数:14,代码来源:TestFiDataTransferProtocol2.java

示例15: 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:hopshadoop,项目名称:hops,代码行数:9,代码来源:TestFiPipelineClose.java


注:本文中的org.apache.hadoop.fi.DataTransferTestUtil.initTest方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。