Can someone please help me how to use CellUtil.getRowByte (Cell, int)? I updated hbase from 0.94 to 0.99. I used to use cell.getRow (), but in hbase 0.99 it is already deprecated. Thank!
Instead, you can use a combination of getRowArray (), getRowOffset () and getRowLength () in the Cell class, for example.
String row = Bytes.toString(c.getRowArray(), c.getRowOffset(), c.getRowLength());
You can try the following:
String row = Bytes.toString(CellUtil.cloneRow(cell));
Source: https://habr.com/ru/post/1530568/More articles:Vim color scheme installed with Vundle without changing colors - vimZF2 routing ignores namespace - phpList of sites using lapply - rPars relationship between user and installation classes - androidChef (server): What is the difference between client and user - chefPHP public function behaves like static - functionCocoaPods - ัััะฐะฝะพะฒะธัั ัะฑะพะน - rubyEntity Framework, preventing duplicate entries, simultaneous connections - c #SQL * Plus command-line options overwritten on Windows - command-lineHTML5 element - html5All Articles