use_stat_tables='preferably'
|
optimizer_use_condition_selectivity=4
|
histogram_size=255
|
Thread pointer: 0x0x7f187cf92008
|
Attempting backtrace. You can use the following information to find out
|
where mysqld died. If you see no messages after this, something went
|
terribly wrong...
|
stack_bottom = 0x7f1cb5654d10 thread_stack 0x48000
|
/usr/sbin/mysqld(my_print_stacktrace+0x2b)[0xb7054b]
|
/usr/sbin/mysqld(handle_fatal_signal+0x398)[0x727588]
|
/lib64/libpthread.so.0(+0xf710)[0x7f1cb531a710]
|
/usr/sbin/mysqld(_ZN9Field_bit5storeEPKcjPK15charset_info_st+0x10f)[0x713caf]
|
/usr/sbin/mysqld(_Z28get_column_range_cardinalityP5FieldP12st_key_rangeS2_j+0x135)[0x63f605]
|
/usr/sbin/mysqld(_Z36calculate_cond_selectivity_for_tableP3THDP5TABLEP4Item+0x836)[0x80bd76]
|
/usr/sbin/mysqld[0x528cce]
|
/usr/sbin/mysqld(_ZN4JOIN14optimize_innerEv+0x6de)[0x61c8de]
|
/usr/sbin/mysqld(_Z12mysql_selectP3THDPPP4ItemP10TABLE_LISTjR4ListIS1_ES2_jP8st_orderSB_S2_SB_yP13select_resultP18st_select_lex_unitP13st_select_lex+0xd8)[0x61efb8]
|
/usr/sbin/mysqld(_Z13handle_selectP3THDP3LEXP13select_resultm+0x28d)[0x62284d]
|
/usr/sbin/mysqld[0x5ca456]
|
/usr/sbin/mysqld(_Z21mysql_execute_commandP3THD+0x4c4f)[0x5d51af]
|
/usr/sbin/mysqld[0x5d6cc2]
|
/usr/sbin/mysqld(_Z16dispatch_command19enum_server_commandP3THDPcj+0x1b20)[0x5d8e80]
|
/usr/sbin/mysqld(_Z24do_handle_one_connectionP3THD+0x453)[0x696993]
|
/usr/sbin/mysqld(handle_one_connection+0x42)[0x696a62]
|
/lib64/libpthread.so.0(+0x79d1)[0x7f1cb53129d1]
|
/lib64/libc.so.6(clone+0x6d)[0x7f1cb3a2fb5d]
|
Trying to get some variables.
|
Some pointers may be invalid and cause the dump to abort.
|
Query (0x7f1859c20020): SELECT id, reportName, scheduleName, reportId, reportScheduleId, reportType, status, reportFormat, generationStartTime, executionTime, fileUrl, fileSize, retainUntil, users, userGroups, recurrenceType, recurrenceIntervalType, recurrenceIntervalValue, recurrenceParam1, recurrenceParam2, recurrenceParam3, reportSource, userId, isGloballyViewable, retainLast FROM report_schedule_logs WHERE ((`retainUntil` < 20140912114319) AND (`retainLast` != true))
|
Connection ID (thread ID): 4
|
Status: NOT_KILLED
|
CREATE TABLE `report_schedule_logs` (
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
`reportName` varchar(128) DEFAULT NULL,
|
`scheduleName` varchar(128) DEFAULT NULL,
|
`reportId` varchar(255) DEFAULT NULL,
|
`reportScheduleId` varchar(255) DEFAULT NULL,
|
`reportType` int(10) unsigned DEFAULT NULL,
|
`reportFormat` tinyint(3) unsigned DEFAULT NULL,
|
`generationStartTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
`executionTime` varchar(128) DEFAULT NULL,
|
`reportSource` tinyint(3) unsigned DEFAULT NULL,
|
`status` tinyint(3) unsigned DEFAULT NULL,
|
`fileUrl` varchar(1024) DEFAULT NULL,
|
`fileSize` bigint(20) DEFAULT NULL,
|
`retainUntil` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
|
`retainLast` bit(1) DEFAULT b'0',
|
`users` longblob,
|
`userGroups` longblob,
|
`recurrenceType` tinyint(3) unsigned DEFAULT NULL,
|
`recurrenceIntervalType` tinyint(3) unsigned DEFAULT NULL,
|
`recurrenceIntervalValue` int(11) DEFAULT NULL,
|
`recurrenceParam1` varchar(128) DEFAULT NULL,
|
`recurrenceParam2` varchar(128) DEFAULT NULL,
|
`recurrenceParam3` varchar(128) DEFAULT NULL,
|
`userId` varchar(128) DEFAULT NULL,
|
`isGloballyViewable` bit(1) DEFAULT NULL,
|
PRIMARY KEY (`id`),
|
KEY `report_schedule_logs_idx1` (`status`)
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8
|
explain SELECT id, reportName, scheduleName, reportId, reportScheduleId, reportType, status, reportFormat, generationStartTime, executionTime, fileUrl, fileSize, retainUntil, users, userGroups, recurrenceType, recurrenceIntervalType, recurrenceIntervalValue, recurrenceParam1, recurrenceParam2, recurrenceParam3, reportSource, userId, isGloballyViewable, retainLast FROM report_schedule_logs WHERE ((`retainUntil` < 20140912114319) AND (`retainLast` != true));
|
changing the configuration to default instanlty solve the issue .
show variables like 'optimizer_use_condition_selectivity';
|
+-------------------------------------+-------+
|
| Variable_name | Value |
|
+-------------------------------------+-------+
|
| optimizer_use_condition_selectivity | 4 |
|
+-------------------------------------+-------+
|
1 row in set (0.00 sec)
|
|
MariaDB [sa]> explain SELECT id, reportName, scheduleName, reportId, reportScheduleId, reportType, status, reportFormat, generationStartTime, executionTime, fileUrl, fileSize, retainUntil, users, userGroups, recurrenceType, recurrenceIntervalType, recurrenceIntervalValue, recurrenceParam1, recurrenceParam2, recurrenceParam3, reportSource, userId, isGloballyViewable, retainLast FROM report_schedule_logs WHERE ((`retainUntil` < 20140912114319) AND (`retainLast` != true));
|
ERROR 2013 (HY000): Lost connection to MySQL server during query
|
MariaDB [sa]> show variables like 'optimizer_use_condition_selectivity';ERROR 2006 (HY000): MySQL server has gone awayNo connection. Trying to reconnect...
|
Connection id: 6
|
Current database: sa
|
|
+-------------------------------------+-------+
|
| Variable_name | Value |
|
+-------------------------------------+-------+
|
| optimizer_use_condition_selectivity | 1 |
|
+-------------------------------------+-------+
|
1 row in set (0.46 sec)
|
|
MariaDB [sa]> explain SELECT id, reportName, scheduleName, reportId, reportScheduleId, reportType, status, reportFormat, generationStartTime, executionTime, fileUrl, fileSize, retainUntil, users, userGroups, recurrenceType, recurrenceIntervalType, recurrenceIntervalValue, recurrenceParam1, recurrenceParam2, recurrenceParam3, reportSource, userId, isGloballyViewable, retainLast FROM report_schedule_logs WHERE ((`retainUntil` < 20140912114319) AND (`retainLast` != true));
|
+------+-------------+----------------------+------+---------------+------+---------+------+------+-------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+-------------+----------------------+------+---------------+------+---------+------+------+-------------+
|
| 1 | SIMPLE | report_schedule_logs | ALL | NULL | NULL | NULL | NULL | 1 | Using where |
|
+------+-------------+----------------------+------+---------------+------+---------+------+------+-------------+
|
The context is that our client under support benefit from histograms on some query plan. We activated it but after a process of reseting the data . it started to crash on this query run every 5 minutes. not that after the reset we did no run analyze table but the table was readable and and was empty.
the content of the stats tables because are empty ! due to restart
{"report":{"fcp":1599,"ttfb":423.5,"pageVisibility":"visible","entityId":44435,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"ac8a0b2e-7590-43e2-8d7b-b8f2d22376e1","navigationType":0,"readyForUser":1779.1999998092651,"redirectCount":0,"resourceLoadedEnd":1404.0999999046326,"resourceLoadedStart":429.09999990463257,"resourceTiming":[{"duration":465.09999990463257,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":429.09999990463257,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":429.09999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":894.1999998092651,"responseStart":0,"secureConnectionStart":0},{"duration":465.2999997138977,"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":429.40000009536743,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":429.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":894.6999998092651,"responseStart":0,"secureConnectionStart":0},{"duration":576.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":429.59999990463257,"connectEnd":429.59999990463257,"connectStart":429.59999990463257,"domainLookupEnd":429.59999990463257,"domainLookupStart":429.59999990463257,"fetchStart":429.59999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":897.5,"responseEnd":1006.0999999046326,"responseStart":909.1999998092651,"secureConnectionStart":429.59999990463257},{"duration":846.7000002861023,"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":429.7999997138977,"connectEnd":429.7999997138977,"connectStart":429.7999997138977,"domainLookupEnd":429.7999997138977,"domainLookupStart":429.7999997138977,"fetchStart":429.7999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":898.5,"responseEnd":1276.5,"responseStart":911.7999997138977,"secureConnectionStart":429.7999997138977},{"duration":486.19999980926514,"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":430,"connectEnd":430,"connectStart":430,"domainLookupEnd":430,"domainLookupStart":430,"fetchStart":430,"redirectEnd":0,"redirectStart":0,"requestStart":899.1999998092651,"responseEnd":916.1999998092651,"responseStart":914.2999997138977,"secureConnectionStart":430},{"duration":503.2000002861023,"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":430.19999980926514,"connectEnd":430.19999980926514,"connectStart":430.19999980926514,"domainLookupEnd":430.19999980926514,"domainLookupStart":430.19999980926514,"fetchStart":430.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":900.2999997138977,"responseEnd":933.4000000953674,"responseStart":931.4000000953674,"secureConnectionStart":430.19999980926514},{"duration":503.59999990463257,"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":430.40000009536743,"connectEnd":430.40000009536743,"connectStart":430.40000009536743,"domainLookupEnd":430.40000009536743,"domainLookupStart":430.40000009536743,"fetchStart":430.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":901.1999998092651,"responseEnd":934,"responseStart":932.2999997138977,"secureConnectionStart":430.40000009536743},{"duration":470.30000019073486,"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":430.59999990463257,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":430.59999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":900.9000000953674,"responseStart":0,"secureConnectionStart":0},{"duration":517.6000003814697,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":430.7999997138977,"connectEnd":430.7999997138977,"connectStart":430.7999997138977,"domainLookupEnd":430.7999997138977,"domainLookupStart":430.7999997138977,"fetchStart":430.7999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":903.1999998092651,"responseEnd":948.4000000953674,"responseStart":947.0999999046326,"secureConnectionStart":430.7999997138977},{"duration":470.90000009536743,"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":431,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":431,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":901.9000000953674,"responseStart":0,"secureConnectionStart":0},{"duration":514,"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":431.09999990463257,"connectEnd":431.09999990463257,"connectStart":431.09999990463257,"domainLookupEnd":431.09999990463257,"domainLookupStart":431.09999990463257,"fetchStart":431.09999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":905,"responseEnd":945.0999999046326,"responseStart":936.9000000953674,"secureConnectionStart":431.09999990463257},{"duration":807.9000000953674,"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":437.69999980926514,"connectEnd":437.69999980926514,"connectStart":437.69999980926514,"domainLookupEnd":437.69999980926514,"domainLookupStart":437.69999980926514,"fetchStart":437.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":1145.5,"responseEnd":1245.5999999046326,"responseStart":1242.5,"secureConnectionStart":437.69999980926514},{"duration":966.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":437.7999997138977,"connectEnd":437.7999997138977,"connectStart":437.7999997138977,"domainLookupEnd":437.7999997138977,"domainLookupStart":437.7999997138977,"fetchStart":437.7999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":1389.7999997138977,"responseEnd":1404.0999999046326,"responseStart":1403.4000000953674,"secureConnectionStart":437.7999997138977},{"duration":276.19999980926514,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1165.9000000953674,"connectEnd":1165.9000000953674,"connectStart":1165.9000000953674,"domainLookupEnd":1165.9000000953674,"domainLookupStart":1165.9000000953674,"fetchStart":1165.9000000953674,"redirectEnd":0,"redirectStart":0,"requestStart":1390.7999997138977,"responseEnd":1442.0999999046326,"responseStart":1423.4000000953674,"secureConnectionStart":1165.9000000953674},{"duration":318.7000002861023,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1530.2999997138977,"connectEnd":1530.2999997138977,"connectStart":1530.2999997138977,"domainLookupEnd":1530.2999997138977,"domainLookupStart":1530.2999997138977,"fetchStart":1530.2999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":1816.7999997138977,"responseEnd":1849,"responseStart":1848.4000000953674,"secureConnectionStart":1530.2999997138977},{"duration":362,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":1592.1999998092651,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1592.1999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1954.1999998092651,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":233,"responseStart":424,"responseEnd":434,"domLoading":427,"domInteractive":1883,"domContentLoadedEventStart":1883,"domContentLoadedEventEnd":1950,"domComplete":2491,"loadEventStart":2491,"loadEventEnd":2492,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1842.4000000953674},{"name":"bigPipe.sidebar-id.end","time":1844.5999999046326},{"name":"bigPipe.activity-panel-pipe-id.start","time":1844.9000000953674},{"name":"bigPipe.activity-panel-pipe-id.end","time":1848.7999997138977},{"name":"activityTabFullyLoaded","time":1969.1999998092651}],"measures":[],"correlationId":"46950f880ce23","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":112,"dbReadsTimeInMs":12,"dbConnsTimeInMs":20,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
You are missing ANALYZE TABLE after table creation, so the client wouldn't benefit from histograms even without a crash.
If you add ANALYZE TABLE, the crash is gone.
We have a bug report about a failure without statistics in the stat tables (
MDEV-6442), but there we are getting an assertion failure, and here we have a crash, so I'm assigning it to psergey to either make sure it's the same bug, or to fix it separately.