You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Data Distribution Schema Design - Creating Sharded Tables
4
+
5
+
Sharded tables can be created in the following distribution methods:
6
+
7
+
- <b>System-Managed Data Distribution</b>: data is automatically distributed across the shards using partitioning by consistent hash;
8
+
9
+
- <b>User-Defined Data Distribution</b>: User explicitly maps data to individual shards. A sharded table in a user-defined distributed database can be partitioned by range or list and no tablespace sets are created;
10
+
11
+
- <b>Composite Data Distribution</b>: is a combining of the two previous methods. Composite data distribution method allows you to partition subsets of data that correspond to a range or list of key values in a table partitioned by consistent hash.
0 commit comments