Re: large InnoDB table partitioning without explicit PK
Posted by:
Rick James
Date: November 17, 2014 07:48PM
Well, you forced me to learn something today:
INSERT ... ON DUPLICATE KEY UPDATE, without any explicit PRIMARY or UNIQUE keys, will degenerate into a plain INSERT. (Or so it seems -- both from your timings, and from a test case I built.)
But -- If you do add any PRIMARY/UNIQUE keys and insert into those fields, performance may decline since it will need to check for DUPLICATE KEY.
> [Miko] It was a 12 hour test, no PK, just two IDXs, the DB size was 700M rows, 250GB on a disk
That was partitioned, with the partitions being smaller than the buffer_pool, and with "BEGIN - lots of inserts - COMMIT"? Then it seems feasible. How many connections were inserting simultaneously?
> 72% %user, 16% idle (way too much for a regular usage).
That sounds like multiple connections spread across multiple cores? Some of that would be mutex contention between the threads. It _might_ be best to have the number of connections not be much more than the number of cores.
What do you mean by "for regular usage"?
Decreasing the number of indexes should decrease the CPU usage. Rationale:
The data plus the PRIMARY KEY is a BTree; each secondary index is another BTree. A plain INSERT, with the relevant blocks already cached, is mostly locating the right spot in each BTree, then doing an INSERT. When a block fills up, there is a "block split". More indexes => more time.
Batched INSERTs (not possible because of 3rd party) would also decrease the CPU usage.
Subject
Views
Written By
Posted
4808
November 12, 2014 07:41PM
2409
November 13, 2014 06:40PM
2241
November 14, 2014 03:02AM
1695
November 15, 2014 12:05AM
1714
November 16, 2014 07:39PM
1696
November 17, 2014 04:21PM
Re: large InnoDB table partitioning without explicit PK
1752
November 17, 2014 07:48PM
1729
November 18, 2014 02:00AM
1800
November 18, 2014 11:35PM
1787
November 22, 2014 06:44AM
1670
November 18, 2014 01:13AM
2110
November 19, 2014 12:27AM
1868
November 19, 2014 06:01PM
2017
November 22, 2014 08:39AM
1968
November 14, 2014 03:04AM
2007
November 14, 2014 03:05AM
2010
November 15, 2014 12:32AM
2045
November 16, 2014 08:31PM
1806
November 19, 2014 12:12AM
1711
November 22, 2014 09:07AM
1726
November 23, 2014 09:00PM
1890
December 01, 2014 11:16AM