HBase storing data for a particular column with 2 or more values for the same row-key in Scala/Java API
问题 I have a file with following contents: UserID Email 1001 abc@yahoo.com 1001 def@gmail.com 1002 gft@gmail.com 1002 rtf@yahoo.com I want to store the data like this: ROW COLUMN+CELL 1001 column=cf:Email, timestamp=1487917201278, value=abc@yahoo.com 1001 column=cf:Email, timestamp=1487917201279, value=def@gmail.com 1002 column=cf:Email, timestamp=1487917201286, value=gft@gmail.com 1002 column=cf:Email, timestamp=1487917201287, value=rtf@yahoo.com I am using Put for example: put 'table', '1001',