MySQL Partition Manager
MySQL Partition Manager is an open source project for managing partitions for MySQL tables. This code helps you automatically create, maintain and purge partitions with minimal configuration.
Installation
Run the attached SQL file into the database of your choice. Please make sure that event scheduling is enabled on the database server.
When you run this file:
- Code to automatically manage partitions will be deployed.
- Settings table will be created to populate how you want to partition tables.
- This table is empty for the first run.
- An event will be created with a default run time frequency of 24 hours.
This code has been successfully tested on Perconaโs flavor of MySQL 5.5 and MySQL 5.6. It should work on previous versions too. We are currently testing it for MySQL 5.7 as well.
Usage Instructions
Choose a table that youโd like to partition.
The pre-requisite to partition a table is:
- The table should have a numeric time column storing either epoch unix format or a factored version of it e.g. hour
- The chosen column should be part of the primary key
- Insert a row into the partition manager settings table.
- Table name is
partition_manager_settings
The following code shows the settings table:
CREATE TABLE `partition_manager_settings` (
`table` varchar(64) NOT NULL COMMENT 'table name',
`column` varchar(64) NOT NULL COMMENT 'numeric column with time info',
`granularity` int(10) unsigned NOT NULL COMMENT 'granularity of column, i.e. 1=seconds, 60=minutes...',
`increment` int(10) unsigned NOT NULL COMMENT 'seconds per individual partition',
`retain` int(10) unsigned NULL COMMENT 'seconds of data to retain, null for infinite',
`buffer` int(10) unsigned NULL COMMENT 'seconds of empty future partitions to create',
PRIMARY KEY (`table`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=Dynamic;
Column Name | Definition |
---|---|
table | table_name |
column | column that youโd like to partition |
granularity | factoring granularity in seconds (1 denotes seconds, 60 denotes minutes, 3600 denotes hours) |
increment | Number of seconds per individual partition (86400 denotes 1 day) |
retain | Seconds worth of data to retain or null for infinite |
buffer | Seconds worth of empty feature partitions to maintain |
Optionally, call schedule_partition_manager
to update the partitioning schedule based on the new table. This is taken care of during the next run automatically, hence its optional.
Known Limitations
- For partition retention to be an instant operation, you must be using XFS file system.
- It's a heavy locking operation on ext file systems.
- On replicated systems with versions earlier than 5.6.29/5.7.11, comment out the mentioned lines, as automated scheduling dosn't work via replication due to mysql bug http://bugs.mysql.com/bug.php?id=77288
License
Copyright 2015 Yahoo Inc. Licensed under the terms of Apache License 2.0. Please see the LICENSE file for terms.