Re: Hbase vs Phienix column names

2019-01-08 Thread Anil
Thanks. its working. But i needs phoenix connection and convert operation must be done for each column :(. Thanks.

Re: Hbase vs Phienix column names

2019-01-08 Thread Ankit Singhal
Encode/decode are for converting integer(qualifier counter) to bytes and vice versa, so check if below existing APIs works for you:- create table TABLE_NAME (PK integer primary key, COL1 varchar) Connection conn = DriverManager.getConnection(getUrl()); PTable pTable =

Re: Hbase vs Phienix column names

2019-01-08 Thread Josh Elser
(from the peanut-gallery) That sounds to me like a useful utility to share with others if you're going to write it anyways, Anil :) On 1/8/19 12:54 AM, Thomas D'Silva wrote: There isn't an existing utility that does that. You would have to look up the COLUMN_QUALIFIER for the columns you are