Add support for WITH VALIDATION | WITHOUT VALIDATION to
ALTER TABLE ... EXCHANGE PARTITION ... WITH TABLE
WITH VALIDATION should be the default behavior.
Must also cover CONVERT {TABLE|PARTITION} TO
Background
When WITHOUT VALIDATION is specified, there is no check that all rows in the added table fulfills the partition restrictions. If there is inconsistencies, it will result in rows later not being found in SELECT, UPDATE or DELETE.
MySQL has had this since 5.7.5 and it's important when adding big tables to a partitioned table to avoid the expensive row-by-row check.
h3. Supplemental feature
Make THAN keyword optional in partition definition of range partitioning.
Attachments
Issue Links
causes
MDEV-33125CHECK TABLE does not recognize corruption after EXCHANGE WITHOUT VALIDATION on system-time partitioning
Closed
MDEV-33128WITHOUT VALIDATION allows to insert duplicate values into unique key without a way to repair
Just following up if there is any update on making “WITHOUT VALIDATION“ option available for exchange partitions.
It will be nice to have that option because we are using partition exchange functionality for deploying large amount of data in the production environment.
Thanks a ton!
Colin Luo
added a comment - Just following up if there is any update on making “WITHOUT VALIDATION“ option available for exchange partitions.
It will be nice to have that option because we are using partition exchange functionality for deploying large amount of data in the production environment.
Thanks a ton!
I am afraid this tree without full version name do not allow to make tests correctly (at least upgrade tests)
Add version end marker after your tests (always should be done if it is absent in the test file and your test is the last one)
IMHO it lack of "strange/error" tests, ad at least partitioning with LIST and hash to the tests
Oleksandr Byelkin
added a comment - Generally everything looks OK, but :
I am afraid this tree without full version name do not allow to make tests correctly (at least upgrade tests)
Add version end marker after your tests (always should be done if it is absent in the test file and your test is the last one)
IMHO it lack of "strange/error" tests, ad at least partitioning with LIST and hash to the tests
The "supplemental feature" (making THAN keyword optional) wasn't a part of the original task, isn't required for the functionality, doesn't seem to be a part of any compatibility effort (as far as I can see, MySQL 8.x does not support it), and in general looks more like a typo than a valid expression:
createtable t (a int) partition by range (a) (p0 values less (100));
Elena Stepanova
added a comment - The "supplemental feature" (making THAN keyword optional) wasn't a part of the original task, isn't required for the functionality, doesn't seem to be a part of any compatibility effort (as far as I can see, MySQL 8.x does not support it), and in general looks more like a typo than a valid expression:
create table t (a int ) partition by range (a) (p0 values less (100));
We need proper documentation for how an admin should handle a corrupt table produced with the use of WITHOUT VALIDATION clause. The MySQL manual is no help here, it claims that it
can be performed using REPAIR TABLE or ALTER TABLE ... REPAIR PARTITION
however it is not true (not even for MySQL):
mysql-8.2.0
mysql> ALTERTABLE t EXCHANGE PARTITION p WITHTABLE t_exchange WITHOUT VALIDATION;
Maybe it should be ALTER TABLE .. REBUILD PARTITION, at least it seems to work.
Elena Stepanova
added a comment - We need proper documentation for how an admin should handle a corrupt table produced with the use of WITHOUT VALIDATION clause. The MySQL manual is no help here, it claims that it
can be performed using REPAIR TABLE or ALTER TABLE ... REPAIR PARTITION
however it is not true (not even for MySQL):
mysql-8.2.0
mysql> ALTER TABLE t EXCHANGE PARTITION p WITH TABLE t_exchange WITHOUT VALIDATION;
Query OK, 0 rows affected (0.44 sec)
mysql> check table t;
+ --------+-------+----------+-----------------------------------------------+
| Table | Op | Msg_type | Msg_text |
+ --------+-------+----------+-----------------------------------------------+
| test.t | check | error | Partition p returned error |
| test.t | check | error | Unknown - internal error 160 during operation |
+ --------+-------+----------+-----------------------------------------------+
2 rows in set (0.05 sec)
mysql> repair table t;
+ --------+--------+----------+-----------------------------------------------+
| Table | Op | Msg_type | Msg_text |
+ --------+--------+----------+-----------------------------------------------+
| test.t | repair | error | Partition p returned error |
| test.t | repair | error | Unknown - internal error 160 during operation |
+ --------+--------+----------+-----------------------------------------------+
2 rows in set (0.02 sec)
mysql> alter table t repair partition p;
+ --------+--------+----------+-----------------------------------------------+
| Table | Op | Msg_type | Msg_text |
+ --------+--------+----------+-----------------------------------------------+
| test.t | repair | error | Partition p returned error |
| test.t | repair | error | Unknown - internal error 160 during operation |
+ --------+--------+----------+-----------------------------------------------+
2 rows in set (0.02 sec)
mysql> check table t;
+ --------+-------+----------+-----------------------------------------------+
| Table | Op | Msg_type | Msg_text |
+ --------+-------+----------+-----------------------------------------------+
| test.t | check | error | Partition p returned error |
| test.t | check | error | Unknown - internal error 160 during operation |
+ --------+-------+----------+-----------------------------------------------+
2 rows in set (0.04 sec)
Maybe it should be ALTER TABLE .. REBUILD PARTITION , at least it seems to work.
It may be useful to add a status variable Feature_without_validation or something like that counting specifically "without".
The reason is that it may cause a variety of issues, so when we later investigate an obscure problem reported by a user, it may help to know that it could have been used.
Elena Stepanova
added a comment - - edited It may be useful to add a status variable Feature_without_validation or something like that counting specifically "without".
The reason is that it may cause a variety of issues, so when we later investigate an obscure problem reported by a user, it may help to know that it could have been used.
I like the idea of logging operations which can make the database inconsistent, also if SET FOREIGN_KEY_CHECKS=0; is used, but we might get too many variables. Adding a warning to the server log could be a first simple solution, and it would not be just a counter but would include a timestamp. I am not sure about the overhead a new log file would have, which would only include such cases. serg, what do you think?
Ralf Gebhardt
added a comment - - edited I like the idea of logging operations which can make the database inconsistent, also if SET FOREIGN_KEY_CHECKS=0; is used, but we might get too many variables. Adding a warning to the server log could be a first simple solution, and it would not be just a counter but would include a timestamp. I am not sure about the overhead a new log file would have, which would only include such cases. serg , what do you think?
Feature_without_validation is really simple and can likely be done either way. Also we might, perhaps, mark the frm as "tainted", write a special flag there, it's not difficult.
SET FOREIGN_KEY_CHECKS=0 is a different story. We cannot mark it in the frm, as DMLs don't modify frm. A warning in the server log is simple, sure. It won't show, though, what tables were affected. But there's also a question — set foreign_key_checks=0 can easily violate data consistency, should it be a privileged operation? Same for unique_checks and check_constraint_checks. Either way, this discussion doesn't really belong here.
Sergei Golubchik
added a comment - - edited Feature_without_validation is really simple and can likely be done either way. Also we might, perhaps, mark the frm as "tainted", write a special flag there, it's not difficult.
SET FOREIGN_KEY_CHECKS=0 is a different story. We cannot mark it in the frm, as DMLs don't modify frm. A warning in the server log is simple, sure. It won't show, though, what tables were affected. But there's also a question — set foreign_key_checks=0 can easily violate data consistency, should it be a privileged operation? Same for unique_checks and check_constraint_checks . Either way, this discussion doesn't really belong here.
After some discussion with serg I personally would conclude that:
Feature_without_validation would not help much as it would be reset after server restart, but a partition might still be inconsistent
A flag in the .frm file could help at least to print a warning when running CHECK TABLE QUICK. But here the question is if a CHECK PARTITION does not anyhow check an inconsistency anyhow
Ralf Gebhardt
added a comment - After some discussion with serg I personally would conclude that:
Feature_without_validation would not help much as it would be reset after server restart, but a partition might still be inconsistent
A flag in the .frm file could help at least to print a warning when running CHECK TABLE QUICK. But here the question is if a CHECK PARTITION does not anyhow check an inconsistency anyhow
Feature_x counters are not an ultimate weapon, but it doesn't mean they are useless. As happens quite often, if they don't show anything, it doesn't mean much, but if it does show something, it is useful information.
1) Production instances aren't typically restarted without a reason, and issues with invalid tables won't necessarily lead to a crash, so it may well be that a problem under investigation originated from the ongoing server session;
2) Some users/customers do have regular monitoring which records status values, and may be able to provide the snapshot from before the server restarted;
3) Real-life instances tend to perform a typical repeating workload, so if they performed a without validation operation in the current session, there is a good chance they did it before.
That said, I'm not going to insist on adding the counter, I just don't understand why not have it, especially if apparently there isn't any realistic plan to have a more reliable diagnostics. After all, Feature_x is quite a standard thing in MariaDB, not any innovation.
Elena Stepanova
added a comment - Feature_x counters are not an ultimate weapon, but it doesn't mean they are useless. As happens quite often, if they don't show anything, it doesn't mean much, but if it does show something, it is useful information.
1) Production instances aren't typically restarted without a reason, and issues with invalid tables won't necessarily lead to a crash, so it may well be that a problem under investigation originated from the ongoing server session;
2) Some users/customers do have regular monitoring which records status values, and may be able to provide the snapshot from before the server restarted;
3) Real-life instances tend to perform a typical repeating workload, so if they performed a without validation operation in the current session, there is a good chance they did it before.
That said, I'm not going to insist on adding the counter, I just don't understand why not have it, especially if apparently there isn't any realistic plan to have a more reliable diagnostics. After all, Feature_x is quite a standard thing in MariaDB, not any innovation.
elenst you are definitely right, Feature_x even only as a counter of the used feature still makes sense. And therefor also indicates that partitions should be checked as long as it is >0.
serg, could the flag you mentioned for the .frm file be used in information_schema.partitions to mark a partition which was not validated?
Ralf Gebhardt
added a comment - elenst you are definitely right, Feature_x even only as a counter of the used feature still makes sense. And therefor also indicates that partitions should be checked as long as it is >0.
serg , could the flag you mentioned for the .frm file be used in information_schema.partitions to mark a partition which was not validated?
unfortunately, ALTER TABLE ... EXCHANGE PARTITION does not touch the .frm file, so it cannot add a flag there.
I'll print a warning in the log
Sergei Golubchik
added a comment - - edited unfortunately, ALTER TABLE ... EXCHANGE PARTITION does not touch the .frm file, so it cannot add a flag there.
I'll print a warning in the log
People
Aleksey Midenkov
Michael Widenius
Votes:
4Vote for this issue
Watchers:
14Start watching this issue
Dates
Created:
Updated:
Resolved:
Git Integration
Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.
{"report":{"fcp":823.5,"ttfb":212.80000001192093,"pageVisibility":"visible","entityId":85127,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":1,"journeyId":"b184689b-81d8-4853-aa59-4bf207ba6b89","navigationType":0,"readyForUser":897.6000000238419,"redirectCount":0,"resourceLoadedEnd":951.8000000119209,"resourceLoadedStart":220.19999998807907,"resourceTiming":[{"duration":67.70000004768372,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2bu7/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":220.19999998807907,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":220.19999998807907,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":287.9000000357628,"responseStart":0,"secureConnectionStart":0},{"duration":67.60000002384186,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2bu7/820016/12ta74/8679b4946efa1a0bb029a3a22206fb5d/_/download/contextbatch/css/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true","startTime":220.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":220.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":288.10000002384186,"responseStart":0,"secureConnectionStart":0},{"duration":90.30000001192093,"initiatorType":"script","name":"https://jira.mariadb.org/s/fbf975c0cce4b1abf04784eeae9ba1f4-CDN/lu2bu7/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":220.69999998807907,"connectEnd":220.69999998807907,"connectStart":220.69999998807907,"domainLookupEnd":220.69999998807907,"domainLookupStart":220.69999998807907,"fetchStart":220.69999998807907,"redirectEnd":0,"redirectStart":0,"requestStart":220.69999998807907,"responseEnd":311,"responseStart":311,"secureConnectionStart":220.69999998807907},{"duration":185.69999998807907,"initiatorType":"script","name":"https://jira.mariadb.org/s/099b33461394b8015fc36c0a4b96e19f-CDN/lu2bu7/820016/12ta74/8679b4946efa1a0bb029a3a22206fb5d/_/download/contextbatch/js/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true","startTime":220.9000000357628,"connectEnd":220.9000000357628,"connectStart":220.9000000357628,"domainLookupEnd":220.9000000357628,"domainLookupStart":220.9000000357628,"fetchStart":220.9000000357628,"redirectEnd":0,"redirectStart":0,"requestStart":220.9000000357628,"responseEnd":406.60000002384186,"responseStart":406.60000002384186,"secureConnectionStart":220.9000000357628},{"duration":189.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/94c15bff32baef80f4096a08aceae8bc-CDN/lu2bu7/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":221.10000002384186,"connectEnd":221.10000002384186,"connectStart":221.10000002384186,"domainLookupEnd":221.10000002384186,"domainLookupStart":221.10000002384186,"fetchStart":221.10000002384186,"redirectEnd":0,"redirectStart":0,"requestStart":221.10000002384186,"responseEnd":410.60000002384186,"responseStart":410.60000002384186,"secureConnectionStart":221.10000002384186},{"duration":190,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":221.4000000357628,"connectEnd":221.4000000357628,"connectStart":221.4000000357628,"domainLookupEnd":221.4000000357628,"domainLookupStart":221.4000000357628,"fetchStart":221.4000000357628,"redirectEnd":0,"redirectStart":0,"requestStart":221.4000000357628,"responseEnd":411.4000000357628,"responseStart":411.4000000357628,"secureConnectionStart":221.4000000357628},{"duration":190.4000000357628,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":221.5,"connectEnd":221.5,"connectStart":221.5,"domainLookupEnd":221.5,"domainLookupStart":221.5,"fetchStart":221.5,"redirectEnd":0,"redirectStart":0,"requestStart":221.5,"responseEnd":411.9000000357628,"responseStart":411.9000000357628,"secureConnectionStart":221.5},{"duration":231.70000004768372,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2bu7/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":221.69999998807907,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":221.69999998807907,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":453.4000000357628,"responseStart":0,"secureConnectionStart":0},{"duration":191.29999995231628,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":221.9000000357628,"connectEnd":221.9000000357628,"connectStart":221.9000000357628,"domainLookupEnd":221.9000000357628,"domainLookupStart":221.9000000357628,"fetchStart":221.9000000357628,"redirectEnd":0,"redirectStart":0,"requestStart":221.9000000357628,"responseEnd":413.19999998807907,"responseStart":413.19999998807907,"secureConnectionStart":221.9000000357628},{"duration":231.60000002384186,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2bu7/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/css/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.css?jira.create.linked.issue=true","startTime":222,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":222,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":453.60000002384186,"responseStart":0,"secureConnectionStart":0},{"duration":191.80000001192093,"initiatorType":"script","name":"https://jira.mariadb.org/s/3339d87fa2538a859872f2df449bf8d0-CDN/lu2bu7/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/js/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.js?jira.create.linked.issue=true&locale=en","startTime":222.19999998807907,"connectEnd":222.19999998807907,"connectStart":222.19999998807907,"domainLookupEnd":222.19999998807907,"domainLookupStart":222.19999998807907,"fetchStart":222.19999998807907,"redirectEnd":0,"redirectStart":0,"requestStart":222.19999998807907,"responseEnd":414,"responseStart":414,"secureConnectionStart":222.19999998807907},{"duration":330.30000001192093,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":228.5,"connectEnd":228.5,"connectStart":228.5,"domainLookupEnd":228.5,"domainLookupStart":228.5,"fetchStart":228.5,"redirectEnd":0,"redirectStart":0,"requestStart":228.5,"responseEnd":558.8000000119209,"responseStart":558.8000000119209,"secureConnectionStart":228.5},{"duration":634,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":231.9000000357628,"connectEnd":231.9000000357628,"connectStart":231.9000000357628,"domainLookupEnd":231.9000000357628,"domainLookupStart":231.9000000357628,"fetchStart":231.9000000357628,"redirectEnd":0,"redirectStart":0,"requestStart":231.9000000357628,"responseEnd":865.9000000357628,"responseStart":865.9000000357628,"secureConnectionStart":231.9000000357628},{"duration":95,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":464.69999998807907,"connectEnd":464.69999998807907,"connectStart":464.69999998807907,"domainLookupEnd":464.69999998807907,"domainLookupStart":464.69999998807907,"fetchStart":464.69999998807907,"redirectEnd":0,"redirectStart":0,"requestStart":464.69999998807907,"responseEnd":559.6999999880791,"responseStart":559.6999999880791,"secureConnectionStart":464.69999998807907},{"duration":188.39999997615814,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2bu7/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/css/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true","startTime":737.4000000357628,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":737.4000000357628,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":925.8000000119209,"responseStart":0,"secureConnectionStart":0},{"duration":188,"initiatorType":"link","name":"https://jira.mariadb.org/s/50bc9be5bfead1a25e72c1a9338c94f6-CDN/lu2bu7/820016/12ta74/03ec8e95fb0700cf309083e2358eb54b/_/download/contextbatch/css/com.atlassian.jira.plugins.jira-development-integration-plugin:0,com.atlassian.jira.plugins.jira-quicksearch-plugin:5,-_super,-jira.view.issue,-jira.global,-jira.general,-jira.browse.project,-project.issue.navigator,-atl.general/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true","startTime":737.9000000357628,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":737.9000000357628,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":925.9000000357628,"responseStart":0,"secureConnectionStart":0},{"duration":206.19999998807907,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/820016/12ta74/e65b778d185daf5aee24936755b43da6/_/download/contextbatch/js/browser-metrics-plugin.contrib,-_super,-project.issue.navigator,-jira.view.issue,-atl.general/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true","startTime":738.8000000119209,"connectEnd":738.8000000119209,"connectStart":738.8000000119209,"domainLookupEnd":738.8000000119209,"domainLookupStart":738.8000000119209,"fetchStart":738.8000000119209,"redirectEnd":0,"redirectStart":0,"requestStart":738.8000000119209,"responseEnd":945,"responseStart":945,"secureConnectionStart":738.8000000119209},{"duration":210.70000004768372,"initiatorType":"script","name":"https://jira.mariadb.org/s/f51ef5507eea4c158f257c66c93b2a3f-CDN/lu2bu7/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/js/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true","startTime":739.1999999880791,"connectEnd":739.1999999880791,"connectStart":739.1999999880791,"domainLookupEnd":739.1999999880791,"domainLookupStart":739.1999999880791,"fetchStart":739.1999999880791,"redirectEnd":0,"redirectStart":0,"requestStart":739.1999999880791,"responseEnd":949.9000000357628,"responseStart":949.9000000357628,"secureConnectionStart":739.1999999880791},{"duration":212.30000001192093,"initiatorType":"script","name":"https://jira.mariadb.org/s/0b63859f61e7b6c2acdd2eef749beab8-CDN/lu2bu7/820016/12ta74/03ec8e95fb0700cf309083e2358eb54b/_/download/contextbatch/js/com.atlassian.jira.plugins.jira-development-integration-plugin:0,com.atlassian.jira.plugins.jira-quicksearch-plugin:5,-_super,-jira.view.issue,-jira.global,-jira.general,-jira.browse.project,-project.issue.navigator,-atl.general/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true","startTime":739.5,"connectEnd":739.5,"connectStart":739.5,"domainLookupEnd":739.5,"domainLookupStart":739.5,"fetchStart":739.5,"redirectEnd":0,"redirectStart":0,"requestStart":739.5,"responseEnd":951.8000000119209,"responseStart":951.8000000119209,"secureConnectionStart":739.5},{"duration":216.29999995231628,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":815.9000000357628,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":815.9000000357628,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1032.199999988079,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":23,"responseStart":213,"responseEnd":232,"domLoading":216,"domInteractive":971,"domContentLoadedEventStart":971,"domContentLoadedEventEnd":1023,"domComplete":1375,"loadEventStart":1375,"loadEventEnd":1377,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":939},{"name":"bigPipe.sidebar-id.end","time":939.8000000119209},{"name":"bigPipe.activity-panel-pipe-id.start","time":939.9000000357628},{"name":"bigPipe.activity-panel-pipe-id.end","time":945},{"name":"activityTabFullyLoaded","time":1060}],"measures":[],"correlationId":"61931e4e9023d0","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":129,"dbReadsTimeInMs":16,"dbConnsTimeInMs":25,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
Just following up if there is any update on making “WITHOUT VALIDATION“ option available for exchange partitions.
It will be nice to have that option because we are using partition exchange functionality for deploying large amount of data in the production environment.
Thanks a ton!