Hi, I begin HBase schema design, but now i face some confused.
In RDBMS, my design is 3 tables: * Courses id pk name type Students id pk curses_id fk => Courses.id name gender age * * * In HBase, i think my design is *row*** *Column families* *Info:*** *Course_name:*** *Course_type:* <student_id> Info:name Course_name:<course_id> Course_type:<course_id> Info:gender Info:age Is it my design correct? but if design like this, when i want to find how many students under one course, i dont know how to filter. if i design as two table in hbase, is it normalization? Thanks & Regards, Singo