To change the number of undo tablespaces, we need to reinitialize the data directory (dump + restore).
InnoDB should allow changing number of undo tablespaces as a part of restart process.
System tablespace contains InnoDB dictionary tables, doublewrite buffer, change buffer tree
and undo log pages. By allowing this change, InnoDB can reduce the workload on system tablespace.
Requirements
A prior shutdown with SET GLOBAL innodb_fast_shutdown=0 must be executed before adding the undo log tablespaces.
This is because the undo logs must be empty (no incomplete or XA PREPARE transactions, nothing to be purged) so that the old undo tablespaces can discarded and new ones created.
Steps
Check whether the existing undo log exists. If exists then give the warnings about the slow shutdown and start the server normally.
If not exist then free the system tablespace rollback segment header page else throw message about slow shutdown and continue the normal server start operation
Free the system tablespace rollback segment header page of the slots 1...127
Reset the TRX_SYS page and reinitialize the system tablespace rollback segment slot(0th slot), doublewrite information,
update the binlog info and WSREP info in system rollback segment header page (0th slot page)
Step(3) and (4) should happen within a single mini-transaction
Delete the old undo tablespaces if any
Make checkpoint to get rid of old undo tablespace redo log records
Read the latest MAX_SPACE_ID from dictionary header page
Create the new specified undo log tablespace and initialize the page0 of all undo tablespaces
Step (7) and Step (8) should happen within a single mini-transaction
Make the checkpoint again to make sure that next startup or backup reads the undo log tablespaces before
opening the redo log records
Create the rollback segment for each rollback segment in a round robin fashion
Attachments
Issue Links
blocks
MDEV-29986Set innodb_undo_tablespaces=3 by default
Closed
causes
MDEV-30122mariabackup.skip_innodb crashes when innodb_undo_tablespaces > 0
Closed
MDEV-30158InnoDB fails to start ther server 10.11 when innodb_undo_tablespaces mismatch
Closed
MDEV-30311system-wide max transaction id corrupted (from MySQL-5.7 upgrade)
Closed
MDEV-32974Member fails to join due to old seqno in GTID
Closed
MDEV-34200InnoDB tries to write to read-only system tablespace in buf_dblwr_t::init_or_load_pages()
Closed
is blocked by
MDEV-21216InnoDB performs dirty read of TRX_SYS page before crash recovery
Closed
is duplicated by
MDEV-10373Possibility to implement UNDO tablespace in existing intance
Closed
MDEV-17555Allow moving UNDO segments into separate UNDO tablespaces without total rebuild of the data directory from a logical backup
Closed
relates to
MDEV-27121mariabackup incompatible with disabled dedicated undo log tablespaces
Before this change, in trx_assign_rseg_low() there was some code that would avoid using anything else than the first rollback segment in the system tablespace when the server is started with innodb_undo_tablespaces=0.
With this change, we should rebuild the undo tablespaces whenever the detected number of undo tablespace files disagrees with the specified number. That is, the special handling in trx_assign_rseg_low() can be simplified.
Marko Mäkelä
added a comment - Before this change, in trx_assign_rseg_low() there was some code that would avoid using anything else than the first rollback segment in the system tablespace when the server is started with innodb_undo_tablespaces=0 .
With this change, we should rebuild the undo tablespaces whenever the detected number of undo tablespace files disagrees with the specified number. That is, the special handling in trx_assign_rseg_low() can be simplified.
performed well in RQG testing. The bad effects observed are in origin/10.6 1feccb505f9ec5cada8f8e2c544f736c1a533633 2022-10-13T09:09:03+03:00 too.
Matthias Leich
added a comment -
origin/bb-10.6-MDEV-19229 162cccee73bc04cf089d35cf457eb109596aec4e 2022-10-17T21:51:01+05:30
performed well in RQG testing. The bad effects observed are in origin/10.6 1feccb505f9ec5cada8f8e2c544f736c1a533633 2022-10-13T09:09:03+03:00 too.
To reduce the risk of potentially breaking anything in stable releases, a decision was made to only fix this in the 10.11 series for now. Technically, the same change should work in any version starting with 10.6 where it was developed and tested.
Marko Mäkelä
added a comment - To reduce the risk of potentially breaking anything in stable releases, a decision was made to only fix this in the 10.11 series for now. Technically, the same change should work in any version starting with 10.6 where it was developed and tested.
Before this change, in trx_assign_rseg_low() there was some code that would avoid using anything else than the first rollback segment in the system tablespace when the server is started with innodb_undo_tablespaces=0.
With this change, we should rebuild the undo tablespaces whenever the detected number of undo tablespace files disagrees with the specified number. That is, the special handling in trx_assign_rseg_low() can be simplified.