I have a Thrift php client, and I want to write in an HBase table, and I do the following:
$mutations = array( new Mutation( array( 'column' => 'entry:num', 'value' => array('a','b','c') ) ), ); $client->mutateRow( $t, $row, $mutations );
The problem is that when pasted into HBase, the value, which is an array, is converted to an "Array" instead of storing the elements of the array. How to save a list as an array (or an array of bytes)
Ovidiu eftimie
source share