HASH Partitioning Type
Syntax
PARTITION BY HASH (partitioning_expression) [PARTITIONS(number_of_partitions)]
Description
HASH partitioning is a form of partitioning in which the server takes care of the partition in which to place the data, ensuring an even distribution among the partitions.
It requires a column value, or an expression based on a column value, which is hashed, as well as the number of partitions into which to divide the table.
partitioning_expression needs to return a non-constant, deterministic integer. It is evaluated for each insert and update, so overly complex expressions can lead to performance issues.
number_of_partitions is a positive integer specifying the number of partitions into which to divide the table. If the PARTITIONS
clause is omitted, the default number of partitions is one.
Examples
CREATE OR REPLACE TABLE t1 (c1 INT, c2 DATETIME) PARTITION BY HASH(TO_DAYS(c2)) PARTITIONS 5;
Comments
Comments loading...
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.