无法使用Pig从hbase加载数据

时间:2017-01-23 09:18:20

标签: hbase apache-pig

我尝试从hbase表加载所有数据。其中有10093条记录。 这是我的猪脚本

register 'zookeeper.jar'
register 'hbase-server-0.98.6-cdh5.3.2.jar'

result = LOAD 'hbase://clf_transaction_train'
   USING org.apache.pig.backend.hadoop.hbase.HBaseStorage(
   'cf:features cf:content', '-loadKey true')
   AS (  content:bytearray, features:bytearray);


rmf $output;
STORE result INTO '$output';

脚本正常工作 - 没有任何错误消息。但只加载100条记录。

我该如何解决? 感谢。

1 个答案:

答案 0 :(得分:1)

您可以尝试修改hbase scanner timeout:

<property>
  <name>hbase.rpc.timeout</name>
  <value>60000</value>
</property>
<property>
  <name>hbase.client.scanner.timeout.period</name>
  <value>60000</value>
</property>
<property>
  <name>hbase.cells.scanned.per.heartbeat.check</name>
  <value>10000</value>
</property>

此处有更多详情http://www.cloudera.com/documentation/enterprise/5-6-x/topics/admin_hbase_scanner_heartbeat.html