How to have Pig store rows in HBase as strings not bytes?
问题 If I use the hbase shell and issue: put 'test', 'rowkey1','cf:foo', 'bar' scan 'test' I will see the result as a string, not in bytes. If I use happybase and issue: import happybase connection = happybase.Connection('<hostname>') table = connection.table('test') table.put('rowkey2', {'cf:foo': 'bar'}) for row in table.scan(): print row I will see the result as a string, not in bytes. I have data in hive that I ran an aggregation on and stored on HDFS via: INSERT OVERWRITE DIRECTORY