Question :You have been given below logical table detail.
comments_by_user_id user_id K comment_date C course_id C user_email S comment course_name description Each user can post on average 1000 comments. SO what would be the number of values per partition we can expect.
Course_By_Author Author_id K Course_id C Title description
For each author_id, you will be copying entire course detail again. Assuming each course is created by 5 author. Hence, each course detail will be copied 5 times. Is this an issue ?
Correct Answer : Get Lastest Questions and Answer : Explanation: This should not be an issue, we are copying data 5 times (max number of authors). And here growth is constant 5 times. So it is ok.
Question : You have been given below conceptual data model
And you have below Access pattern, which of the following is valid table design
Correct Answer : Get Lastest Questions and Answer : Explanation: In this case we know, both the rating and publish_date are equality operator. Hence, need to be part of primary key. Course_name is enough to uniquely identify the course, hence we need it to course_name.