If the --innodb-optimize-keys mysqldump option was available with MariaDB I would use it when backing up and moving tables using mysqldump. It can also be used to shrink InnoDB table files on mysqld instances where "ALTER TABLE table_name ROW_FORMAT=Compact" does not result in fast index creation being used and where expand_fast_index_creation is not available so "OPTIMIZE TABLE table_name" and "ALTER TABLE table_name ENGINE=INNODB" do not use fast index creation.
Having support for expand_fast_index_creation would also be great, but I think there is value from just adding the pragmatic mysqldump option.
Applying the latest changes with fixes for the mysqldump option to MariaDB 10 was relatively easy. The original work and subsequent patches with tests having been created by Alexey Kopytov.
I suppose since it's just an option in a client program, it can be added even after 10.0.5, setting to 10.0.6 for now.
Elena Stepanova
added a comment - I suppose since it's just an option in a client program, it can be added even after 10.0.5, setting to 10.0.6 for now.
Alexey pointed me to a recent bug with mysqldump --innodb-optimize-keys in Percona Server, where incorrect CREATE TABLE statement for partitioned tables are produced, it has not been fixed yet: https://bugs.launchpad.net/percona-server/+bug/1233841
Peter (Stig) Edwards
added a comment - Alexey pointed me to a recent bug with mysqldump --innodb-optimize-keys in Percona Server, where incorrect CREATE TABLE statement for partitioned tables are produced, it has not been fixed yet:
https://bugs.launchpad.net/percona-server/+bug/1233841
This is a diff against 10.0, it contains just the changes needed for mysqldump from the Percona 5.5 code and two other tiny changes, an update to the man page and the addition of the warning for the duplicate index in the test result. Attribution may also be needed.
Peter (Stig) Edwards
added a comment - This is a diff against 10.0, it contains just the changes needed for mysqldump from the Percona 5.5 code and two other tiny changes, an update to the man page and the addition of the warning for the duplicate index in the test result. Attribution may also be needed.
added:
mysql-test/r/percona_mysqldump_innodb_optimize_keys.result
mysql-test/t/percona_mysqldump_innodb_optimize_keys.test
modified:
client/client_priv.h
client/mysqldump.c
man/mysqldump.1
This would still have this bug - https://bugs.launchpad.net/percona-server/+bug/1233841
Could you review this again, as I had to rewrite internal parser to support unquoted identifiers
and multi-column keys.
Jan Lindström (Inactive)
added a comment - http://lists.askmonty.org/pipermail/commits/2015-July/008193.html
Could you review this again, as I had to rewrite internal parser to support unquoted identifiers
and multi-column keys.
Maybe the problem would be simply solved by using a special "bulk load" mechanism when executing a transaction that performs the first insert into an empty table or partition. This could be part of MDEV-515.
Marko Mäkelä
added a comment - Maybe the problem would be simply solved by using a special "bulk load" mechanism when executing a transaction that performs the first insert into an empty table or partition. This could be part of MDEV-515 .
Wouldn't it be better for InnoDB to support ALTER TABLE DISABLE/ENABLE KEYS that mysqldump already uses around inserts anyway?
A simple solution could be done purely in ha_innodb.cc, by dropping indexes on ALTER TABLE DISABLE KEYS and recreating them online on {{ALTER TABLE ENABLE KEYS. This won't require InnoDB to support disabled indexes and for an empty table dropping is fast.
Sergei Golubchik
added a comment - Wouldn't it be better for InnoDB to support ALTER TABLE DISABLE/ENABLE KEYS that mysqldump already uses around inserts anyway?
A simple solution could be done purely in ha_innodb.cc, by dropping indexes on ALTER TABLE DISABLE KEYS and recreating them online on {{ ALTER TABLE ENABLE KEYS . This won't require InnoDB to support disabled indexes and for an empty table dropping is fast.
The scope of MDEV-515 was reduced, and MDEV-24621 was filed for optimizing index creation during an insert into an empty table. With that, I think that a LOAD DATA statement should do the right thing.
Unfortunately, currently mysqldump may generate multiple INSERT statements per table. Only the first INSERT statement into an empty table would be optimized by MDEV-515 and MDEV-24621. Could we change that to LOAD?
Marko Mäkelä
added a comment - The scope of MDEV-515 was reduced, and MDEV-24621 was filed for optimizing index creation during an insert into an empty table. With that, I think that a LOAD DATA statement should do the right thing.
Unfortunately, currently mysqldump may generate multiple INSERT statements per table. Only the first INSERT statement into an empty table would be optimized by MDEV-515 and MDEV-24621 . Could we change that to LOAD ?
The default mysqldump is with --opt, implying --extended-insert, so one INSERT per table. It can be configured otherwise. (up until the max-packet-size - default 24M)
For LOAD DATA we'd need the mariadb client (or server - mysqldump isn't strictly for the consumption of mysql/mariadb client) to recognize a an inline version of LOAD DATA. Otherwise some form of multiple files like https://github.com/maxbube/mydumper/commits/master (that seems to be getting activity again).
Daniel Black
added a comment - - edited The default mysqldump is with --opt, implying --extended-insert, so one INSERT per table. It can be configured otherwise. (up until the max-packet-size - default 24M)
For LOAD DATA we'd need the mariadb client (or server - mysqldump isn't strictly for the consumption of mysql/mariadb client) to recognize a an inline version of LOAD DATA . Otherwise some form of multiple files like https://github.com/maxbube/mydumper/commits/master (that seems to be getting activity again).
In MDEV-24818 we hacked the code so that a multi-statement INSERT transaction from mysqldump will be accelerated using the MDEV-515 mechanism. The data loading can be accelerated seriously further by MDEV-24621.
Marko Mäkelä
added a comment - In MDEV-24818 we hacked the code so that a multi-statement INSERT transaction from mysqldump will be accelerated using the MDEV-515 mechanism. The data loading can be accelerated seriously further by MDEV-24621 .
git show mariadb-10.0.20:storage/innobase/include/univ.i|grep VERSION|head -3
#define INNODB_VERSION_MAJOR 5
#define INNODB_VERSION_MINOR 6
#define INNODB_VERSION_BUGFIX 25
MariaDB 10.0.20 claims to be based on the InnoDB from MySQL 5.6.25. That version includes Alter_inplace_info::RECREATE_TABLE, which had been added in MySQL 5.6.13 to support OPTIMIZE TABLE using the WL#6255 InnoDB online table rebuild algorithm whose original version was released as part of MySQL 5.6.8.
I think that the last missing piece to speed up data loading is MDEV-16281, to implement the multi-threaded creation of index trees.
Marko Mäkelä
added a comment - The Description feels a bit outdated.
git show mariadb-10.0.20:storage/innobase/include/univ.i|grep VERSION|head -3
#define INNODB_VERSION_MAJOR 5
#define INNODB_VERSION_MINOR 6
#define INNODB_VERSION_BUGFIX 25
MariaDB 10.0.20 claims to be based on the InnoDB from MySQL 5.6.25. That version includes Alter_inplace_info::RECREATE_TABLE , which had been added in MySQL 5.6.13 to support OPTIMIZE TABLE using the WL#6255 InnoDB online table rebuild algorithm whose original version was released as part of MySQL 5.6.8.
I think that the last missing piece to speed up data loading is MDEV-16281 , to implement the multi-threaded creation of index trees.
Note: To benefit from MDEV-24621, a special option --no-autocommit needs to be specified to mariadb-dump until MDEV-32250 makes it the default.
Marko Mäkelä
added a comment - Note: To benefit from MDEV-24621 , a special option --no-autocommit needs to be specified to mariadb-dump until MDEV-32250 makes it the default.
MDEV-34739 has been filed for the request to support ALTER TABLE…DISABLE KEYS and ALTER TABLE…ENABLE KEYS in InnoDB.
Marko Mäkelä
added a comment - MDEV-34739 has been filed for the request to support ALTER TABLE…DISABLE KEYS and ALTER TABLE…ENABLE KEYS in InnoDB.
People
Marko Mäkelä
Peter (Stig) Edwards
Votes:
5Vote for this issue
Watchers:
14Start watching this issue
Dates
Created:
Updated:
Resolved:
Git Integration
Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.
{"report":{"fcp":1203.8999996185303,"ttfb":348.09999990463257,"pageVisibility":"visible","entityId":26108,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"bd4a851d-d267-4424-8e34-a9a73c92e2d1","navigationType":0,"readyForUser":1315.0999999046326,"redirectCount":0,"resourceLoadedEnd":1351,"resourceLoadedStart":353.7999997138977,"resourceTiming":[{"duration":323.40000009536743,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":353.7999997138977,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":353.7999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":677.1999998092651,"responseStart":0,"secureConnectionStart":0},{"duration":323.3999996185303,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/css/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":354,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":354,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":677.3999996185303,"responseStart":0,"secureConnectionStart":0},{"duration":372.7000002861023,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":354.2999997138977,"connectEnd":354.2999997138977,"connectStart":354.2999997138977,"domainLookupEnd":354.2999997138977,"domainLookupStart":354.2999997138977,"fetchStart":354.2999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":354.2999997138977,"responseEnd":727,"responseStart":727,"secureConnectionStart":354.2999997138977},{"duration":461.6000003814697,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/js/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":354.3999996185303,"connectEnd":354.3999996185303,"connectStart":354.3999996185303,"domainLookupEnd":354.3999996185303,"domainLookupStart":354.3999996185303,"fetchStart":354.3999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":354.3999996185303,"responseEnd":816,"responseStart":816,"secureConnectionStart":354.3999996185303},{"duration":465.30000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/a9324d6758d385eb45c462685ad88f1d-CDN/lu2cib/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":354.69999980926514,"connectEnd":354.69999980926514,"connectStart":354.69999980926514,"domainLookupEnd":354.69999980926514,"domainLookupStart":354.69999980926514,"fetchStart":354.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":354.69999980926514,"responseEnd":820,"responseStart":820,"secureConnectionStart":354.69999980926514},{"duration":465.7000002861023,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":354.8999996185303,"connectEnd":354.8999996185303,"connectStart":354.8999996185303,"domainLookupEnd":354.8999996185303,"domainLookupStart":354.8999996185303,"fetchStart":354.8999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":354.8999996185303,"responseEnd":820.5999999046326,"responseStart":820.5999999046326,"secureConnectionStart":354.8999996185303},{"duration":465.7999997138977,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":355.09999990463257,"connectEnd":355.09999990463257,"connectStart":355.09999990463257,"domainLookupEnd":355.09999990463257,"domainLookupStart":355.09999990463257,"fetchStart":355.09999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":355.09999990463257,"responseEnd":820.8999996185303,"responseStart":820.8999996185303,"secureConnectionStart":355.09999990463257},{"duration":519.5999999046326,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2cib/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":355.2999997138977,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":355.2999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":874.8999996185303,"responseStart":0,"secureConnectionStart":0},{"duration":465.8999996185303,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":355.5,"connectEnd":355.5,"connectStart":355.5,"domainLookupEnd":355.5,"domainLookupStart":355.5,"fetchStart":355.5,"redirectEnd":0,"redirectStart":0,"requestStart":355.5,"responseEnd":821.3999996185303,"responseStart":821.3999996185303,"secureConnectionStart":355.5},{"duration":519.3000001907349,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/css/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.css?jira.create.linked.issue=true","startTime":355.69999980926514,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":355.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":875,"responseStart":0,"secureConnectionStart":0},{"duration":466.09999990463257,"initiatorType":"script","name":"https://jira.mariadb.org/s/5d5e8fe91fbc506585e83ea3b62ccc4b-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/js/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.js?jira.create.linked.issue=true&locale=en","startTime":355.7999997138977,"connectEnd":355.7999997138977,"connectStart":355.7999997138977,"domainLookupEnd":355.7999997138977,"domainLookupStart":355.7999997138977,"fetchStart":355.7999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":355.7999997138977,"responseEnd":821.8999996185303,"responseStart":821.8999996185303,"secureConnectionStart":355.7999997138977},{"duration":715.6000003814697,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":362.3999996185303,"connectEnd":362.3999996185303,"connectStart":362.3999996185303,"domainLookupEnd":362.3999996185303,"domainLookupStart":362.3999996185303,"fetchStart":362.3999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":362.3999996185303,"responseEnd":1078,"responseStart":1078,"secureConnectionStart":362.3999996185303},{"duration":897.8999996185303,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":362.5,"connectEnd":362.5,"connectStart":362.5,"domainLookupEnd":362.5,"domainLookupStart":362.5,"fetchStart":362.5,"redirectEnd":0,"redirectStart":0,"requestStart":362.5,"responseEnd":1260.3999996185303,"responseStart":1260.3999996185303,"secureConnectionStart":362.5},{"duration":205.7000002861023,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":886.7999997138977,"connectEnd":886.7999997138977,"connectStart":886.7999997138977,"domainLookupEnd":886.7999997138977,"domainLookupStart":886.7999997138977,"fetchStart":886.7999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":886.7999997138977,"responseEnd":1092.5,"responseStart":1092.5,"secureConnectionStart":886.7999997138977},{"duration":194.80000019073486,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/css/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":1156.1999998092651,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1156.1999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1351,"responseStart":0,"secureConnectionStart":0},{"duration":130.80000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/e65b778d185daf5aee24936755b43da6/_/download/contextbatch/js/browser-metrics-plugin.contrib,-_super,-project.issue.navigator,-jira.view.issue,-atl.general/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":1157.2999997138977,"connectEnd":1157.2999997138977,"connectStart":1157.2999997138977,"domainLookupEnd":1157.2999997138977,"domainLookupStart":1157.2999997138977,"fetchStart":1157.2999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":1157.2999997138977,"responseEnd":1288.0999999046326,"responseStart":1288.0999999046326,"secureConnectionStart":1157.2999997138977},{"duration":148.40000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/s/097ae97cb8fbec7d6ea4bbb1f26955b9-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/js/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":1157.7999997138977,"connectEnd":1157.7999997138977,"connectStart":1157.7999997138977,"domainLookupEnd":1157.7999997138977,"domainLookupStart":1157.7999997138977,"fetchStart":1157.7999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":1157.7999997138977,"responseEnd":1306.1999998092651,"responseStart":1306.1999998092651,"secureConnectionStart":1157.7999997138977},{"duration":212.09999990463257,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":1197.6999998092651,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1197.6999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1409.7999997138977,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":143,"responseStart":348,"responseEnd":358,"domLoading":352,"domInteractive":1452,"domContentLoadedEventStart":1452,"domContentLoadedEventEnd":1532,"domComplete":2368,"loadEventStart":2368,"loadEventEnd":2369,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1421.0999999046326},{"name":"bigPipe.sidebar-id.end","time":1422.0999999046326},{"name":"bigPipe.activity-panel-pipe-id.start","time":1422.2999997138977},{"name":"bigPipe.activity-panel-pipe-id.end","time":1426.7999997138977},{"name":"activityTabFullyLoaded","time":1574.1999998092651}],"measures":[],"correlationId":"5becf5beeb806e","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":140,"dbReadsTimeInMs":26,"dbConnsTimeInMs":35,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
I suppose since it's just an option in a client program, it can be added even after 10.0.5, setting to 10.0.6 for now.