I have created a table using Phoenix command prompt and it is working fine. CREATE TABLE CUSTOMERS (ID INTEGER NOT NULL PRIMARY KEY, NAME VARCHAR(40), CITY CHAR(25)); I'm facing following issues.
- Primary Key ID created above does not represent Rowkey in Hbase Table. How I should create Phoenix tables whose Primary Key will point to RowKey in HBase?
- Describe Table in Phoenix does not show column data type. Where I can get that info please?
Thanks, Abhishek