Partitioning Limitations with MariaDB

The following limitations apply to partitioning in MariaDB:

  • Each table can contain a maximum of 8192 partitions (from MariaDB 10.0.4). In MariaDB 5.5 and until 10.0.3, the limit was 1024.
  • Currently, queries are never parallelized, even when they involve multiple partitions.
  • A table can only be partitioned if the storage engine supports partitioning.
  • All partitions must use the same storage engine. For a workaround, see Using CONNECT - Partitioning and Sharding.
  • A partitioned table cannot contain, or be referenced by, foreign keys.
  • The query cache is not aware of partitioning and partition pruning. Modifying a partition will invalidate the entries related to the whole table.
  • Updates can run more slowly when binlog_format=ROW and a partitioned table is updated than an equivalent update of a non-partitioned table.
  • All columns used in the partitioning expression for a partitioned table must be part of every unique key that the table may have.
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.

© 2021 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/partitioning-limitations/