Keys and iteration
How VReplication utilizes keys on source and target tables, requirements and limitations
The use of unique keys #
A VReplication stream copies data from a table on a source target to a table on a target tablet. In some cases the two tablets may be the same one, but the stream is oblivious to such nuance. VReplication needs to be able to copy existing rows from the source table onto the target table, as well as identify binary log events from the source tablet, and apply them onto the target table. To that effect, VReplication needs to be able to identify rows, so that it can apply a specific UPDATE
on the correct row, or so that it knows all rows up to a given row have been copied.
Each row needs to be uniquely identifiable. In the relational model this is trivially done by utilizing UNIQUE KEY
s, preferably PRIMARY KEY
s.
Typically, both source and target table have similar structure, and same keys.
In fact, In the most common use case both tables will have same PRIMARY KEY
covering same set of columns in same order. This is the default assumption and expectation by VReplication. But this doesn't have to be the case, and it is possible to have different keys on source and target table.
Which keys are eligible? #
Any UNIQUE KEY
that is non-NULL
able potentially qualifies. A NULL
able UNIQUE KEY
is a key that covers one or more NULL
able columns. It doesn't matter if column values do or do not actually contain NULL
s. If a column is NULL
able, then a UNIQUE KEY
that includes that column is not eligible.
PRIMARY KEY
s are by definition always non-NULL
able. A PRIMARY KEY
(PK) is typically the best choice. It gives best iteration/read performance on InnoDB tables, as those are clustered by PK order.
PRIMARY KEY
aside, VReplication
prioritizes keys that utilize integers rather than texts, and prioritizes smaller data types over larger data types.
However, not all eligible UNIQUE KEY
s, or even PRIMARY KEY
s are usable for all VReplication streams, as described below.
Comparable rows #
VReplication needs to be able to determine, given a row in the source table, which row it maps to in the target table.
In the case both tables share the same PRIMARY KEY
, the answer is trivial: given a row from the source table, take the PK column values (say the table has PRIMARY KEY(col1, col2)
), and compare with/apply to target table via ... WHERE col1=<val1> AND col2=<val2>
.
However, other scenarios are valid. Consider an OnlineDDL operation that modifies the PRIMARY KEY
as follows: DROP PRIMARY KEY, ADD PRIMARY KEY(col1)
. On the source table, a row is identified by col1, col2
. On the target table, a row is only identifiable by col1
. This scenario still feels comfortable: all we need to do when we apply e.g. an UPDATE
statement on target table is to drop col2
from the statement: ... WHERE col1=<val1>
.
Note that it is the user's responsibility to make sure the data will comply with the new constraints. If not, VReplication wil fail the operation.
But consider the opposite case, there's a PRIMARY KEY(col1)
and an OnlineDDL operation turns it into PRIMARY KEY(col1, col2)
. Now we need to apply changes ... WHERE col1=<val1> AND col2=<val2>
. But col2
is not part of the source PRIMARY KEY
.
An extreme case is when the keys on source table and target table do not share any columns between them. Say source table has PRIMARY KEY(col1)
and target table has PRIMARY KEY(col2)
and with no other potential keys. We still need to identify which row in source table maps to which row in the target table. VReplication still allows this scenario.
Yet another complication is when columns are renamed along the way. Consider a ALTER TABLE CHANGE COLUMN col2 col_two INT UNSIGNED ...
. A row on the source table is identified by col1, col2
, but on the target table it is identified by col1, col_two
.
Let's now discuss what the exact requirements are for unique keys, and then discuss implementation.
Requirements #
To be able to create a VReplication stream between source table and target table:
- The source table must have a non-
NULL
ableUNIQUE/PRIMARY
key whose columns all exist in the target table (possibly under different names) - The target table must have a non-
NULL
ableUNIQUE/PRIMARY
key whose columns all exist in the source table (possibly under different names) - Except in the trivial case where both tables share same
PRIMARY KEY
(of same columns in same order), VReplication must be told which keys to utilize (more on this later on)
To clarify, it is OK if:
- Keys in source table and target table go by different names
- Chosen key in source table and chosen key in target table do not share any columns
- Chosen key in source table and chosen key in target table share some or all columns
- Chosen key in source table and chosen key in target table share some or all columns but in different order
- There are keys in source table that cover columns not present in target table
- There are keys in target table that cover columns not present in source table
- There are
NULL
able columns in source and tasrget table - There are
NULL
able keys in source and tasrget table
All it takes is one good key in source table, and one good key in target table to make VReplication work.
Examples for valid cases #
Source table and target table are same: #
CREATE TABLE `entry` (
`id` int NOT NULL,
`uuid` varchar(40) DEFAULT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
PRIMARY KEY (`id`)
)
The above is the trivial scenario.
Source table and target table share same PRIMARY KEY #
CREATE TABLE `source` (
`id` int NOT NULL,
`uuid` varchar(40) DEFAULT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int ,
PRIMARY KEY (`id`),
KEY ts_idx(`ts`)
)
CREATE TABLE `target` (
`id` int NOT NULL,
`uuid` varchar(40) DEFAULT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
PRIMARY KEY (`id`)
)
The differences in structure are interesting, but irrelevant to VReplication's ability to copy the data.
Subset PRIMARY KEY #
CREATE TABLE `source` (
`id` int NOT NULL,
`uuid` varchar(40) DEFAULT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
PRIMARY KEY (`id`, `customer_id`)
)
CREATE TABLE `target` (
`id` int NOT NULL,
`uuid` varchar(40) DEFAULT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
PRIMARY KEY (`id`)
)
Superset PRIMARY KEY #
CREATE TABLE `source` (
`id` int NOT NULL,
`uuid` varchar(40) DEFAULT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
PRIMARY KEY (`id`)
)
CREATE TABLE `target` (
`id` int NOT NULL,
`uuid` varchar(40) DEFAULT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
PRIMARY KEY (`id`, `customer_id`)
)
Different PRIMARY KEYs #
CREATE TABLE `source` (
`id` int NOT NULL,
`uuid` varchar(40) NOT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
PRIMARY KEY (`id`)
)
CREATE TABLE `target` (
`id` int NOT NULL,
`uuid` varchar(40) NOT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
PRIMARY KEY (`uuid`)
)
No columns are shared between the PRIMARY KEY
s in the above. However:
id
, covered bysource
's PK, is found intarget
uuid
, covered bytarget
's PK, is found insource
Mixed keys #
CREATE TABLE `source` (
`uuid` varchar(40) NOT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
PRIMARY KEY (`uuid`)
)
CREATE TABLE `target` (
`id` int NOT NULL,
`uuid` varchar(40) NOT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
PRIMARY KEY (`id`)
UNIQUE KEY uuid_idx(`uuid`)
)
The only eligible solution in the above is:
- Use
source
'sPRIMARY KEY
(the columnuuid
is found intarget
) - Use
target
'suuid_idx
key (again using columnuuid
which is found insource
).
target
's PRIMARY KEY
is not valid because covered column id
does not exist in source
.
Incidentally, in the above, the chosen keys differ by name, but share the same columns (uuid
).
Examples for invalid cases #
NULLable columns #
CREATE TABLE `source` (
`id` int NOT NULL,
`uuid` varchar(40) DEFAULT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
PRIMARY KEY (`id`)
)
CREATE TABLE `target` (
`id` int NOT NULL,
`uuid` varchar(40) DEFAULT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
UNIQUE KEY (`uuid`)
)
The only UNIQUE KEY
on target
is NULL
able, hence not eligible.
Missing columns #
CREATE TABLE `source` (
`uuid` varchar(40) NOT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
PRIMARY KEY (`uuid`)
)
CREATE TABLE `target` (
`id` int NOT NULL,
`uuid` varchar(40) NOT NULL,
`ts` timestamp NULL DEFAULT NULL,
`customer_id` int NOT NULL,
PRIMARY KEY (`id`)
)
target
only has one possible key, the PRIMARY KEY
, covering id
. But id
is not found in source
.
Configuring the stream #
If both source and target table share the same PRIMARY KEY
(covering same columns in same order) then there's nothing to be done. VReplication will pick PRIMARY KEY
on both ends by default.
In all other cases, we must instruct VReplication which keys are involved.
Example 1 #
Let's begin again as a trivial example, both tables have same PRIMARY KEY
s:
CREATE TABLE `corder` (
`order_id` bigint NOT NULL AUTO_INCREMENT,
`customer_id` bigint DEFAULT NULL,
`sku` varbinary(128) DEFAULT NULL,
`price` bigint DEFAULT NULL,
PRIMARY KEY (`order_id`)
)
And even though we don't have to, here's how we'd configure VReplication (prettified for readability):
keyspace:"commerce" shard:"0" filter:{
rules:{
match:"corder"
filter:"select `order_id` as `order_id`, `customer_id` as `customer_id`, `sku` as `sku`, `price` as `price` from `corder`"
source_unique_key_columns:"order_id"
target_unique_key_columns:"order_id"
source_unique_key_target_columns:"order_id"
}
}
In the above:
source_unique_key_columns
is the (comma delimited) list of columns covered by the chosen key on source tabletarget_unique_key_columns
is the (comma delimited) list of columns covered by the chosen key on target tablesource_unique_key_target_columns
is the (comma delimited) list of column names in target table, which map tosource_unique_key_columns
. This mapping is necessary because columns may change their names.
Example 2 #
Again both source and target table share same PRIMARY KEY
, but this time it covers two columns:
CREATE TABLE `shipment` (
`order_id` int NOT NULL,
`customer_id` int NOT NULL,
`ts` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`order_id`,`customer_id`)
)
keyspace:"commerce" shard:"0" filter:{
rules:{
match:"_a363f199_f4f8_11eb_a520_0a43f95f28a3_20210804075030_vrepl"
filter:"select `order_id` as `order_id`, `customer_id` as `customer_id`, `ts` as `ts` from `shipment`"
source_unique_key_columns:"order_id,customer_id"
target_unique_key_columns:"order_id,customer_id"
source_unique_key_target_columns:"order_id,customer_id"
}
}
Not much changed from the previous example, just note how we comma separate "order_id,customer_id"
Example 3 #
Continuing previous example, we now rename a column the target table:
CREATE TABLE `shipment` (
`order_id` int NOT NULL,
`cust_id` int NOT NULL,
`ts` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`order_id`,`cust_id`)
)
keyspace:"commerce" shard:"0" filter:{
rules:{
match:"_e285cc54_f369_11eb_afef_0a43f95f28a3_20210802081607_vrepl"
filter:"select `order_id` as `order_id`, `customer_id` as `cust_id`, `ts` as `ts` from `shipment`"
source_unique_key_columns:"order_id,customer_id"
target_unique_key_columns:"order_id,cust_id"
source_unique_key_target_columns:"order_id,cust_id"
}
}
Note:
source_unique_key_columns
indicates names of columns on source tabletarget_unique_key_columns
indicates names of columns on target tablesource_unique_key_target_columns
repeatssource_unique_key_columns
, but replacescustomer_id
withcust_id
Automation #
OnlineDDL mechanism automatically analyzes the differences between source and target tables, evaluates eligible keys, chooses the keys on source and target tables, and populates the filter's source_unique_key_columns
, target_unique_key_columns
, source_unique_key_target_columns
fields. Indeed, OnlineDDL operations are most susceptible to differences in keys.
At this time no other VReplication mechanism automates this analysis. The user must supply the correct values.
Implementation #
In high level, this is how VReplication is able to work with different keys/columns.
Originally, VReplication was only designed to work with identical PRIMARY KEY
s. If not specified, VReplication assumes the source table's PRIMARY KEY
can be used on target table, and that target table's PRIMARY KEY
applies to source table. If not, it breaks.
With the introduction of source_unique_key_columns
, target_unique_key_columns
, source_unique_key_target_columns
VReplication changes behavior as follows:
Notes about the code #
Much of the code uses "PK" terminology. With the introduction of any unique key utilization the "PK" terminology becomes incorrect. However, to avoid mass rewrites we kept this terminology, and wherever VReplication discusses a primary key or pkColumns etc., it may refer to a non-PK Unique Key.
Streamer #
Streaming is done by source_unique_key_columns
. When not present, rowstreamer
uses PK columns. When present. rowstreamer trusts the information in source_unique_key_columns
to be correct. It does not validate that there is indeed a valid unique key covering those columns. It does validate that the columns exist.
The streamer iterates the table by source_unique_key_columns
order. It tracks its progress in lastPk
as if this was indeed a PK.
Copier #
VCopier receives rows from the streamer in source_unique_key_columns
order. It complies with the streamer's ordering. When tracking progress in _vt.copy_state
it uses lastPk
values from the streamer, which means it uses the same source_unique_key_columns
as the streamer in that order.
Player #
VPlayer adhers to both source_unique_key_columns
and target_unique_key_columns
.
TablePlan
'sisOutsidePKRange()
function needs to compare values according to rowstreamer's ordering, therefore usessource_unique_key_columns
orderingtablePlanBuilder
'sgenerateWhere()
function uses the target table'starget_unique_key_columns
, and then also appends any supplemental columns fromsource_unique_key_target_columns
not included intarget_unique_key_columns
.