本文整理汇总了Java中org.apache.hadoop.hbase.util.HBaseFsck.PrintingErrorReporter类的典型用法代码示例。如果您正苦于以下问题:Java PrintingErrorReporter类的具体用法?Java PrintingErrorReporter怎么用?Java PrintingErrorReporter使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
PrintingErrorReporter类属于org.apache.hadoop.hbase.util.HBaseFsck包,在下文中一共展示了PrintingErrorReporter类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testErrorReporter
import org.apache.hadoop.hbase.util.HBaseFsck.PrintingErrorReporter; //导入依赖的package包/类
/**
* Test pluggable error reporter. It can be plugged in
* from system property or configuration.
*/
@Test (timeout=180000)
public void testErrorReporter() throws Exception {
try {
MockErrorReporter.calledCount = 0;
doFsck(conf, false);
assertEquals(MockErrorReporter.calledCount, 0);
conf.set("hbasefsck.errorreporter", MockErrorReporter.class.getName());
doFsck(conf, false);
assertTrue(MockErrorReporter.calledCount > 20);
} finally {
conf.set("hbasefsck.errorreporter",
PrintingErrorReporter.class.getName());
MockErrorReporter.calledCount = 0;
}
}
示例2: testErrorReporter
import org.apache.hadoop.hbase.util.HBaseFsck.PrintingErrorReporter; //导入依赖的package包/类
/**
* Test pluggable error reporter. It can be plugged in
* from system property or configuration.
*/
@Test
public void testErrorReporter() throws Exception {
try {
MockErrorReporter.calledCount = 0;
doFsck(conf, false);
assertEquals(MockErrorReporter.calledCount, 0);
conf.set("hbasefsck.errorreporter", MockErrorReporter.class.getName());
doFsck(conf, false);
assertTrue(MockErrorReporter.calledCount > 20);
} finally {
conf.set("hbasefsck.errorreporter",
PrintingErrorReporter.class.getName());
MockErrorReporter.calledCount = 0;
}
}