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)
{"report":{"fcp":825.1000003814697,"ttfb":224.10000038146973,"pageVisibility":"visible","entityId":75930,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":1,"journeyId":"d2ad8881-dba3-455c-a5bf-88512cbc5d78","navigationType":0,"readyForUser":914.5,"redirectCount":0,"resourceLoadedEnd":547.4000005722046,"resourceLoadedStart":231.30000019073486,"resourceTiming":[{"duration":13.600000381469727,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":231.30000019073486,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":231.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":244.9000005722046,"responseStart":0,"secureConnectionStart":0},{"duration":13.699999809265137,"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":231.60000038146973,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":231.60000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":245.30000019073486,"responseStart":0,"secureConnectionStart":0},{"duration":201.19999980926514,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":231.80000019073486,"connectEnd":231.80000019073486,"connectStart":231.80000019073486,"domainLookupEnd":231.80000019073486,"domainLookupStart":231.80000019073486,"fetchStart":231.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":249.5,"responseEnd":433,"responseStart":272.5,"secureConnectionStart":231.80000019073486},{"duration":306,"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":231.9000005722046,"connectEnd":231.9000005722046,"connectStart":231.9000005722046,"domainLookupEnd":231.9000005722046,"domainLookupStart":231.9000005722046,"fetchStart":231.9000005722046,"redirectEnd":0,"redirectStart":0,"requestStart":255.10000038146973,"responseEnd":537.9000005722046,"responseStart":291.30000019073486,"secureConnectionStart":231.9000005722046},{"duration":47.59999942779541,"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":232.10000038146973,"connectEnd":232.10000038146973,"connectStart":232.10000038146973,"domainLookupEnd":232.10000038146973,"domainLookupStart":232.10000038146973,"fetchStart":232.10000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":255.80000019073486,"responseEnd":279.69999980926514,"responseStart":277.5,"secureConnectionStart":232.10000038146973},{"duration":52.5,"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":232.30000019073486,"connectEnd":232.30000019073486,"connectStart":232.30000019073486,"domainLookupEnd":232.30000019073486,"domainLookupStart":232.30000019073486,"fetchStart":232.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":258.5,"responseEnd":284.80000019073486,"responseStart":282,"secureConnectionStart":232.30000019073486},{"duration":52.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":232.5,"connectEnd":232.5,"connectStart":232.5,"domainLookupEnd":232.5,"domainLookupStart":232.5,"fetchStart":232.5,"redirectEnd":0,"redirectStart":0,"requestStart":258.80000019073486,"responseEnd":285,"responseStart":282.80000019073486,"secureConnectionStart":232.5},{"duration":19.100000381469727,"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":232.69999980926514,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":232.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":251.80000019073486,"responseStart":0,"secureConnectionStart":0},{"duration":52.39999961853027,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":232.9000005722046,"connectEnd":232.9000005722046,"connectStart":232.9000005722046,"domainLookupEnd":232.9000005722046,"domainLookupStart":232.9000005722046,"fetchStart":232.9000005722046,"redirectEnd":0,"redirectStart":0,"requestStart":259.19999980926514,"responseEnd":285.30000019073486,"responseStart":283.30000019073486,"secureConnectionStart":232.9000005722046},{"duration":20.800000190734863,"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":233.10000038146973,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":233.10000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":253.9000005722046,"responseStart":0,"secureConnectionStart":0},{"duration":54.60000038146973,"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":233.19999980926514,"connectEnd":233.19999980926514,"connectStart":233.19999980926514,"domainLookupEnd":233.19999980926514,"domainLookupStart":233.19999980926514,"fetchStart":233.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":262.30000019073486,"responseEnd":287.80000019073486,"responseStart":285.69999980926514,"secureConnectionStart":233.19999980926514},{"duration":302.8999996185303,"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":243.9000005722046,"connectEnd":243.9000005722046,"connectStart":243.9000005722046,"domainLookupEnd":243.9000005722046,"domainLookupStart":243.9000005722046,"fetchStart":243.9000005722046,"redirectEnd":0,"redirectStart":0,"requestStart":280.5,"responseEnd":546.8000001907349,"responseStart":544,"secureConnectionStart":243.9000005722046},{"duration":278.6000003814697,"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":268.80000019073486,"connectEnd":268.80000019073486,"connectStart":268.80000019073486,"domainLookupEnd":268.80000019073486,"domainLookupStart":268.80000019073486,"fetchStart":268.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":293.69999980926514,"responseEnd":547.4000005722046,"responseStart":545.3000001907349,"secureConnectionStart":268.80000019073486},{"duration":128.89999961853027,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":582.3000001907349,"connectEnd":582.3000001907349,"connectStart":582.3000001907349,"domainLookupEnd":582.3000001907349,"domainLookupStart":582.3000001907349,"fetchStart":582.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":680.8000001907349,"responseEnd":711.1999998092651,"responseStart":710.5,"secureConnectionStart":582.3000001907349},{"duration":202.60000038146973,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":819,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":819,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1021.6000003814697,"responseStart":0,"secureConnectionStart":0},{"duration":213.5999994277954,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":825.1000003814697,"connectEnd":825.1000003814697,"connectStart":825.1000003814697,"domainLookupEnd":825.1000003814697,"domainLookupStart":825.1000003814697,"fetchStart":825.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":1003.1000003814697,"responseEnd":1038.6999998092651,"responseStart":1037.1000003814697,"secureConnectionStart":825.1000003814697}],"fetchStart":1,"domainLookupStart":1,"domainLookupEnd":1,"connectStart":1,"connectEnd":1,"requestStart":38,"responseStart":224,"responseEnd":269,"domLoading":228,"domInteractive":1024,"domContentLoadedEventStart":1024,"domContentLoadedEventEnd":1080,"domComplete":1398,"loadEventStart":1398,"loadEventEnd":1398,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":995.9000005722046},{"name":"bigPipe.sidebar-id.end","time":996.6999998092651},{"name":"bigPipe.activity-panel-pipe-id.start","time":996.8000001907349},{"name":"bigPipe.activity-panel-pipe-id.end","time":998.8000001907349},{"name":"activityTabFullyLoaded","time":1099.1999998092651}],"measures":[],"correlationId":"6047fa9ebca3c1","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":107,"dbReadsTimeInMs":14,"dbConnsTimeInMs":23,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
According to marko, this part of InnoDB code has not been touched by anyone for a very long time.