...
create table call_home_data(
id largeint not null,
ts timestamp(6) not null,
device_status varchar(200),
primary key (id, ts))
salt using 16 partitions on (id)
division by (date_trunc('day', ts));
Now, our HBase row key will consist of four columns: (“_SALT_”, “_DIVISION_0_”, id, ts).
...