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":1103.5999999046326,"ttfb":305.2999997138977,"pageVisibility":"visible","entityId":44435,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"a3483ab1-f64e-4dbe-b2ad-15e0f266f195","navigationType":0,"readyForUser":1223.9000000953674,"redirectCount":0,"resourceLoadedEnd":959.5999999046326,"resourceLoadedStart":310.7999997138977,"resourceTiming":[{"duration":294.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":310.7999997138977,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":310.7999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":605.2999997138977,"responseStart":0,"secureConnectionStart":0},{"duration":294.5,"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":311.09999990463257,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":311.09999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":605.5999999046326,"responseStart":0,"secureConnectionStart":0},{"duration":304.1000003814697,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":311.2999997138977,"connectEnd":311.2999997138977,"connectStart":311.2999997138977,"domainLookupEnd":311.2999997138977,"domainLookupStart":311.2999997138977,"fetchStart":311.2999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":311.2999997138977,"responseEnd":615.4000000953674,"responseStart":615.4000000953674,"secureConnectionStart":311.2999997138977},{"duration":391.59999990463257,"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":311.40000009536743,"connectEnd":311.40000009536743,"connectStart":311.40000009536743,"domainLookupEnd":311.40000009536743,"domainLookupStart":311.40000009536743,"fetchStart":311.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":311.40000009536743,"responseEnd":703,"responseStart":703,"secureConnectionStart":311.40000009536743},{"duration":395.5,"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":311.59999990463257,"connectEnd":311.59999990463257,"connectStart":311.59999990463257,"domainLookupEnd":311.59999990463257,"domainLookupStart":311.59999990463257,"fetchStart":311.59999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":311.59999990463257,"responseEnd":707.0999999046326,"responseStart":707.0999999046326,"secureConnectionStart":311.59999990463257},{"duration":395.7999997138977,"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":311.90000009536743,"connectEnd":311.90000009536743,"connectStart":311.90000009536743,"domainLookupEnd":311.90000009536743,"domainLookupStart":311.90000009536743,"fetchStart":311.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":311.90000009536743,"responseEnd":707.6999998092651,"responseStart":707.6999998092651,"secureConnectionStart":311.90000009536743},{"duration":396.5,"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":312.09999990463257,"connectEnd":312.09999990463257,"connectStart":312.09999990463257,"domainLookupEnd":312.09999990463257,"domainLookupStart":312.09999990463257,"fetchStart":312.09999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":312.09999990463257,"responseEnd":708.5999999046326,"responseStart":708.5999999046326,"secureConnectionStart":312.09999990463257},{"duration":453.7000002861023,"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":312.2999997138977,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":312.2999997138977,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":766,"responseStart":0,"secureConnectionStart":0},{"duration":396.8999996185303,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":312.40000009536743,"connectEnd":312.40000009536743,"connectStart":312.40000009536743,"domainLookupEnd":312.40000009536743,"domainLookupStart":312.40000009536743,"fetchStart":312.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":312.40000009536743,"responseEnd":709.2999997138977,"responseStart":709.2999997138977,"secureConnectionStart":312.40000009536743},{"duration":453.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":312.59999990463257,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":312.59999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":766.4000000953674,"responseStart":0,"secureConnectionStart":0},{"duration":397.7000002861023,"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":312.69999980926514,"connectEnd":312.69999980926514,"connectStart":312.69999980926514,"domainLookupEnd":312.69999980926514,"domainLookupStart":312.69999980926514,"fetchStart":312.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":312.69999980926514,"responseEnd":710.4000000953674,"responseStart":710.4000000953674,"secureConnectionStart":312.69999980926514},{"duration":498.80000019073486,"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":319.09999990463257,"connectEnd":319.09999990463257,"connectStart":319.09999990463257,"domainLookupEnd":319.09999990463257,"domainLookupStart":319.09999990463257,"fetchStart":319.09999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":319.09999990463257,"responseEnd":817.9000000953674,"responseStart":817.9000000953674,"secureConnectionStart":319.09999990463257},{"duration":640,"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":319.59999990463257,"connectEnd":319.59999990463257,"connectStart":319.59999990463257,"domainLookupEnd":319.59999990463257,"domainLookupStart":319.59999990463257,"fetchStart":319.59999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":319.59999990463257,"responseEnd":959.5999999046326,"responseStart":959.5999999046326,"secureConnectionStart":319.59999990463257},{"duration":72.90000009536743,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":801.5999999046326,"connectEnd":801.5999999046326,"connectStart":801.5999999046326,"domainLookupEnd":801.5999999046326,"domainLookupStart":801.5999999046326,"fetchStart":801.5999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":801.5999999046326,"responseEnd":874.5,"responseStart":874.5,"secureConnectionStart":801.5999999046326},{"duration":384.2000002861023,"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":1054.1999998092651,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1054.1999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1438.4000000953674,"responseStart":0,"secureConnectionStart":0},{"duration":322.69999980926514,"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":1055.0999999046326,"connectEnd":1055.0999999046326,"connectStart":1055.0999999046326,"domainLookupEnd":1055.0999999046326,"domainLookupStart":1055.0999999046326,"fetchStart":1055.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":1055.0999999046326,"responseEnd":1377.7999997138977,"responseStart":1377.7999997138977,"secureConnectionStart":1055.0999999046326},{"duration":324.90000009536743,"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":1055.5,"connectEnd":1055.5,"connectStart":1055.5,"domainLookupEnd":1055.5,"domainLookupStart":1055.5,"fetchStart":1055.5,"redirectEnd":0,"redirectStart":0,"requestStart":1055.5,"responseEnd":1380.4000000953674,"responseStart":1380.4000000953674,"secureConnectionStart":1055.5},{"duration":348.80000019073486,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":1096.0999999046326,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1096.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1444.9000000953674,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":111,"responseStart":305,"responseEnd":316,"domLoading":308,"domInteractive":1368,"domContentLoadedEventStart":1368,"domContentLoadedEventEnd":1437,"domComplete":1696,"loadEventStart":1696,"loadEventEnd":1697,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1336.2999997138977},{"name":"bigPipe.sidebar-id.end","time":1337.1999998092651},{"name":"bigPipe.activity-panel-pipe-id.start","time":1337.2999997138977},{"name":"bigPipe.activity-panel-pipe-id.end","time":1340.6999998092651},{"name":"activityTabFullyLoaded","time":1459.6999998092651}],"measures":[],"correlationId":"e8211bef57f69d","effectiveType":"4g","downlink":9.7,"rtt":0,"serverDuration":117,"dbReadsTimeInMs":12,"dbConnsTimeInMs":21,"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.