-
Notifications
You must be signed in to change notification settings - Fork 411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added support for new DDL actions for remove and add table partitioning #7822
Merged
ti-chi-bot
merged 15 commits into
pingcap:master
from
mjonss:remove-and-add-partitioning
Sep 11, 2023
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
f0ba7ea
Added support for new DDL actions for remove and add table partitioning
mjonss 43d7778
Updated remove and add partitioning logic
mjonss 9ef312a
Fixed bug with non-cleaned table definitions
mjonss 78f03e8
Merge branch 'master' into remove-and-add-partitioning
mjonss abf77ed
Merge branch 'master' into remove-and-add-partitioning
JaySon-Huang 4a1b412
Merge branch 'master' into remove-and-add-partitioning
JaySon-Huang 853ee18
Merge branch 'master' into remove-and-add-partitioning
mjonss 9d8df4e
Merge branch 'master' into remove-and-add-partitioning
JaySon-Huang 2ebdfe2
Merge branch 'master' into remove-and-add-partitioning
mjonss cd52346
Merge branch 'master' into remove-and-add-partitioning
mjonss a7e381e
Added test for non-partitioned -> partitioned
mjonss 1903458
Merge branch 'master' into remove-and-add-partitioning
mjonss b4c1d03
Merge branch 'master' into remove-and-add-partitioning
mjonss efe59de
Merge branch 'master' into remove-and-add-partitioning
JaySon-Huang 4c7ae94
Remove tidb global settings
JaySon-Huang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,194 @@ | ||
# Copyright 2023 PingCAP, Ltd. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
## partition_table --> partition_table | ||
|
||
mysql> drop table if exists test.t, test.t2; | ||
mysql> create table test.t (a int primary key, b varchar(255), c int, key (b), key (c,b)) partition by range (a) (partition p0 values less than (1000000), partition p1M values less than (2000000)); | ||
mysql> analyze table test.t; | ||
mysql> alter table test.t set tiflash replica 1; | ||
|
||
mysql> insert into test.t values (1,"1",-1); | ||
mysql> insert into test.t select a+1,a+1,-(a+1) from test.t; | ||
mysql> insert into test.t select a+2,a+2,-(a+2) from test.t; | ||
mysql> insert into test.t select a+500000,a+500000,-(a+500000) from test.t; | ||
mysql> insert into test.t select a+1000000,a+1000000,-(a+1000000) from test.t; | ||
|
||
func> wait_table test t | ||
|
||
# check table info in tiflash | ||
>> select tidb_database,tidb_name from system.tables where tidb_database = 'test' and tidb_name = 't' and is_tombstone = 0 | ||
JaySon-Huang marked this conversation as resolved.
Show resolved
Hide resolved
|
||
┌─tidb_database─┬─tidb_name─┐ | ||
│ test │ t │ | ||
└───────────────┴───────────┘ | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t]) */ count(*) from test.t partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t]) */ count(*) from test.t partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t]) */ count(*) from test.t partition (p1M); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t]) */ count(*) from test.t partition (p1M); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
mysql> alter table test.t partition by range (a) (partition p0 values less than (500000), partition p500k values less than (1000000), partition p1M values less than (2000000)); | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t]) */ count(*) from test.t partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 4 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t]) */ count(*) from test.t partition (p500k); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 4 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t]) */ count(*) from test.t partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 4 | | ||
+----------+ | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t]) */ count(*) from test.t partition (p500k); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 4 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t]) */ count(*) from test.t partition (p1M); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t]) */ count(*) from test.t partition (p1M); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
## non-partitioned table --> partitioned table | ||
mysql> create table test.t2 (a int primary key, b varchar(255), c int, key (b), key (c,b)); | ||
mysql> alter table test.t2 set tiflash replica 1; | ||
mysql> insert into test.t2 select * from test.t; | ||
func> wait_table test t2 | ||
|
||
mysql> drop table test.t; | ||
|
||
>> select tidb_database,tidb_name from system.tables where tidb_database = 'test' and tidb_name = 't2' and is_tombstone = 0 | ||
┌─tidb_database─┬─tidb_name─┐ | ||
│ test │ t2 │ | ||
└───────────────┴───────────┘ | ||
|
||
mysql> alter table test.t2 partition by hash (a) partitions 3; | ||
mysql> analyze table test.t2; | ||
|
||
mysql> explain format='brief' select /*+ READ_FROM_STORAGE(TIFLASH[t2]) */ count(*) from test.t2 partition (p0); | ||
id estRows task access object operator info | ||
StreamAgg 1.00 root funcs:count(Column#16)->Column#4 | ||
└─IndexReader 1.00 root partition:p0 index:StreamAgg | ||
└─StreamAgg 1.00 cop[tikv] funcs:count(1)->Column#16 | ||
└─IndexFullScan 16.00 cop[tikv] table:t2, index:b(b) keep order:false | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t2]) */ count(*) from test.t2 partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 5 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t2]) */ count(*) from test.t2 partition (p1); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 6 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t2]) */ count(*) from test.t2 partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 5 | | ||
+----------+ | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t2]) */ count(*) from test.t2 partition (p1); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 6 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t2]) */ count(*) from test.t2 partition (p2); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 5 | | ||
+----------+ | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t2]) */ count(*) from test.t2 partition (p2); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 5 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
mysql> drop table test.t2; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# Copyright 2023 PingCAP, Ltd. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
## partition_table --> non-partitioned table | ||
|
||
mysql> drop table if exists test.t; | ||
mysql> create table test.t (a int primary key, b varchar(255), c int, key (b), key (c,b)) partition by range (a) (partition p0 values less than (1000000), partition p1M values less than (2000000)); | ||
mysql> analyze table test.t; | ||
mysql> alter table test.t set tiflash replica 1; | ||
|
||
mysql> insert into test.t values (1,"1",-1); | ||
mysql> insert into test.t select a+1,a+1,-(a+1) from test.t; | ||
mysql> insert into test.t select a+2,a+2,-(a+2) from test.t; | ||
mysql> insert into test.t select a+500000,a+500000,-(a+500000) from test.t; | ||
mysql> insert into test.t select a+1000000,a+1000000,-(a+1000000) from test.t; | ||
|
||
func> wait_table test t | ||
|
||
# check table info in tiflash | ||
>> select tidb_database,tidb_name from system.tables where tidb_database = 'test' and tidb_name = 't' and is_tombstone = 0 | ||
┌─tidb_database─┬─tidb_name─┐ | ||
JaySon-Huang marked this conversation as resolved.
Show resolved
Hide resolved
|
||
│ test │ t │ | ||
└───────────────┴───────────┘ | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t]) */ count(*) from test.t partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t]) */ count(*) from test.t partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t]) */ count(*) from test.t partition (p1M); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t]) */ count(*) from test.t partition (p1M); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
mysql> alter table test.t remove partitioning; | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t]) */ count(*) from test.t; | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 16 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t]) */ count(*) from test.t; | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 16 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
mysql> drop table test.t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm curious about that when diff.table_id = diff.old_table_id and when diff.table_id != diff.old_table_id, could you please give an example here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is depending on the stage change, only the last (StateDeleteReorganization -> StatePublic) is the table ID changed to the new one.
Example (added custom logs):
tidb.log
tiflash.log
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So in the first three stages, does the partition.definitions changes?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the first (StateNone->StateDeleteOnly), it adds the new partitions to TableInfo.Partition.AddingDefinitions and the removed ones to TableInfo.Partition.DroppingDefinitions.
In the second (StateDeleteOnly->StateWriteOnly), it only waits for the partitions to be available in TiFlash (if the table should have any TiFlash replicas).
In the third (StateWriteOnly->StateWriteReorganization), no changes or checks.
In the forth (StateWriteReorganization->StateDeleteReorganization), no changes (but does all the data copying and recreating the indexes).
In the fifth (StateDeleteReorganization->StatePublic), it depends on the actual command (reorganize, remove partitioning or alter table partition by):
Notice that the data cleanup is done later in an async way, and that the old table data also needs to be accessible during the schemaversion the DDL got during transitioning to StatePublic, since there may be clients in the schemaversion of StateDeleteReorganization that still need to read and (double) write the data.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After some additional testing I figured out that I missed to drop the table (metadata) in TiFlash as well, not just create a new table :)