I am wondering something with MySQL partitioning.
Suppose I have a table like that (OLTP example database)
CREATE TABLE `orders` (
`order_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`client_id` mediumint(8) unsigned NOT NULL,
`amount` smallint(5) unsigned NOT NULL,
`date` date NOT NULL,
PRIMARY KEY (`order_id`),
KEY `client_id` (`client_id`),
KEY `date` (`date`),
) ENGINE=InnoDB
I want to partition this table by range with YEAR(date)
Here are my questions:
Partitioning by DATE implies that I add the field 'date' to the primary key (ex: PRIMAY(order_id, date)). This is the opposite to the best practice 'keep the PK small'.
Will the join with every records depending of this table (ex: a table orders_logs with a order_id FK) will have poorer performance because of the primary key size?
Is it a general rule of adding the 'date' column to the primary key of any table I want to partition by
YEAR(date)?If I had another table (orders_logs) with a foreign key (order_id) pointing to the order table. Is it a common use to partition every linked table (suppose they are as big or more as the reference table)? So I have to add a duplicate 'date' field in each linked tables?