As noted in MDEV-26740, ALTER TABLE...ALGORITHM=COPY fails to make use of the MDEV-24621 optimization to pre-sort each index and to build them page by page.
I tested this on MariaDB Server 11.2, which implements MDEV-16329:
./mtr --rr main.alter_table_online_debug,nobinlog
I set a breakpoint inside ha_innobase::extra(HA_EXTRA_END_ALTER_COPY) and started to debug its surroundings:
break ha_innodb.cc:15692
continue
break ha_innobase::write_row
For the first statement that hits the first breakpoint (alter table t1 add b int NULL, algorithm= copy, lock= none), we can see that the row-level undo logging is being disabled as expected (MDEV-11415). But, we can also see that the initial copying phase is using the regular row-by-row-insert API if we set a data watchpoint on FIL_PAGE_LSN in the clustered index root page:
11.2 96250c82691169921a38a38bc24910294294eb24
#2 0x0000560582646449 in mtr_t::commit (this=...) at /mariadb/11/storage/innobase/mtr/mtr0mtr.cc:438
#3 0x00005605826a68e8 in row_ins_clust_index_entry_low (flags=..., mode=..., index=..., n_uniq=..., entry=..., n_ext=..., thr=...) at /mariadb/11/storage/innobase/row/row0ins.cc:2895
#4 0x00005605826a6bca in row_ins_clust_index_entry (index=..., entry=..., thr=..., n_ext=...) at /mariadb/11/storage/innobase/row/row0ins.cc:3243
#5 0x00005605826a6e84 in row_ins_index_entry (index=..., entry=..., thr=...) at /mariadb/11/storage/innobase/row/row0ins.cc:3375
#6 0x00005605826a6f50 in row_ins_index_entry_step (node=..., thr=...) at /mariadb/11/storage/innobase/row/row0ins.cc:3543
#7 0x00005605826a71a0 in row_ins (node=..., thr=...) at /mariadb/11/storage/innobase/row/row0ins.cc:3660
#8 0x00005605826a73d9 in row_ins_step (thr=...) at /mariadb/11/storage/innobase/row/row0ins.cc:3789
#9 0x00005605826bd2a9 in row_insert_for_mysql (mysql_rec=..., prebuilt=..., ins_mode=...) at /mariadb/11/storage/innobase/row/row0mysql.cc:1314
#10 0x00005605824d641b in ha_innobase::write_row (this=..., record=...) at /mariadb/11/storage/innobase/handler/ha_innodb.cc:7847
#11 0x0000560581ff2a35 in handler::ha_write_row (this=..., buf=...) at /mariadb/11/sql/handler.cc:7852
#14 0x0000560582324b53 in Sql_cmd_alter_table::execute (this=..., thd=...) at /mariadb/11/sql/sql_alter.cc:701
#15 0x00005605821eb5c3 in mysql_execute_command (thd=..., is_called_from_prepared_stmt=...) at /mariadb/11/sql/sql_parse.cc:5777
#16 0x00005605821ec175 in mysql_parse (thd=..., rawbuf=..., length=..., parser_state=...) at /mariadb/11/sql/sql_parse.cc:7808
Because this code path provides a work-around for MDEV-26740, we had better fix that bug before we can implement this optimization.
It would be good to test the fix on 11.2 before applying it to the earliest supported version (10.11), because MDEV-16329 is extending the function copy_data_between_tables() with a call to online_alter_read_from_binlog().
Attachments
Issue Links
causes
MDEV-34756Validation of new foreign key skipped if innodb_alter_copy_bulk=ON
Closed
MDEV-35237Bulk insert fails to apply buffered operation during CREATE..SELECT statment
Closed
MDEV-35386Assertion `curr <= last' failed in rec_offs_validate
Closed
MDEV-35475Assertion `!rec_offs_nth_extern(offsets1, n)' failed in cmp_rec_rec_simple_field
Closed
is blocked by
MDEV-24621In bulk insert, pre-sort and build indexes one page at a time
Closed
MDEV-26740Inplace alter rebuild increases file size
Closed
MDEV-33809Bulk insert or DDL fails if a BLOB is too long
Closed
relates to
MDEV-16356Allow ALGORITHM=NOCOPY for ADD CONSTRAINT
Open
MDEV-35163InnoDB persistent statistics fail to update after ALTER TABLE...ALGORITHM=COPY
Open
MDEV-33094row-by-row logging needs to be disabled for the online ALTER log application stage
Open
MDEV-33329ALTER TABLE...FORCE fails to recalculate generated stored columns
Related to this, while CREATE TABLE…SELECT is disabling the row-by-row undo logging, it currently uses the inefficient row_ins() API:
--source include/have_innodb.inc
--source include/have_sequence.inc
CREATETABLE t1 (a INTPRIMARYKEY) ENGINE=InnoDB STATS_PERSISTENT=0
SELECT seq a FROM seq_1_to_3;
TRUNCATE t1;
SET STATEMENT unique_checks=0,foreign_key_checks=0 FOR
INSERTINTO t1 SELECT * FROM seq_1_to_10;
DROPTABLE t1;
For the above SQL, only the INSERT…SELECT will invoke the more efficient trx_t::bulk_insert_apply().
Marko Mäkelä
added a comment - Related to this, while CREATE TABLE…SELECT is disabling the row-by-row undo logging, it currently uses the inefficient row_ins() API:
--source include/have_innodb.inc
--source include/have_sequence.inc
CREATE TABLE t1 (a INT PRIMARY KEY ) ENGINE=InnoDB STATS_PERSISTENT=0
SELECT seq a FROM seq_1_to_3;
TRUNCATE t1;
SET STATEMENT unique_checks=0,foreign_key_checks=0 FOR
INSERT INTO t1 SELECT * FROM seq_1_to_10;
DROP TABLE t1;
For the above SQL, only the INSERT…SELECT will invoke the more efficient trx_t::bulk_insert_apply() .
If foreign_key_checks=1 (the default) and there are any FOREIGN KEY…REFERENCES clauses in the table that is being altered, then I think that we must keep using the row-by-row interface, so that row_ins_check_foreign_constraints() will check the FOREIGN KEY constraints. This is something that could be improved later in MDEV-16356.
Marko Mäkelä
added a comment - If foreign_key_checks=1 (the default) and there are any FOREIGN KEY…REFERENCES clauses in the table that is being altered, then I think that we must keep using the row-by-row interface, so that row_ins_check_foreign_constraints() will check the FOREIGN KEY constraints. This is something that could be improved later in MDEV-16356 .
I think that the condition for enabling bulk insert in row_ins_clust_index_entry_low() needs to be revised a little. Otherwise this looks good. We’d enable this optimization by default, and it could be disabled by executing the following:
SETGLOBAL innodb_alter_copy_bulk=OFF;
Marko Mäkelä
added a comment - I think that the condition for enabling bulk insert in row_ins_clust_index_entry_low() needs to be revised a little. Otherwise this looks good. We’d enable this optimization by default, and it could be disabled by executing the following:
SET GLOBAL innodb_alter_copy_bulk= OFF ;
People
Thirunarayanan Balathandayuthapani
Marko Mäkelä
Votes:
1Vote for this issue
Watchers:
7Start 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":1078.3000001907349,"ttfb":293,"pageVisibility":"visible","entityId":127021,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"d9e3ad22-a06b-4741-8bd3-84285e040ec6","navigationType":0,"readyForUser":1165.9000000953674,"redirectCount":0,"resourceLoadedEnd":1071.4000000953674,"resourceLoadedStart":299.60000014305115,"resourceTiming":[{"duration":308.89999985694885,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":299.60000014305115,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":299.60000014305115,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":608.5,"responseStart":0,"secureConnectionStart":0},{"duration":309.09999990463257,"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":299.80000019073486,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":299.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":608.9000000953674,"responseStart":0,"secureConnectionStart":0},{"duration":317.60000014305115,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":300,"connectEnd":300,"connectStart":300,"domainLookupEnd":300,"domainLookupStart":300,"fetchStart":300,"redirectEnd":0,"redirectStart":0,"requestStart":300,"responseEnd":617.6000001430511,"responseStart":617.6000001430511,"secureConnectionStart":300},{"duration":377.5,"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":300.2000000476837,"connectEnd":300.2000000476837,"connectStart":300.2000000476837,"domainLookupEnd":300.2000000476837,"domainLookupStart":300.2000000476837,"fetchStart":300.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":300.2000000476837,"responseEnd":677.7000000476837,"responseStart":677.7000000476837,"secureConnectionStart":300.2000000476837},{"duration":381.10000014305115,"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":300.5,"connectEnd":300.5,"connectStart":300.5,"domainLookupEnd":300.5,"domainLookupStart":300.5,"fetchStart":300.5,"redirectEnd":0,"redirectStart":0,"requestStart":300.5,"responseEnd":681.6000001430511,"responseStart":681.6000001430511,"secureConnectionStart":300.5},{"duration":381.5,"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":300.60000014305115,"connectEnd":300.60000014305115,"connectStart":300.60000014305115,"domainLookupEnd":300.60000014305115,"domainLookupStart":300.60000014305115,"fetchStart":300.60000014305115,"redirectEnd":0,"redirectStart":0,"requestStart":300.60000014305115,"responseEnd":682.1000001430511,"responseStart":682,"secureConnectionStart":300.60000014305115},{"duration":381.59999990463257,"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":300.80000019073486,"connectEnd":300.80000019073486,"connectStart":300.80000019073486,"domainLookupEnd":300.80000019073486,"domainLookupStart":300.80000019073486,"fetchStart":300.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":300.80000019073486,"responseEnd":682.4000000953674,"responseStart":682.4000000953674,"secureConnectionStart":300.80000019073486},{"duration":460.7999999523163,"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":300.90000009536743,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":300.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":761.7000000476837,"responseStart":0,"secureConnectionStart":0},{"duration":381.7999999523163,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":301.10000014305115,"connectEnd":301.10000014305115,"connectStart":301.10000014305115,"domainLookupEnd":301.10000014305115,"domainLookupStart":301.10000014305115,"fetchStart":301.10000014305115,"redirectEnd":0,"redirectStart":0,"requestStart":301.10000014305115,"responseEnd":682.9000000953674,"responseStart":682.9000000953674,"secureConnectionStart":301.10000014305115},{"duration":460.5,"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":301.30000019073486,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":301.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":761.8000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":382.2000000476837,"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":301.40000009536743,"connectEnd":301.40000009536743,"connectStart":301.40000009536743,"domainLookupEnd":301.40000009536743,"domainLookupStart":301.40000009536743,"fetchStart":301.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":301.40000009536743,"responseEnd":683.6000001430511,"responseStart":683.6000001430511,"secureConnectionStart":301.40000009536743},{"duration":767.8000001907349,"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":303,"connectEnd":303,"connectStart":303,"domainLookupEnd":303,"domainLookupStart":303,"fetchStart":303,"redirectEnd":0,"redirectStart":0,"requestStart":303,"responseEnd":1070.8000001907349,"responseStart":1070.8000001907349,"secureConnectionStart":303},{"duration":768.2999999523163,"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":303.10000014305115,"connectEnd":303.10000014305115,"connectStart":303.10000014305115,"domainLookupEnd":303.10000014305115,"domainLookupStart":303.10000014305115,"fetchStart":303.10000014305115,"redirectEnd":0,"redirectStart":0,"requestStart":303.10000014305115,"responseEnd":1071.4000000953674,"responseStart":1071.4000000953674,"secureConnectionStart":303.10000014305115},{"duration":89.80000019073486,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":773.5,"connectEnd":773.5,"connectStart":773.5,"domainLookupEnd":773.5,"domainLookupStart":773.5,"fetchStart":773.5,"redirectEnd":0,"redirectStart":0,"requestStart":773.5,"responseEnd":863.3000001907349,"responseStart":863.3000001907349,"secureConnectionStart":773.5},{"duration":257.59999990463257,"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":1033.1000001430511,"connectEnd":1033.1000001430511,"connectStart":1033.1000001430511,"domainLookupEnd":1033.1000001430511,"domainLookupStart":1033.1000001430511,"fetchStart":1033.1000001430511,"redirectEnd":0,"redirectStart":0,"requestStart":1033.1000001430511,"responseEnd":1290.7000000476837,"responseStart":1290.7000000476837,"secureConnectionStart":1033.1000001430511}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":104,"responseStart":293,"responseEnd":296,"domLoading":296,"domInteractive":1241,"domContentLoadedEventStart":1241,"domContentLoadedEventEnd":1296,"domComplete":1714,"loadEventStart":1714,"loadEventEnd":1714,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1217.6000001430511},{"name":"bigPipe.sidebar-id.end","time":1218.3000001907349},{"name":"bigPipe.activity-panel-pipe-id.start","time":1218.6000001430511},{"name":"bigPipe.activity-panel-pipe-id.end","time":1220.8000001907349},{"name":"activityTabFullyLoaded","time":1317.7000000476837}],"measures":[],"correlationId":"50a15008c93ca3","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":123,"dbReadsTimeInMs":24,"dbConnsTimeInMs":34,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
Related to this, while CREATE TABLE…SELECT is disabling the row-by-row undo logging, it currently uses the inefficient row_ins() API:
--source include/have_innodb.inc
--source include/have_sequence.inc
For the above SQL, only the INSERT…SELECT will invoke the more efficient trx_t::bulk_insert_apply().