Rechercher dans le manuel MySQL
23.2.5 KEY Partitioning
Partitioning by key is similar to partitioning by hash, except
that where hash partitioning employs a user-defined expression,
the hashing function for key partitioning is supplied by the
MySQL server. NDB Cluster uses
MD5()
for this purpose; for
tables using other storage engines, the server employs its own
internal hashing function which is based on the same algorithm
as PASSWORD()
.
The syntax rules for CREATE TABLE ... PARTITION BY
KEY
are similar to those for creating a table that is
partitioned by hash. The major differences are listed here:
KEY
is used rather thanHASH
.KEY
takes only a list of zero or more column names. Any columns used as the partitioning key must comprise part or all of the table's primary key, if the table has one. Where no column name is specified as the partitioning key, the table's primary key is used, if there is one. For example, the followingCREATE TABLE
statement is valid in MySQL 8.0:If there is no primary key but there is a unique key, then the unique key is used for the partitioning key:
- )
- PARTITIONS 2;
However, if the unique key column were not defined as
NOT NULL
, then the previous statement would fail.In both of these cases, the partitioning key is the
id
column, even though it is not shown in the output ofSHOW CREATE TABLE
or in thePARTITION_EXPRESSION
column of theINFORMATION_SCHEMA.PARTITIONS
table.Unlike the case with other partitioning types, columns used for partitioning by
KEY
are not restricted to integer orNULL
values. For example, the followingCREATE TABLE
statement is valid:The preceding statement would not be valid, were a different partitioning type to be specified. (In this case, simply using
PARTITION BY KEY()
would also be valid and have the same effect asPARTITION BY KEY(s1)
, sinces1
is the table's primary key.)For additional information about this issue, see Section 23.6, “Restrictions and Limitations on Partitioning”.
NoteTables using the
NDB
storage engine are implicitly partitioned byKEY
, again using the table's primary key as the partitioning key. In the event that the NDB Cluster table has no explicit primary key, the “hidden” primary key generated by theNDB
storage engine for each NDB Cluster table is used as the partitioning key.If you define an explicit partitioning scheme for an
NDB
table, the table must have an explicit primary key, and any columns used in the partitioning expression must be part of this key. However, if the table uses an “empty” partitioning expression—that is,PARTITION BY KEY()
with no column references—then no explicit primary key is required.You can observe this partitioning using the ndb_desc utility (with the
-p
option).ImportantFor a key-partitioned table, you cannot execute an
ALTER TABLE DROP PRIMARY KEY
, as doing so generates the error ERROR 1466 (HY000): Field in list of fields for partition function not found in table. This is not an issue for NDB Cluster tables which are partitioned byKEY
; in such cases, the table is reorganized using the “hidden” primary key as the table's new partitioning key. See Chapter 22, MySQL NDB Cluster 8.0.
It is also possible to partition a table by linear key. Here is a simple example:
- col3 DATE
- )
- PARTITIONS 3;
The LINEAR
keyword has the same effect on
KEY
partitioning as it does on
HASH
partitioning, with the partition number
being derived using a powers-of-two algorithm rather than modulo
arithmetic. See Section 23.2.4.1, “LINEAR HASH Partitioning”, for
a description of this algorithm and its implications.
Traduction non disponible
Le manuel MySQL n'est pas encore traduit en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Document créé le 26/06/2006, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/mysql-rf-partitioning-key.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.