Hi all, I have created a table in that way:
CREATE TABLE TWEETS (my_key VARBINARY, text varchar, tweetid varchar, user varchar, date varchar, CONSTRAINT my_pk PRIMARY KEY(my_key)) SALT_BUCKETS=120 my_key is a custom byte array key I have constructed What I want to do is to actually perform a Scan on the key, but I cannot use the Hbase Core API because of the Salting applied. Any idea on how I can perform a range query on the key column? Thanks a lot!
