Member since
09-27-2018
1
Post
0
Kudos Received
0
Solutions
09-30-2018
02:13 PM
Is there any way to create a table in Hbase using Phoenix where I can specify the column family name, row id too. If Not, what are the default column family and row_id in HBase if I hit the below phoenix command to create a new table of name us_population? CREATE TABLE IF NOT EXISTS us_population (
state CHAR(2) NOT NULL,
city VARCHAR NOT NULL,
population BIGINT
CONSTRAINT my_pk PRIMARY KEY (state, city));
... View more
- Tags:
- apache-phoenix
- HBase
Labels: