WL#9507: InnoDB: Make the number of undo tablespaces and rollback segments dynamic

Affects: Server-8.0   —   Status: Complete

There are two primary goals of this worklog:

Requirements
============
1. Initiate the process of moving rollback segments and undo logs away from the
system tablespace.  The following two tasks are listed in their own worklogs for
tracking purposes, but will be done within this work.
   WL#10498: Change the default value of innodb-undo-tablespaces from 0 to 2. We
need at least 2 undo tablespaces for undo truncation to work. 
   WL#10499: Change the default value for innodb_undo_log_truncate to true.
The goal is that the system tablespace will no longer be used for rollback
segments.  So at a later time we should change the minimum value of
undo_tablespaces to 2. 

2. Allow the the number of undo tablespaces to be set at runtime using the
existing interface which is the setting innodb-undo-tablespaces.  This work
prepares the way for WL9508 which introduces CREATE UNDO TABLESPACE.

Tasks
=====
1. This worklog will include a redesign of the way rollback segments are found
in undo tablespaces.  This will change the meaning of the rollback segment
identifier associated with each modified clustered index record. In addition, it
will create a new rollback segment mapping page in each undo tablespace it
creates and give that tablespace a new default name so it can be distinguished
from the old style.

2. This worklog will allow the setting innodb_undo_tablespaces to be increased
or decreased at runtime or at startup.  If increased, new undo tablespaces will
be created and then atomically added to the list of active undo tablespaces.  If
decreased, the list of active undo tablespaces is atomically reduced in size. 
Existing undo tablespaces will continue to be used by existing transactions and
eventually will become inactive.  Version 8.0 style undo tablespaces will not be
deleted.  In this way, innodb_undo_tablespaces can be easily increased again.
Note that older undo tablespaces are deleted after they are replaced by v8.0
undo tablespaces.

If innodb_undo_tablespaces is set to 0, which is the default for v5.7, this
means that the system tablespace is used for rollback segments.

If innodb_undo_tablespaces is set at runtime from 0 to a number between 1 and
127, new undo tablespaces will be created with the specified number of rollback
segments.  Once they are ready to use, new transactions will be assigned to
these rollback segments on a round robin basis and rollback segments in the
system tablespace will no longer be assigned.  Once all the transactions using
undo logs in the system tablespace have been fully purged, the rollback segments
there will only consist of one page per rollback segment.  

If innodb_undo_tablespaces is > 0 and then set to 0 at runtime, then the
rollback segments in the system tablespace will be used for new transactions and
the existing undo tablespaces will eventually become unused.  But unused v8.0
undo tablespaces will not be deleted in case the setting is changed again.

The default setting for innodb_rollback_segments will stay at 128. v5.7 reserved
32 of the 128 rollback segment slots available in the system tablespace for
temporary rollback segments physically found in the temporary tablespace.

3. This worklog will use innodb_rollback_segments to indicate how many rollback
segments are in each tablespace. That includes the temporary tablespace, the
system tablespace, and each undo tablespace. Using the default setting of 128,
combined with innodb_undo_tablespaces=0, it is possible that rollback segments
will need to be added when innodb_undo_tablespaces is changed.

4. The setting innodb_rollback_segments will also be adjustable at startup and
at runtime.  

5. In short, this worklog will add the ability to add new undo tablespaces and
rollback segments at any time.  But it will not delete any undo tablespaces or
rollback segments in case they are needed in the future.

6. This worklog will add the ability to upgrade undo tablespaces from
existing databases to the new undo tablespaces mentioned in task #1. Any old
undo tablespaces in a 5.7 database will be replaced by v8.0 undo tablespaces.