Shard keys
An important decision to make when porting your schema is setting up the appropriate shard keys, which determine how rows are partitioned (see Sharding for more details).
You can choose how to shard a table by adding a SHARD KEY
.a
and b
- all rows with the same values for both a
and b
will be on the same partition:
CREATE TABLE t1(a INT, b INT, c INT, SHARD KEY(a, b));
If your table has a PRIMARY
key, SingleStoreDB Cloud will by default choose that key as the shard key.a
:
CREATE TABLE t1(a INT, b INT, PRIMARY KEY(a));CREATE TABLE t1(a INT, b INT, SHARD KEY(a), PRIMARY KEY(a));
If your table does not have a primary key, then SingleStoreDB Cloud will by default shard rows uniformly across the partitions.
CREATE TABLE t1(a INT, b INT);CREATE TABLE t1(a INT, b INT, SHARD KEY());
If you aren’t sure yet what your workload will look like, these defaults will allow you to continue developing your application and do not impose any functional restrictions.
Last modified: June 22, 2022