- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我正在使用Hbase。
我想计算表的行数,所以我使用了AggregationClient.rowCount()
Configuration conf = HBaseConfiguration.create();
AggregationClient aggregationClient = new AggregationClient(conf);
HTable htable=new HTable(conf,Bytes.toBytes("comment"));
Scan scan = new Scan();
scan.addFamily(Bytes.toBytes("user"));
try{
long rowCount = aggregationClient.rowCount( htable , null , scan);
System.out.println("Row Count : "+rowCount);
}catch(Throwable e) {
e.printStackTrace();
}
java.lang.NullPointerException at org.apache.hadoop.hbase.client.coprocessor.AggregationClient.validateArgAndGetPB(AggregationClient.java:804) at org.apache.hadoop.hbase.client.coprocessor.AggregationClient.rowCount(AggregationClient.java:306) at com.naver.hbase.Main.countRows(Main.java:131) at com.naver.hbase.Main.main(Main.java:58)
最佳答案
好了,rowCount方法需要3个参数
long rowCount(final Table table, final ColumnInterpreter<R, S, P, Q, T> ci, final Scan scan) throws Throwable {
final AggregateRequest requestArg = validateArgAndGetPB(scan, ci, false);
ci = null
,问题就在那里
关于java - HBase countRow Nullpointer异常在validateArgAndGetPB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51437367/
我正在构建一个 SSRS 报告。我有一个包含多个字段的数据集,其中一个是 Doc_Type。 Doc_Type 可以包含多个值,其中之一是“发货”。 在我的报告中,我想计算等于“发货”的 Doc_Ty
您好,我正在使用Hbase。 我想计算表的行数,所以我使用了AggregationClient.rowCount() Configuration conf = HBaseConfigu
我在一份报告中有 6 个 tablix。它们都使用相同的嵌入式数据集。我试图消除在隐藏基于 tablix (CountRows() = 0) 时报告中出现的空白。虽然我在行属性中隐藏了六个基于 tab
我是一名优秀的程序员,十分优秀!