Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.3.3
-
None
Description
Updating a column in all rows of an InnoDB table has become slower in MariaDB 10.3, compared to 10.2. Test case
drop table if exists t1;
|
create table t1 (id serial, c1 int, c2 char(10) default 'foobar');
|
insert into t1 (c1) values (rand()*1000);
|
insert into t1 (c1) select rand()*1000 from t1;
|
... (19 more times)
|
update t1 set c2='x';
|
The final UPDATE touches 1 mio rows. There is no index involved. The update can be done in place. In 10.2.14 the updates takes 2 seconds on average, in 10.3.5 it takes 3 seconds on average. More numbers in related MDEV-15213.
Attachments
Issue Links
- relates to
-
MDEV-14425 Change the InnoDB redo log format to reduce write amplification
-
- Closed
-
-
MDEV-16041 Do not write for null update (properly fix MySQL Bug#29157)
-
- Closed
-
-
MDEV-15213 UPDATEs are slow after instant ADD COLUMN
-
- Closed
-
To rule out the effect of
MDEV-12288, I rewrote the test to use a slow shutdown, so that it is an apples-to-apples comparison. In 10.3, the purge (resetting DB_TRX_ID) after the INSERT could run concurrently with the UPDATE.--source include/have_innodb.inc
--source include/have_sequence.inc
--source include/restart_mysqld.inc
With this, a non-debug build of 10.2 shows me the following when running
./mtr --mem innodb.huge_update
10.2 8346acaf807587da751fdded5eb87fd72f5268a5
create table t1 (id serial, c2 char(10) default 'foobar') engine=innodb;
select now();
now()
2018-04-24 13:50:48
insert into t1(id) select * from seq_1_to_1000000;
set global innodb_fast_shutdown=0;
select now();
now()
2018-04-24 13:50:59
select now();
now()
2018-04-24 13:51:02
update t1 set c2='x';
select now();
now()
2018-04-24 13:51:06
drop table t1;
innodb.huge_update 'innodb' [ pass ] 17726
For 10.3 with the above revision merged, I get the following:
bb-10.3-marko fc106dadb27d9de19c6d17ff328bba2f37e5072d (based on 10.3 f79c5a658cc33a10d7744a748a4328254e2cbaf7)
create table t1 (id serial, c2 char(10) default 'foobar') engine=innodb;
select now();
now()
2018-04-24 13:49:18
insert into t1(id) select * from seq_1_to_1000000;
set global innodb_fast_shutdown=0;
select now();
now()
2018-04-24 13:49:40
select now();
now()
2018-04-24 13:49:53
update t1 set c2='x';
select now();
now()
2018-04-24 13:50:09
drop table t1;
innodb.huge_update 'innodb' [ pass ] 50824
The total test time is much longer (50.8 instead of 17.7 seconds; 33.1 seconds increase), divided as follows:
The increased restart time is expected due to the purge (
MDEV-12288is resetting the DB_TRX_ID of all inserted records), but the performance regressions for INSERT (2×) and UPDATE (3×) are not.