MDEV-33151 Add more columns to TABLE_STATISTICS and USER STATS
Columns added to TABLE_STATISTICS
ROWS_INSERTED, ROWS_DELETED, ROWS_UPDATED, KEY_READ_HITS and
KEY_READ_MISSES.
Columns added to CLIENT_STATISTICS and USER_STATISTICS:
KEY_READ_HITS and KEY_READ_MISSES.
User visible changes (except new columns):
CLIENT_STATISTICS and USER_STATISTICS has columns KEY_READ_HITS and
KEY_READ_MISSES added after column ROWS_UPDATED before SELECT_COMMANDS.
Other changes:
All row variables that are part of user_stats moved to
'struct rows_stats' to make it easy to clear all of them at once.
ha_read_key_misses added to STATUS_VAR
Notes:
userstat.result has a change of handler_read_key. This is because
use-stat-tables is now disabled for the test.
Michael Widenius
added a comment - Commit message:
MDEV-33151 Add more columns to TABLE_STATISTICS and USER STATS
Columns added to TABLE_STATISTICS
ROWS_INSERTED, ROWS_DELETED, ROWS_UPDATED, KEY_READ_HITS and
KEY_READ_MISSES.
Columns added to CLIENT_STATISTICS and USER_STATISTICS:
KEY_READ_HITS and KEY_READ_MISSES.
User visible changes (except new columns):
CLIENT_STATISTICS and USER_STATISTICS has columns KEY_READ_HITS and
KEY_READ_MISSES added after column ROWS_UPDATED before SELECT_COMMANDS.
Other changes:
All row variables that are part of user_stats moved to
'struct rows_stats' to make it easy to clear all of them at once.
ha_read_key_misses added to STATUS_VAR
Notes:
userstat.result has a change of handler_read_key. This is because
use-stat-tables is now disabled for the test.
MDEV-33913 is a simple bug which needs to be fixed, a link to the proposed fix is in a comment.
In regard to KEY_READ_HITS and KEY_READ_MISSES, I find the functionality confusing. First, the counters are located strangely. I would expect that key_read_hits and key_read_misses in their implemented semantics (number of rows the key has found / hasn't found) to make sense for per-index statistics, while for client/user/table it makes more sense to count the number of queries which used or didn't use the index. I'm not sure how much use is in counting total number of key hits/misses per client, without detalisation per index.
Secondly, MDEV-33916 was filed for KEY_READ_MISSES at least in CLIENT/USER statistics not being meaningful .
Further, I find the KEY_READ_HITS results strange even for simple queries, like
MariaDB [test]> createorreplacetable t (a intprimarykey);
Query OK, 0 rows affected (0.901 sec)
MariaDB [test]> insertinto t values (1),(2),(3),(4),(5);
That is, for the first query the hits are "1", for the second query "2". It can probably be justified from the internal implementation perspective, but would be hard to explain to users.
Given the above, I think it would be useful to have the feature reviewed by an optimizer expert (it doesn't look like it was reviewed at all). psergei agreed to do this, so I'm assigning it to him.
Elena Stepanova
added a comment - Current status:
MDEV-33913 is a simple bug which needs to be fixed, a link to the proposed fix is in a comment.
In regard to KEY_READ_HITS and KEY_READ_MISSES , I find the functionality confusing. First, the counters are located strangely. I would expect that key_read_hits and key_read_misses in their implemented semantics (number of rows the key has found / hasn't found) to make sense for per-index statistics, while for client/user/table it makes more sense to count the number of queries which used or didn't use the index. I'm not sure how much use is in counting total number of key hits/misses per client, without detalisation per index.
Secondly, MDEV-33916 was filed for KEY_READ_MISSES at least in CLIENT/USER statistics not being meaningful .
Further, I find the KEY_READ_HITS results strange even for simple queries, like
MariaDB [test]> create or replace table t (a int primary key );
Query OK, 0 rows affected (0.901 sec)
MariaDB [test]> insert into t values (1),(2),(3),(4),(5);
Query OK, 5 rows affected (0.014 sec)
Records: 5 Duplicates: 0 Warnings: 0
MariaDB [test]> flush table_statistics;
Query OK, 0 rows affected (0.001 sec)
MariaDB [test]> select a from t where a > 3;
+ ---+
| a |
+ ---+
| 4 |
| 5 |
+ ---+
2 rows in set (0.001 sec)
MariaDB [test]> show table_statistics \G
*************************** 1. row ***************************
Table_schema: test
Table_name: t
Rows_read: 2
Rows_changed: 0
Rows_changed_x_#indexes: 0
Rows_inserted: 0
Rows_updated: 0
Rows_deleted: 0
Key_read_hits: 1
Key_read_misses: 0
1 row in set (0.001 sec)
MariaDB [test]> select a from t where a in (4,5,6,7);
+ ---+
| a |
+ ---+
| 4 |
| 5 |
+ ---+
2 rows in set (0.001 sec)
MariaDB [test]> show table_statistics \G
*************************** 1. row ***************************
Table_schema: test
Table_name: t
Rows_read: 4
Rows_changed: 0
Rows_changed_x_#indexes: 0
Rows_inserted: 0
Rows_updated: 0
Rows_deleted: 0
Key_read_hits: 3
Key_read_misses: 2
1 row in set (0.001 sec)
That is, for the first query the hits are "1", for the second query "2". It can probably be justified from the internal implementation perspective, but would be hard to explain to users.
Given the above, I think it would be useful to have the feature reviewed by an optimizer expert (it doesn't look like it was reviewed at all). psergei agreed to do this, so I'm assigning it to him.
That is, for the first query the hits are "1", for the second query "2". It can probably be justified from the internal implementation perspective, but would be hard to explain to users.
The query
MariaDB [test]> select a from t where a > 3;
has made one "hit" where it was looking for row with a right after "3".
The row that it has read after this was not counted.
MariaDB [test]> select a from t where a in (4,5,6,7);
Here we found rows with a=4 and a=5 (two hits) and haven't found anything with a=6 and a=7 (two misses)...
I'm still thinking about how one interprets that... KEY_READ_HITS and KEY_READ_MISSES are the lookups that were made into indexes.
Index reads normally are:
1. a lookup which can either find row or not. Lookup is relatively expensive.
2. possibly, reads of one or more subsequent/previous index records. These should be relatively cheaper.
This patch counts #1, it counts both the case when the row is found and when it is not. It looks somewhat incomplete that #2 are not counted...
and I agree that one would expect to see these statistics collected on per-index basis, too.
Another question is: should lookups to find the first / last index records be counted as KEY_READ_HITS... They are also index dives so it would be logical to count them...
Sergei Petrunia
added a comment - - edited That is, for the first query the hits are "1", for the second query "2". It can probably be justified from the internal implementation perspective, but would be hard to explain to users.
The query
MariaDB [test]> select a from t where a > 3;
has made one "hit" where it was looking for row with a right after "3".
The row that it has read after this was not counted.
MariaDB [test]> select a from t where a in (4,5,6,7);
Here we found rows with a=4 and a=5 (two hits) and haven't found anything with a=6 and a=7 (two misses)...
I'm still thinking about how one interprets that...
KEY_READ_HITS and KEY_READ_MISSES are the lookups that were made into indexes.
Index reads normally are:
1. a lookup which can either find row or not. Lookup is relatively expensive.
2. possibly, reads of one or more subsequent/previous index records. These should be relatively cheaper.
This patch counts #1, it counts both the case when the row is found and when it is not. It looks somewhat incomplete that #2 are not counted...
and I agree that one would expect to see these statistics collected on per-index basis, too.
Another question is: should lookups to find the first / last index records be counted as KEY_READ_HITS ... They are also index dives so it would be logical to count them...
Hitting Review Done as the patch does what it says it will do...
I have the following comments (also elaborated above), but it's a matter of opinion whether to consider them to be within the scope of this MDEV or outside:
Should we have a counter like KEY_READ_NEXT to count rows that we read from index in next[_same] and prev[_same] calls?
Should we count index_first()/index_last() as lookups also?
Should we have KEY_READ_HITS/MISSES in INDEX statistics?
Sergei Petrunia
added a comment - Hitting Review Done as the patch does what it says it will do...
I have the following comments (also elaborated above), but it's a matter of opinion whether to consider them to be within the scope of this MDEV or outside:
Should we have a counter like KEY_READ_NEXT to count rows that we read from index in next [_same] and prev [_same] calls?
Should we count index_first()/index_last() as lookups also?
Should we have KEY_READ_HITS/MISSES in INDEX statistics?
People
Sergei Golubchik
Michael Widenius
Votes:
0Vote for this issue
Watchers:
6Start watching this issue
Dates
Created:
Updated:
Resolved:
Git Integration
Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.
{"report":{"fcp":1042,"ttfb":279.7999999523163,"pageVisibility":"visible","entityId":127117,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"ef359fef-e198-422b-bd1f-ad2694f827e0","navigationType":0,"readyForUser":1124.2999999523163,"redirectCount":0,"resourceLoadedEnd":1290.8999998569489,"resourceLoadedStart":326.7999999523163,"resourceTiming":[{"duration":166.39999985694885,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":326.7999999523163,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":326.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":493.19999980926514,"responseStart":0,"secureConnectionStart":0},{"duration":166.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":327.09999990463257,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":327.09999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":493.59999990463257,"responseStart":0,"secureConnectionStart":0},{"duration":176.39999985694885,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":327.2999999523163,"connectEnd":327.2999999523163,"connectStart":327.2999999523163,"domainLookupEnd":327.2999999523163,"domainLookupStart":327.2999999523163,"fetchStart":327.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":327.2999999523163,"responseEnd":503.69999980926514,"responseStart":503.69999980926514,"secureConnectionStart":327.2999999523163},{"duration":222.79999995231628,"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":327.5,"connectEnd":327.5,"connectStart":327.5,"domainLookupEnd":327.5,"domainLookupStart":327.5,"fetchStart":327.5,"redirectEnd":0,"redirectStart":0,"requestStart":327.5,"responseEnd":550.2999999523163,"responseStart":550.2999999523163,"secureConnectionStart":327.5},{"duration":226.79999995231628,"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":327.7999999523163,"connectEnd":327.7999999523163,"connectStart":327.7999999523163,"domainLookupEnd":327.7999999523163,"domainLookupStart":327.7999999523163,"fetchStart":327.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":327.7999999523163,"responseEnd":554.5999999046326,"responseStart":554.5999999046326,"secureConnectionStart":327.7999999523163},{"duration":227.29999995231628,"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":327.89999985694885,"connectEnd":327.89999985694885,"connectStart":327.89999985694885,"domainLookupEnd":327.89999985694885,"domainLookupStart":327.89999985694885,"fetchStart":327.89999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":327.89999985694885,"responseEnd":555.1999998092651,"responseStart":555.1999998092651,"secureConnectionStart":327.89999985694885},{"duration":227.40000009536743,"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":328.19999980926514,"connectEnd":328.19999980926514,"connectStart":328.19999980926514,"domainLookupEnd":328.19999980926514,"domainLookupStart":328.19999980926514,"fetchStart":328.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":328.19999980926514,"responseEnd":555.5999999046326,"responseStart":555.5999999046326,"secureConnectionStart":328.19999980926514},{"duration":326.7000000476837,"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":328.39999985694885,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":328.39999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":655.0999999046326,"responseStart":0,"secureConnectionStart":0},{"duration":227.5,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":328.59999990463257,"connectEnd":328.59999990463257,"connectStart":328.59999990463257,"domainLookupEnd":328.59999990463257,"domainLookupStart":328.59999990463257,"fetchStart":328.59999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":328.59999990463257,"responseEnd":556.0999999046326,"responseStart":556.0999999046326,"secureConnectionStart":328.59999990463257},{"duration":326.7000000476837,"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":328.69999980926514,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":328.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":655.3999998569489,"responseStart":0,"secureConnectionStart":0},{"duration":227.90000009536743,"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":328.89999985694885,"connectEnd":328.89999985694885,"connectStart":328.89999985694885,"domainLookupEnd":328.89999985694885,"domainLookupStart":328.89999985694885,"fetchStart":328.89999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":328.89999985694885,"responseEnd":556.7999999523163,"responseStart":556.7999999523163,"secureConnectionStart":328.89999985694885},{"duration":458.5,"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":330.19999980926514,"connectEnd":330.19999980926514,"connectStart":330.19999980926514,"domainLookupEnd":330.19999980926514,"domainLookupStart":330.19999980926514,"fetchStart":330.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":330.19999980926514,"responseEnd":788.6999998092651,"responseStart":788.6999998092651,"secureConnectionStart":330.19999980926514},{"duration":960.7000000476837,"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":330.19999980926514,"connectEnd":330.19999980926514,"connectStart":330.19999980926514,"domainLookupEnd":330.19999980926514,"domainLookupStart":330.19999980926514,"fetchStart":330.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":330.19999980926514,"responseEnd":1290.8999998569489,"responseStart":1290.8999998569489,"secureConnectionStart":330.19999980926514},{"duration":119.5,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":670,"connectEnd":670,"connectStart":670,"domainLookupEnd":670,"domainLookupStart":670,"fetchStart":670,"redirectEnd":0,"redirectStart":0,"requestStart":670,"responseEnd":789.5,"responseStart":789.5,"secureConnectionStart":670}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":106,"responseStart":279,"responseEnd":287,"domLoading":323,"domInteractive":1328,"domContentLoadedEventStart":1328,"domContentLoadedEventEnd":1380,"domComplete":2180,"loadEventStart":2181,"loadEventEnd":2181,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1293.6999998092651},{"name":"bigPipe.sidebar-id.end","time":1294.5999999046326},{"name":"bigPipe.activity-panel-pipe-id.start","time":1294.8999998569489},{"name":"bigPipe.activity-panel-pipe-id.end","time":1298.5999999046326},{"name":"activityTabFullyLoaded","time":1398}],"measures":[],"correlationId":"75f5e0400d0a9d","effectiveType":"4g","downlink":9.2,"rtt":0,"serverDuration":118,"dbReadsTimeInMs":21,"dbConnsTimeInMs":30,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
Commit message:
MDEV-33151Add more columns to TABLE_STATISTICS and USER STATSColumns added to TABLE_STATISTICS
KEY_READ_MISSES.
Columns added to CLIENT_STATISTICS and USER_STATISTICS:
User visible changes (except new columns):
KEY_READ_MISSES added after column ROWS_UPDATED before SELECT_COMMANDS.
Other changes:
'struct rows_stats' to make it easy to clear all of them at once.
Notes:
use-stat-tables is now disabled for the test.