I'm using a Azure VM (ubuntu), mariadb ubuntu package
Server version: 10.3.5-MariaDB-10.3.5+maria~xenial mariadb.org binary distribution
MariaDB [test]> show variables like 'column_compre%';
|
+----------------------------------+------------------+
|
| Variable_name | Value |
|
+----------------------------------+------------------+
|
| column_compression_threshold | 100 |
|
| column_compression_zlib_level | 6 |
|
| column_compression_zlib_strategy | DEFAULT_STRATEGY |
|
| column_compression_zlib_wrap | OFF |
|
+----------------------------------+------------------+
|
4 rows in set (0.025 sec)
|
|
CREATE TABLE `table_without_compression` (
|
`id` int(11) NOT NULL DEFAULT 0,
|
`gmtime` decimal(22,7) NOT NULL DEFAULT 0.0000000,
|
`data` blob NOT NULL,
|
PRIMARY KEY (`id`,`gmtime`)
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
#Query OK, 0 rows affected (0.385 sec)
|
|
CREATE TABLE `table_compressed` (
|
`id` int(11) NOT NULL DEFAULT 0,
|
`gmtime` decimal(22,7) NOT NULL DEFAULT 0.0000000,
|
`data` blob COMPRESSED NOT NULL DEFAULT '',
|
PRIMARY KEY (`id`,`gmtime`)
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;*
|
#Query OK, 0 rows affected (0.385 sec)
|
|
INSERT INTO table_without_compression VALUES (1,0,repeat('a',65535));
|
#Query OK, 1 row affected (0.135 sec)
|
|
INSERT INTO table_without_compression VALUES (1,1,repeat('a',65536));
|
#ERROR 1406 (22001): Data too long for column 'data' at row 1 <- JUST TO CHECK IF WE GOT MAX SIZE OF BLOB COLUMN, maybe that's the problem, internally compression consider the from/to column instead of a bigger column (long blob for example when using blob/longblob, i will test with TEXT/LONG TEXT and VARCHAR too)
|
|
INSERT INTO table_compressed SELECT * FROM table_without_compression;
|
#ERROR 1406 (22001): Data too long for column 'data' at row 1 <- THAT'S THE ERROR
|
—
Same to TEXT
CREATE TABLE `table_compressed2` (
|
`id` int(11) NOT NULL DEFAULT 0,
|
`gmtime` decimal(22,7) NOT NULL DEFAULT 0.0000000,
|
`data` text COMPRESSED NOT NULL DEFAULT '',
|
PRIMARY KEY (`id`,`gmtime`)
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
#Query OK, 0 rows affected (0.231 sec)
|
|
CREATE TABLE `table_without_compression2` (
|
`id` int(11) NOT NULL DEFAULT 0,
|
`gmtime` decimal(22,7) NOT NULL DEFAULT 0.0000000,
|
`data` text NOT NULL,
|
PRIMARY KEY (`id`,`gmtime`)
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
#Query OK, 0 rows affected (0.253 sec)
|
|
INSERT INTO table_without_compression2 VALUES (1,0,repeat('a',65535));
|
#Query OK, 1 row affected (0.061 sec)
|
|
INSERT INTO table_without_compression2 VALUES (1,0,repeat('a',65536));
|
#ERROR 1406 (22001): Data too long for column 'data' at row 1 <- JUST TO CHECK IF WE GOT MAX SIZE OF BLOB COLUMN
|
|
INSERT INTO table_compressed2 SELECT * FROM table_without_compression2;
|
#ERROR 1406 (22001): Data too long for column 'data' at row 1 <- JUST TO CHECK IF WE GOT MAX SIZE OF BLOB COLUMN
|
—
mixing data types:
INSERT INTO table_compressed SELECT * FROM table_without_compression2;
|
#ERROR 1406 (22001): Data too long for column 'data' at row 1
|
INSERT INTO table_compressed2 SELECT * FROM table_without_compression;
|
#ERROR 1406 (22001): Data too long for column 'data' at row 1
|
—
creating now a LONGBLOB / LONGTEXT
CREATE TABLE table_compressed_long_blob (
|
`id` int(11) NOT NULL DEFAULT 0,
|
`gmtime` decimal(22,7) NOT NULL DEFAULT 0.0000000,
|
`data` LONGBLOB COMPRESSED NOT NULL,
|
PRIMARY KEY (`id`,`gmtime`)
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
#Query OK, 0 rows affected (0.141 sec)
|
|
CREATE TABLE table_compressed_long_text (
|
`id` int(11) NOT NULL DEFAULT 0,
|
`gmtime` decimal(22,7) NOT NULL DEFAULT 0.0000000,
|
`data` LONGTEXT COMPRESSED NOT NULL,
|
PRIMARY KEY (`id`,`gmtime`)
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
#Query OK, 0 rows affected (0.161 sec)
|
|
INSERT INTO table_compressed_long_blob SELECT * FROM table_without_compression2;
|
#Query OK, 1 row affected (0.045 sec) <- NICE!
|
#Records: 1 Duplicates: 0 Warnings: 0
|
|
INSERT INTO table_compressed_long_text SELECT * FROM table_without_compression2;
|
#Query OK, 1 row affected (0.009 sec) <- NICE!
|
#Records: 1 Duplicates: 0 Warnings: 0
|
Possible solutions:
1) Report at Documentation about data sizes,
2) Change code to use a bigger (high order) column type <- preffered, since we have users with "INSERT compressed_table SELECT * FROM same_column_type_structure" queries
—
problem found:
MariaDB [test]> truncate table_without_compression;
|
Query OK, 0 rows affected (0.131 sec)
|
|
MariaDB [test]> INSERT INTO table_without_compression VALUES (1,0,repeat('a',65534));
|
Query OK, 1 row affected (0.039 sec)
|
|
MariaDB [test]> INSERT INTO table_compressed SELECT * FROM table_without_compression;
|
Query OK, 1 row affected (0.044 sec)
|
Records: 1 Duplicates: 0 Warnings: 0
|
at compression source code, we have LENGTH-1 as field size
https://github.com/MariaDB/server/commit/fdc47792354c820aa4a8542d7c00d434424a63fb#diff-06426300d2671c77dd6763db8df79306R3241
maybe solution is here (i don't know the full source):
https://github.com/MariaDB/server/commit/fdc47792354c820aa4a8542d7c00d434424a63fb#diff-06426300d2671c77dd6763db8df79306R3257
instead of:
+ return n < 256 ? 1 : n < 65536 ? 2 : n < 16777216 ? 3 : 4;
use:
+ return n < 256-1 ? 1 : n < 65536-1 ? 2 : n < 16777216-1 ? 3 : 4;
{"report":{"fcp":1520.5,"ttfb":762.9000000953674,"pageVisibility":"visible","entityId":66377,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"0093f4ea-b7b1-4eda-86ce-bf9f1977ddbc","navigationType":0,"readyForUser":1757.6000003814697,"redirectCount":0,"resourceLoadedEnd":1599.8000001907349,"resourceLoadedStart":769.1000003814697,"resourceTiming":[{"duration":39.299999713897705,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":769.1000003814697,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":769.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":808.4000000953674,"responseStart":0,"secureConnectionStart":0},{"duration":49.30000019073486,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/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&whisper-enabled=true","startTime":769.3000001907349,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":769.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":818.6000003814697,"responseStart":0,"secureConnectionStart":0},{"duration":128.2000002861023,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":769.5,"connectEnd":769.5,"connectStart":769.5,"domainLookupEnd":769.5,"domainLookupStart":769.5,"fetchStart":769.5,"redirectEnd":0,"redirectStart":0,"requestStart":769.5,"responseEnd":897.7000002861023,"responseStart":897.7000002861023,"secureConnectionStart":769.5},{"duration":334.19999980926514,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/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&whisper-enabled=true","startTime":769.8000001907349,"connectEnd":769.8000001907349,"connectStart":769.8000001907349,"domainLookupEnd":769.8000001907349,"domainLookupStart":769.8000001907349,"fetchStart":769.8000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":769.8000001907349,"responseEnd":1104,"responseStart":1104,"secureConnectionStart":769.8000001907349},{"duration":340,"initiatorType":"script","name":"https://jira.mariadb.org/s/a9324d6758d385eb45c462685ad88f1d-CDN/lu2cib/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":770,"connectEnd":770,"connectStart":770,"domainLookupEnd":770,"domainLookupStart":770,"fetchStart":770,"redirectEnd":0,"redirectStart":0,"requestStart":770,"responseEnd":1110,"responseStart":1110,"secureConnectionStart":770},{"duration":342.2999997138977,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":770.2000002861023,"connectEnd":770.2000002861023,"connectStart":770.2000002861023,"domainLookupEnd":770.2000002861023,"domainLookupStart":770.2000002861023,"fetchStart":770.2000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":770.2000002861023,"responseEnd":1112.5,"responseStart":1112.4000000953674,"secureConnectionStart":770.2000002861023},{"duration":343.2000002861023,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":770.4000000953674,"connectEnd":770.4000000953674,"connectStart":770.4000000953674,"domainLookupEnd":770.4000000953674,"domainLookupStart":770.4000000953674,"fetchStart":770.4000000953674,"redirectEnd":0,"redirectStart":0,"requestStart":770.4000000953674,"responseEnd":1113.6000003814697,"responseStart":1113.6000003814697,"secureConnectionStart":770.4000000953674},{"duration":352,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2cib/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":770.6000003814697,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":770.6000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1122.6000003814697,"responseStart":0,"secureConnectionStart":0},{"duration":343.40000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":770.8000001907349,"connectEnd":770.8000001907349,"connectStart":770.8000001907349,"domainLookupEnd":770.8000001907349,"domainLookupStart":770.8000001907349,"fetchStart":770.8000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":770.8000001907349,"responseEnd":1114.2000002861023,"responseStart":1114.1000003814697,"secureConnectionStart":770.8000001907349},{"duration":351.80000019073486,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2cib/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":771,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":771,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1122.8000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":343.69999980926514,"initiatorType":"script","name":"https://jira.mariadb.org/s/5d5e8fe91fbc506585e83ea3b62ccc4b-CDN/lu2cib/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":771.1000003814697,"connectEnd":771.1000003814697,"connectStart":771.1000003814697,"domainLookupEnd":771.1000003814697,"domainLookupStart":771.1000003814697,"fetchStart":771.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":771.1000003814697,"responseEnd":1114.8000001907349,"responseStart":1114.8000001907349,"secureConnectionStart":771.1000003814697},{"duration":623.2000002861023,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":782,"connectEnd":782,"connectStart":782,"domainLookupEnd":782,"domainLookupStart":782,"fetchStart":782,"redirectEnd":0,"redirectStart":0,"requestStart":782,"responseEnd":1405.2000002861023,"responseStart":1405.2000002861023,"secureConnectionStart":782},{"duration":770.3000001907349,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":786.3000001907349,"connectEnd":786.3000001907349,"connectStart":786.3000001907349,"domainLookupEnd":786.3000001907349,"domainLookupStart":786.3000001907349,"fetchStart":786.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":786.3000001907349,"responseEnd":1556.6000003814697,"responseStart":1556.6000003814697,"secureConnectionStart":786.3000001907349},{"duration":337.2999997138977,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1067.2000002861023,"connectEnd":1067.2000002861023,"connectStart":1067.2000002861023,"domainLookupEnd":1067.2000002861023,"domainLookupStart":1067.2000002861023,"fetchStart":1067.2000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":1067.2000002861023,"responseEnd":1404.5,"responseStart":1404.5,"secureConnectionStart":1067.2000002861023},{"duration":141.69999980926514,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2cib/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&whisper-enabled=true","startTime":1458.1000003814697,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1458.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1599.8000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":105.59999990463257,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/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&whisper-enabled=true","startTime":1459.1000003814697,"connectEnd":1459.1000003814697,"connectStart":1459.1000003814697,"domainLookupEnd":1459.1000003814697,"domainLookupStart":1459.1000003814697,"fetchStart":1459.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":1459.1000003814697,"responseEnd":1564.7000002861023,"responseStart":1564.7000002861023,"secureConnectionStart":1459.1000003814697},{"duration":130,"initiatorType":"script","name":"https://jira.mariadb.org/s/097ae97cb8fbec7d6ea4bbb1f26955b9-CDN/lu2cib/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&whisper-enabled=true","startTime":1459.4000000953674,"connectEnd":1459.4000000953674,"connectStart":1459.4000000953674,"domainLookupEnd":1459.4000000953674,"domainLookupStart":1459.4000000953674,"fetchStart":1459.4000000953674,"redirectEnd":0,"redirectStart":0,"requestStart":1459.4000000953674,"responseEnd":1589.4000000953674,"responseStart":1589.4000000953674,"secureConnectionStart":1459.4000000953674},{"duration":339.7999997138977,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":1511.1000003814697,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1511.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1850.9000000953674,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":556,"responseStart":763,"responseEnd":780,"domLoading":767,"domInteractive":1882,"domContentLoadedEventStart":1882,"domContentLoadedEventEnd":1945,"domComplete":2832,"loadEventStart":2832,"loadEventEnd":2833,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1862.4000000953674},{"name":"bigPipe.sidebar-id.end","time":1863.3000001907349},{"name":"bigPipe.activity-panel-pipe-id.start","time":1863.5},{"name":"bigPipe.activity-panel-pipe-id.end","time":1865.8000001907349},{"name":"activityTabFullyLoaded","time":2015.6000003814697}],"measures":[],"correlationId":"1b1b164fb5a07d","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":125,"dbReadsTimeInMs":15,"dbConnsTimeInMs":24,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
comment included
https://mariadb.com/kb/en/library/storage-engine-independent-column-compression/
the problem:
VARCHAR(255) have length 255
VARCHAR(255) COMPRESSED have length 255 (but use 2 bytes)
—
disconsider, tested:
CREATE TABLE `v255` (
`l` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `v255c` (
`l` varchar(255) /!100301 COMPRESSED/ DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
MariaDB [test]> insert into v255 values (repeat('a',255));
Query OK, 1 row affected (0.019 sec)
MariaDB [test]> insert into v255c values (repeat('a',255));
Query OK, 1 row affected (0.055 sec)
that's just a problem about documentation and field limit at BLOB types