InnoDB's records_in_range estimates seem to be capped at ~50% of the table. (We used to observe this on various occasions before but I haven't been able to find an MDEV for this).
If I pass a range that contains a bigger fraction of the table, the estimated number of rows is still around 50% of the total rows in the table.
Test dataset:
create table ten(a int);
|
insert into ten values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
|
|
create table one_k(a int);
|
insert into one_k select A.a + B.a* 10 + C.a * 100 from ten A, ten B, ten C;
|
|
create table t1 (
|
a int,
|
b varchar(32),
|
c int,
|
key(a),
|
key(b)
|
) engine=innodb;
|
# 100K NULLs
|
insert into t1 select
|
null,
|
null,
|
A.a + 1000*B.a
|
from
|
one_k A,
|
one_k B
|
where
|
B.a<100;
|
|
# 900 K non-NULLs
|
insert into t1 select
|
A.a + 1000*B.a,
|
A.a + 1000*B.a,
|
A.a + 1000*B.a
|
from
|
one_k A,
|
one_k B
|
where
|
B.a>=100;
|
Now, both a IS NOT NULL or b IS NOT NULL match 900K rows (90% of the table).
But EXPLAIN will show the estimates of about 500K rows, which is 50% of the table:
explain select * from t1 force index (a) where a is not null ;
|
+------+-------------+-------+-------+---------------+------+---------+------+--------+-----------------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+-------------+-------+-------+---------------+------+---------+------+--------+-----------------------+
|
| 1 | SIMPLE | t1 | range | a | a | 5 | NULL | 494308 | Using index condition |
|
+------+-------------+-------+-------+---------------+------+---------+------+--------+-----------------------+
|
explain select * from t1 force index (b) where b is not null ;
|
+------+-------------+-------+-------+---------------+------+---------+------+--------+-----------------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+-------------+-------+-------+---------------+------+---------+------+--------+-----------------------+
|
| 1 | SIMPLE | t1 | range | b | b | 35 | NULL | 494308 | Using index condition |
|
+------+-------------+-------+-------+---------------+------+---------+------+--------+-----------------------+
|
When the optimizer was simple, this property was not a problem.
A simple optimizer would only use range estimates to construct range access. Range access is cheaper than full table if it covers about 30% of the table. Returning 50% of the table instead of 90% was not an issue.
A more advanced optimizer also attempts to use range estimates for condition selectivity, etc. Here, returning 50% selectivity instead of 90% is a problem. (One must take into account that selectivity is computed for multiple indexes. For example, for 5 indexes 0.5^2= 1/32 . 32x under-estimation of selectivity)
Transition |
Time In Source Status |
Execution Times |
Open |
|
Closed |
|
2070d 4h 43m
|
1
|
{"report":{"fcp":1606.0999999046326,"ttfb":535.1999998092651,"pageVisibility":"visible","entityId":75930,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":32,"apdex":0.5,"journeyId":"870a90da-7817-4dcb-a6b5-453c1731a1ca","navigationType":0,"readyForUser":1728.8999998569489,"redirectCount":0,"resourceLoadedEnd":2042,"resourceLoadedStart":540.1999998092651,"resourceTiming":[{"duration":460.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":540.1999998092651,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":540.1999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1000.6999998092651,"responseStart":0,"secureConnectionStart":0},{"duration":460.59999990463257,"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":540.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":540.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1001.0999999046326,"responseStart":0,"secureConnectionStart":0},{"duration":482.10000014305115,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":540.6999998092651,"connectEnd":540.6999998092651,"connectStart":540.6999998092651,"domainLookupEnd":540.6999998092651,"domainLookupStart":540.6999998092651,"fetchStart":540.6999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":540.6999998092651,"responseEnd":1022.7999999523163,"responseStart":1022.7999999523163,"secureConnectionStart":540.6999998092651},{"duration":576,"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":540.8999998569489,"connectEnd":540.8999998569489,"connectStart":540.8999998569489,"domainLookupEnd":540.8999998569489,"domainLookupStart":540.8999998569489,"fetchStart":540.8999998569489,"redirectEnd":0,"redirectStart":0,"requestStart":540.8999998569489,"responseEnd":1116.8999998569489,"responseStart":1116.8999998569489,"secureConnectionStart":540.8999998569489},{"duration":581,"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":541.0999999046326,"connectEnd":541.0999999046326,"connectStart":541.0999999046326,"domainLookupEnd":541.0999999046326,"domainLookupStart":541.0999999046326,"fetchStart":541.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":541.0999999046326,"responseEnd":1122.0999999046326,"responseStart":1122.0999999046326,"secureConnectionStart":541.0999999046326},{"duration":581.2999999523163,"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":541.2999999523163,"connectEnd":541.2999999523163,"connectStart":541.2999999523163,"domainLookupEnd":541.2999999523163,"domainLookupStart":541.2999999523163,"fetchStart":541.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":541.2999999523163,"responseEnd":1122.5999999046326,"responseStart":1122.5999999046326,"secureConnectionStart":541.2999999523163},{"duration":581.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":541.5,"connectEnd":541.5,"connectStart":541.5,"domainLookupEnd":541.5,"domainLookupStart":541.5,"fetchStart":541.5,"redirectEnd":0,"redirectStart":0,"requestStart":541.5,"responseEnd":1123,"responseStart":1123,"secureConnectionStart":541.5},{"duration":659.1000001430511,"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":541.6999998092651,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":541.6999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1200.7999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":581.8999998569489,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":541.7999999523163,"connectEnd":541.7999999523163,"connectStart":541.7999999523163,"domainLookupEnd":541.7999999523163,"domainLookupStart":541.7999999523163,"fetchStart":541.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":541.7999999523163,"responseEnd":1123.6999998092651,"responseStart":1123.5999999046326,"secureConnectionStart":541.7999999523163},{"duration":659.1999998092651,"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":542,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":542,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1201.1999998092651,"responseStart":0,"secureConnectionStart":0},{"duration":582.3000001907349,"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":542.1999998092651,"connectEnd":542.1999998092651,"connectStart":542.1999998092651,"domainLookupEnd":542.1999998092651,"domainLookupStart":542.1999998092651,"fetchStart":542.1999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":542.1999998092651,"responseEnd":1124.5,"responseStart":1124.5,"secureConnectionStart":542.1999998092651},{"duration":803.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":555.3999998569489,"connectEnd":555.3999998569489,"connectStart":555.3999998569489,"domainLookupEnd":555.3999998569489,"domainLookupStart":555.3999998569489,"fetchStart":555.3999998569489,"redirectEnd":0,"redirectStart":0,"requestStart":555.3999998569489,"responseEnd":1359.2999999523163,"responseStart":1359.2999999523163,"secureConnectionStart":555.3999998569489},{"duration":1467.3999998569489,"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":555.5,"connectEnd":555.5,"connectStart":555.5,"domainLookupEnd":555.5,"domainLookupStart":555.5,"fetchStart":555.5,"redirectEnd":0,"redirectStart":0,"requestStart":555.5,"responseEnd":2022.8999998569489,"responseStart":2022.8999998569489,"secureConnectionStart":555.5},{"duration":125.40000009536743,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1257.5999999046326,"connectEnd":1257.5999999046326,"connectStart":1257.5999999046326,"domainLookupEnd":1257.5999999046326,"domainLookupStart":1257.5999999046326,"fetchStart":1257.5999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":1257.5999999046326,"responseEnd":1383,"responseStart":1383,"secureConnectionStart":1257.5999999046326},{"duration":504.5,"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":1525.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1525.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":2030,"responseStart":0,"secureConnectionStart":0},{"duration":507.7000000476837,"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":1527.7999999523163,"connectEnd":1527.7999999523163,"connectStart":1527.7999999523163,"domainLookupEnd":1527.7999999523163,"domainLookupStart":1527.7999999523163,"fetchStart":1527.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":1527.7999999523163,"responseEnd":2035.5,"responseStart":2035.5,"secureConnectionStart":1527.7999999523163},{"duration":513.7000000476837,"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":1528.2999999523163,"connectEnd":1528.2999999523163,"connectStart":1528.2999999523163,"domainLookupEnd":1528.2999999523163,"domainLookupStart":1528.2999999523163,"fetchStart":1528.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":1528.2999999523163,"responseEnd":2042,"responseStart":2042,"secureConnectionStart":1528.2999999523163}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":360,"responseStart":535,"responseEnd":550,"domLoading":539,"domInteractive":2073,"domContentLoadedEventStart":2073,"domContentLoadedEventEnd":2147,"domComplete":2893,"loadEventStart":2894,"loadEventEnd":2894,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":2033.6999998092651},{"name":"bigPipe.sidebar-id.end","time":2034.5},{"name":"bigPipe.activity-panel-pipe-id.start","time":2034.6999998092651},{"name":"bigPipe.activity-panel-pipe-id.end","time":2035.5},{"name":"activityTabFullyLoaded","time":2163.699999809265}],"measures":[],"correlationId":"aaf37390ae8bc6","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":108,"dbReadsTimeInMs":22,"dbConnsTimeInMs":31,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}