Hi everyone.
So, I have this doubt about data modeling with cstore_fdw.
I have a classical Kimball model, fact table, dimensions, the usual stuff. I have_ dim tables for the dimensions and fact_ for the fact table.
But, is this the right approach, thinking in performance terms, to modeling?
I could have just the fact table and query that. But if I have the dimensions tables then my fact table would be smaller, right? Instead of having a dimension label for example, it would have the dimension FK. The query in the fact table would be faster because numbers are better compressed than strings, but then I would have to join with the dimension table. Would that make a performance penalty?
Regards!