• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java SleepAction类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



SleepAction类属于org.apache.hadoop.fi.DataTransferTestUtil包,在下文中一共展示了SleepAction类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: runSlowDatanodeTest

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的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: runTest17_19

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的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


示例3: runTest29_30

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的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


示例4: pipeline_Fi_20

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的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


示例5: pipeline_Fi_21

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的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


示例6: pipeline_Fi_22

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的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


示例7: runSlowDatanodeTest

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的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:hopshadoop,项目名称:hops,代码行数:11,代码来源:TestFiDataTransferProtocol.java


示例8: pipeline_Fi_01

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的package包/类
/**
 * Pipeline setup:
 * DN0 never responses after received setup request from client.
 * Client gets an IOException and determine DN0 bad.
 */
@Test
public void pipeline_Fi_01() throws IOException {
  final String methodName = FiTestUtil.getMethodName();
  runReceiverOpWriteBlockTest(methodName, 0,
      new SleepAction(methodName, 0, 0));
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:12,代码来源:TestFiDataTransferProtocol.java


示例9: pipeline_Fi_02

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的package包/类
/**
 * Pipeline setup:
 * DN1 never responses after received setup request from client.
 * Client gets an IOException and determine DN1 bad.
 */
@Test
public void pipeline_Fi_02() throws IOException {
  final String methodName = FiTestUtil.getMethodName();
  runReceiverOpWriteBlockTest(methodName, 1,
      new SleepAction(methodName, 1, 0));
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:12,代码来源:TestFiDataTransferProtocol.java


示例10: pipeline_Fi_03

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的package包/类
/**
 * Pipeline setup:
 * DN2 never responses after received setup request from client.
 * Client gets an IOException and determine DN2 bad.
 */
@Test
public void pipeline_Fi_03() throws IOException {
  final String methodName = FiTestUtil.getMethodName();
  runReceiverOpWriteBlockTest(methodName, 2,
      new SleepAction(methodName, 2, 0));
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:12,代码来源:TestFiDataTransferProtocol.java


示例11: runTest17_19

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的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:hopshadoop,项目名称:hops,代码行数:14,代码来源:TestFiDataTransferProtocol2.java


示例12: runTest29_30

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的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:hopshadoop,项目名称:hops,代码行数:14,代码来源:TestFiDataTransferProtocol2.java


示例13: pipeline_Fi_20

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的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:hopshadoop,项目名称:hops,代码行数:14,代码来源:TestFiDataTransferProtocol2.java


示例14: pipeline_Fi_21

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的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:hopshadoop,项目名称:hops,代码行数:14,代码来源:TestFiDataTransferProtocol2.java


示例15: pipeline_Fi_22

import org.apache.hadoop.fi.DataTransferTestUtil.SleepAction; //导入依赖的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



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java ExceptionEntry类代码示例发布时间:2022-05-22
下一篇:
Java Base64类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap