MariaDB [test]> show status like 'uptime';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Uptime | 119 |
+---------------+-------+
1 row in set (0.00 sec)
MariaDB [test]> show processlist ;
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
| Id | User | Host | db | Command | Time | State | Info | Progress |
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
| 3 | root | localhost:47560 | test | Sleep | 36680651 | | NULL | 0.000 |
| 4 | root | localhost:47561 | test | Query | 94 | init | show processlist | 0.000 |
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
2 rows in set (0.00 sec)
MariaDB [test]> show processlist ;
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
| Id | User | Host | db | Command | Time | State | Info | Progress |
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
| 3 | root | localhost:47560 | test | Sleep | 44551816 | | NULL | 0.000 |
| 4 | root | localhost:47561 | test | Query | 78 | init | show processlist | 0.000 |
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
2 rows in set (0.00 sec)
No need to do anything special, just start the server, open a couple of connections and run show processlist a few times.
The regression was introduced by the following commit:
commit 8f603bcbcac4a9091b6adbca3fd3655a947e759a 2bc6e29afeea374aa0ef4bc36c7a7b649c20d959
Author: Sergey Vojtovich <svoj@mariadb.org>
Date: Wed Jun 17 18:55:38 2015 +0400
MDEV-7952 - clock_gettime() takes 0.24% in OLTP RO
Initialize abs_timeout when it is about to be used. This saves one my_hrtime()
call on hot path (when we acquire MDL lock without waiting).
When filling I_S.PROCESSLIST use THD::start_utime/THD::utime_after_query instead
of THD::start_time. This allows us to save 2 clock_gettime() calls.
Overhead change:
__clock_gettime 0.13% -> 0.11% (122 -> 76 calls per OLTP RO transaction)
my_interval_timer 0.07% -> 0.06%
my_hrtime 0.04% -> 0.01%
Elena Stepanova
made changes -
2015-06-25 20:28
Field
Original Value
New Value
Description
{noformat}
MariaDB [test]> show status like 'uptime';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Uptime | 119 |
+---------------+-------+
1 row in set (0.00 sec)
MariaDB [test]> show processlist ;
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
| Id | User | Host | db | Command | Time | State | Info | Progress |
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
| 3 | root | localhost:47560 | test | Sleep | 36680651 | | NULL | 0.000 |
| 4 | root | localhost:47561 | test | Query | 94 | init | show processlist | 0.000 |
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
2 rows in set (0.00 sec)
MariaDB [test]> show processlist ;
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
| Id | User | Host | db | Command | Time | State | Info | Progress |
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
| 3 | root | localhost:47560 | test | Sleep | 44551816 | | NULL | 0.000 |
| 4 | root | localhost:47561 | test | Query | 78 | init | show processlist | 0.000 |
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
2 rows in set (0.00 sec)
{noformat}
No need to do anything special, just start the server, open a couple of connections and run {{show processlist}} a few times.
10.1 commit 9111ab7127f4e87220ca46a5f845b566c3633d69 (probably earlier).
{noformat}
MariaDB [test]> show status like 'uptime';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Uptime | 119 |
+---------------+-------+
1 row in set (0.00 sec)
MariaDB [test]> show processlist ;
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
| Id | User | Host | db | Command | Time | State | Info | Progress |
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
| 3 | root | localhost:47560 | test | Sleep | 36680651 | | NULL | 0.000 |
| 4 | root | localhost:47561 | test | Query | 94 | init | show processlist | 0.000 |
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
2 rows in set (0.00 sec)
MariaDB [test]> show processlist ;
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
| Id | User | Host | db | Command | Time | State | Info | Progress |
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
| 3 | root | localhost:47560 | test | Sleep | 44551816 | | NULL | 0.000 |
| 4 | root | localhost:47561 | test | Query | 78 | init | show processlist | 0.000 |
+----+------+-----------------+------+---------+----------+-------+------------------+----------+
2 rows in set (0.00 sec)
{noformat}
No need to do anything special, just start the server, open a couple of connections and run {{show processlist}} a few times.
The regression was introduced by the following commit:
{noformat}
commit 8f603bcbcac4a9091b6adbca3fd3655a947e759a 2bc6e29afeea374aa0ef4bc36c7a7b649c20d959
Author: Sergey Vojtovich <svoj@mariadb.org >
Date: Wed Jun 17 18:55:38 2015 +0400
MDEV-7952 - clock_gettime() takes 0.24% in OLTP RO
Initialize abs_timeout when it is about to be used. This saves one my_hrtime()
call on hot path (when we acquire MDL lock without waiting).
When filling I_S.PROCESSLIST use THD::start_utime/THD::utime_after_query instead
of THD::start_time. This allows us to save 2 clock_gettime() calls.
Overhead change:
__clock_gettime 0.13% -> 0.11% (122 -> 76 calls per OLTP RO transaction)
my_interval_timer 0.07% -> 0.06%
my_hrtime 0.04% -> 0.01%
{noformat}
Labels
regression
Sergey Vojtovich
made changes -
2015-06-29 11:17
Remote Link
This issue links to "Github revision (Web Link)"
[ 23901
]
Sergey Vojtovich
made changes -
2015-06-29 11:18
Fix Version/s
10.1.6
[ 19401
]
Fix Version/s
10.1
[ 16100
]
Resolution
Fixed
[ 1
]
Status
Open
[ 1
]
Closed
[ 6
]
Sergei Golubchik
made changes -
2021-12-06 21:41
Workflow
MariaDB v3
[ 70333
]
MariaDB v4
[ 149308
]
{"report":{"fcp":849.1999998092651,"ttfb":245.80000019073486,"pageVisibility":"visible","entityId":51975,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":1,"journeyId":"872315c3-7c58-4fb6-bc7b-64141637a224","navigationType":0,"readyForUser":930.5,"redirectCount":0,"resourceLoadedEnd":1049.8000001907349,"resourceLoadedStart":251.5,"resourceTiming":[{"duration":80.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":251.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":251.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":332,"responseStart":0,"secureConnectionStart":0},{"duration":81,"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":251.80000019073486,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":251.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":332.80000019073486,"responseStart":0,"secureConnectionStart":0},{"duration":134.9000005722046,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":251.89999961853027,"connectEnd":251.89999961853027,"connectStart":251.89999961853027,"domainLookupEnd":251.89999961853027,"domainLookupStart":251.89999961853027,"fetchStart":251.89999961853027,"redirectEnd":0,"redirectStart":0,"requestStart":251.89999961853027,"responseEnd":386.80000019073486,"responseStart":386.80000019073486,"secureConnectionStart":251.89999961853027},{"duration":208.39999961853027,"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":252.10000038146973,"connectEnd":252.10000038146973,"connectStart":252.10000038146973,"domainLookupEnd":252.10000038146973,"domainLookupStart":252.10000038146973,"fetchStart":252.10000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":252.10000038146973,"responseEnd":460.5,"responseStart":460.5,"secureConnectionStart":252.10000038146973},{"duration":212.10000038146973,"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":252.39999961853027,"connectEnd":252.39999961853027,"connectStart":252.39999961853027,"domainLookupEnd":252.39999961853027,"domainLookupStart":252.39999961853027,"fetchStart":252.39999961853027,"redirectEnd":0,"redirectStart":0,"requestStart":252.39999961853027,"responseEnd":464.5,"responseStart":464.5,"secureConnectionStart":252.39999961853027},{"duration":212.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":252.60000038146973,"connectEnd":252.60000038146973,"connectStart":252.60000038146973,"domainLookupEnd":252.60000038146973,"domainLookupStart":252.60000038146973,"fetchStart":252.60000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":252.60000038146973,"responseEnd":465.1000003814697,"responseStart":465.1000003814697,"secureConnectionStart":252.60000038146973},{"duration":212.69999980926514,"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":252.80000019073486,"connectEnd":252.80000019073486,"connectStart":252.80000019073486,"domainLookupEnd":252.80000019073486,"domainLookupStart":252.80000019073486,"fetchStart":252.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":252.80000019073486,"responseEnd":465.5,"responseStart":465.5,"secureConnectionStart":252.80000019073486},{"duration":280,"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":252.89999961853027,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":252.89999961853027,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":532.8999996185303,"responseStart":0,"secureConnectionStart":0},{"duration":213,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":253,"connectEnd":253,"connectStart":253,"domainLookupEnd":253,"domainLookupStart":253,"fetchStart":253,"redirectEnd":0,"redirectStart":0,"requestStart":253,"responseEnd":466,"responseStart":466,"secureConnectionStart":253},{"duration":279.69999980926514,"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":253.30000019073486,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":253.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":533,"responseStart":0,"secureConnectionStart":0},{"duration":215.30000019073486,"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":253.39999961853027,"connectEnd":253.39999961853027,"connectStart":253.39999961853027,"domainLookupEnd":253.39999961853027,"domainLookupStart":253.39999961853027,"fetchStart":253.39999961853027,"redirectEnd":0,"redirectStart":0,"requestStart":253.39999961853027,"responseEnd":468.69999980926514,"responseStart":468.69999980926514,"secureConnectionStart":253.39999961853027},{"duration":764.0999994277954,"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":254.30000019073486,"connectEnd":254.30000019073486,"connectStart":254.30000019073486,"domainLookupEnd":254.30000019073486,"domainLookupStart":254.30000019073486,"fetchStart":254.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":254.30000019073486,"responseEnd":1018.3999996185303,"responseStart":1018.3999996185303,"secureConnectionStart":254.30000019073486},{"duration":791.1000003814697,"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":258.69999980926514,"connectEnd":258.69999980926514,"connectStart":258.69999980926514,"domainLookupEnd":258.69999980926514,"domainLookupStart":258.69999980926514,"fetchStart":258.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":258.69999980926514,"responseEnd":1049.8000001907349,"responseStart":1049.8000001907349,"secureConnectionStart":258.69999980926514},{"duration":473.80000019073486,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":545,"connectEnd":545,"connectStart":545,"domainLookupEnd":545,"domainLookupStart":545,"fetchStart":545,"redirectEnd":0,"redirectStart":0,"requestStart":545,"responseEnd":1018.8000001907349,"responseStart":1018.8000001907349,"secureConnectionStart":545},{"duration":224.5,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":842.8999996185303,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":842.8999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1067.3999996185303,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":73,"responseStart":246,"responseEnd":252,"domLoading":249,"domInteractive":1073,"domContentLoadedEventStart":1073,"domContentLoadedEventEnd":1116,"domComplete":1705,"loadEventStart":1705,"loadEventEnd":1706,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1051.8999996185303},{"name":"bigPipe.sidebar-id.end","time":1052.6999998092651},{"name":"bigPipe.activity-panel-pipe-id.start","time":1053},{"name":"bigPipe.activity-panel-pipe-id.end","time":1054.8000001907349},{"name":"activityTabFullyLoaded","time":1147}],"measures":[],"correlationId":"5c0da0735ca62a","effectiveType":"4g","downlink":9.6,"rtt":0,"serverDuration":105,"dbReadsTimeInMs":15,"dbConnsTimeInMs":22,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}