Rechercher dans le manuel MySQL
22.1.7.5 Limits Associated with Database Objects in NDB Cluster
Some database objects such as tables and indexes have different
limitations when using the
NDBCLUSTER
storage engine:
Database and table names. When using the
NDB
storage engine, the maximum allowed length both for database names and for table names is 63 characters. A statement using a database name or table name longer than this limit fails with an appropriate error.Number of database objects. The maximum number of all
NDB
database objects in a single NDB Cluster—including databases, tables, and indexes—is limited to 20320.Attributes per table. The maximum number of attributes (that is, columns and indexes) that can belong to a given table is 512.
Attributes per key. The maximum number of attributes per key is 32.
Row size. The maximum permitted size of any one row is 14000 bytes. Each
BLOB
orTEXT
column contributes 256 + 8 = 264 bytes to this total.In addition, the maximum offset for a fixed-width column of an
NDB
table is 8188 bytes; attempting to create a table that violates this limitation fails with NDB error 851 Maximum offset for fixed-size columns exceeded. For memory-based columns, you can work around this limitation by using a variable-width column type such asVARCHAR
or defining the column asCOLUMN_FORMAT=DYNAMIC
; this does not work with columns stored on disk. For disk-based columns, you may be able to do so by reordering one or more of the table's disk-based columns such that the combined width of all but the disk-based column defined last in theCREATE TABLE
statement used to create the table does not exceed 8188 bytes, less any possible rounding performed for some data types such asCHAR
orVARCHAR
; otherwise it is necessary to use memory-based storage for one or more of the offending column or columns instead.BIT column storage per table. The maximum combined width for all
BIT
columns used in a givenNDB
table is 4096.FIXED column storage. NDB Cluster 8.0 supports a maximum of 128 TB per fragment of data in
FIXED
columns.
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-mysql-cluster-limitations-database-objects.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.