如何在hbase中放入多行?

如何在hbase中放入多行?,hbase,Hbase,HBASE-PUT 我知道这就是在hbase中放置或编辑列值的方式: put 'table_name', "row_name", "col_name", "some new value" 如何一次编辑多行? 基本上这就是我想要的;更新列值为“某个值”的所有行: put 'table_name', `get rows where column value is "some value"`, "col_name", "some new value"

HBASE-PUT

我知道这就是在hbase中放置或编辑列值的方式:

put 'table_name', "row_name", "col_name", "some new value"
如何一次编辑多行? 基本上这就是我想要的;更新列值为“某个值”的所有行:

put 'table_name', `get rows where column value is "some value"`, "col_name", "some new value"