What is the cons of using the star schema in database design for big data?
Is the large size of fact table is a problem? Or we can consider that the disk space is cheap and and large size of the fact table is not a problem at all?
What is the cons of using the star schema in database design for big data?
Is the large size of fact table is a problem? Or we can consider that the disk space is cheap and and large size of the fact table is not a problem at all?
The problem will be the time consumed to join all the needed information together. If you have complex evaluations on the data, this can take considerable amount of time.
It is better to compare and the design will be based on your priorities like performance, memory, cpu etc. See the comparison that compares both Star and Snowflakes: