I am trying to get the posts from my facebook page and put them into hbase. If I design a relational data model I have three tables with one to many mapping like this:
Post has multiple comments and comment has multiple reply comments.
After doing research I came up with this schema:
PostId would be the row key. Then one column family "data" containing post, comment, reply as column qualifier with their objects as values.
Is this the right schema? Please suggest how can it be done if I am missing something as I am new to Hbase and Hadoop. Thanks in advance.