-
|
I am planning to integrate an EDW and data marts in cloudberry. In this case should I create two databases for each because I am concerning about the segmentations. If we create segmentations on a database, will it transfer the same settings to the other database. Please explain the segmentations configurations when there are multiple databases. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
By "segmentation" If you mean distribution of data across all the segments, then the short answer is yes. |
Beta Was this translation helpful? Give feedback.
By "segmentation" If you mean distribution of data across all the segments, then the short answer is yes.
All tables will be distributed by a key, which is either a single column or group of columns. You could also choose to distribute randomly, and that will still distribute data for each table across all segments. This applies to each table in the Cloudberry deployment - each database, each schema, each table, each partition... all that has data in it will be distributed across all segments and each segment will have it's own portion of data. Now, one could choose to make tables replicated instead of distributed, in which case, the same copy of data will be on each and every segment, st…