从python(happybase)写入hbase表

时间:2015-02-11 14:08:52

标签: python hadoop hbase thrift happybase

我正在运行map-reduce作业,现在我想在hbase中输入值。我通过stdin从map-reduce作业中传输值,并有一个python脚本,在happybase上插入(放置)行。

我遇到了各种各样的问题,从python执行put。根据我的理解,最近的问题似乎与库兼容性问题有关。错误日志显示iteritems的问题。 happybase manual指的是排序查询所需的其他python库,从python 2.7版开始不需要(我运行的是2.7.6)。

有没有人遇到过类似的问题?它们可以轻松修复,还是建议使用不同的界面?

更多详情

我在独立配置中安装并运行了hadoop(2.6.0)和hbase(0.98.10 - 2/5/2015)。他们开始了。我可以通过shell与hbase接口,创建表,输入值并扫描它们。

我可以通过happybase扫描并打印python中的表格,至少显示连接是否有效。但总是失败。这个简短的例子说明了问题:

为了这个例子,我的表名为 test (在hbase shell中创建)。它有一列 f1

hbase(main)> create 't1','f1'
hbase(main)> put 't1','1','f1','hello'

现在是python:

>>> import happybase
>>> connection = happybase.Connection('localhost')
>>> table = connection.table('t1')
>>> print(table.row('1')) # {'f1:': 'hello'}
>>> table.put('2',{'f1','hey'}) # fails, see log

更多细节:

节俭正在运行。

# hbase thrift start -threadpool


hduser@box> hbase -version

java版“1.8.0_31” Java(TM)SE运行时环境(版本1.8.0_31-b13) Java HotSpot(TM)64位服务器VM(版本25.31-b07,混合模式)

错误日志:

---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-15-56dab4cd31ef> in <module>()
----> 1 table.put('2',{'f1','hey'})

/usr/local/lib/python2.7/dist-packages/happybase/table.pyc in put(self, row, data, timestamp, wal)
    437         """
    438         with self.batch(timestamp=timestamp, wal=wal) as batch:
--> 439             batch.put(row, data)
    440 
    441     def delete(self, row, columns=None, timestamp=None, wal=True):

/usr/local/lib/python2.7/dist-packages/happybase/batch.pyc in put(self, row, data, wal)
     81                 value=value,
     82                 writeToWAL=wal)
---> 83             for column, value in data.iteritems())
     84 
     85         self._mutation_count += len(data)

AttributeError: 'set' object has no attribute 'iteritems'

1 个答案:

答案 0 :(得分:1)

尝试:

table.put('2',{'f1:':'hey'}) 

如果你有f1的子列,如col1,col2,你也可以指定特定的子列

table.put('2',{'f1:col1':'hey'}) 

了解更多信息,请访问:

https://happybase.readthedocs.io/en/happybase-0.4/tutorial.html