Re: I'm studying hbase with php, and I wonder getRow guarantee sequential order.

2014-11-11 Thread greenblue
Thank you for the reply. It helps me enough! -- View this message in context: http://apache-hbase.679495.n3.nabble.com/I-m-studying-hbase-with-php-and-I-wonder-getRow-guarantee-sequential-order-tp4065833p4065861.html Sent from the HBase User mailing list archive at Nabble.com.

Re: I'm studying hbase with php, and I wonder getRow guarantee sequential order.

2014-11-11 Thread Michael Segel
Not sure of the question. A scan will return multiple rows in sequential order. Note that its sequential byte stream order. The columns will also be in sequential order as well… So if you have a set of column named as ‘foo’+timestamp then for each column in the set of foo, it will be in orde

I'm studying hbase with php, and I wonder getRow guarantee sequential order.

2014-11-10 Thread greenblue
When I call the function 'getRow', it returns array. But I couldn't find any documents about order of data sequence. For instance, Presume that a column family is 'c' and qualifiers start from 'c:000' to 'c:100'. And when I call the function like below $rowarr = getRow($table, $rowkey);