在hbase shell中,使用scan命令时,有用过它的formatter的吗?我试一下,没有效果,而且我把toInt方法乱写成toIntabc,也不报错,也没有效果。
这个应该怎么使用呢?
执行效果如下:
hbase(main):136:0> scan 'tweet0', {COLUMNS=>['emotion:PB:toInt'], LIMIT=>3}
ROW COLUMN+CELL
1001158684-M_BsW81Fxkz column=emotion:PB, timestamp=1467104809901, value=\x00\x00\x00\x05
1005553684-M_DrXRHjjKy column=emotion:PB, timestamp=1467104809901, value=\x00\x00\x00\x05
1005553684-M_DshqXfwbg column=emotion:PB, timestamp=1467104809901, value=\x00\x00\x00\x05
3 row(s) in 0.0090 seconds
hbase(main):137:0> scan 'tweet0', {COLUMNS=>['emotion:PB:toIntabc'], LIMIT=>3}
ROW COLUMN+CELL
1001158684-M_BsW81Fxkz column=emotion:PB, timestamp=1467104809901, value=\x00\x00\x00\x05
1005553684-M_DrXRHjjKy column=emotion:PB, timestamp=1467104809901, value=\x00\x00\x00\x05
1005553684-M_DshqXfwbg column=emotion:PB, timestamp=1467104809901, value=\x00\x00\x00\x05
3 row(s) in 0.0070 seconds
|
|