analyze table hostname_max
|
|
explain SELECT DISTINCT `hostname_max` FROM `global_query_review_history`;
|
+------+-------------+-----------------------------+-------+---------------+--------------+---------+------+---------+-------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+-------------+-----------------------------+-------+---------------+--------------+---------+------+---------+-------------+
|
| 1 | SIMPLE | global_query_review_history | index | NULL | hostname_max | 218 | NULL | 3167247 | Using index |
|
+------+-------------+-----------------------------+-------+---------------+--------------+---------+------+---------+-------------+
|
1 row in set (0.01 sec)
|
work around is :
create index hostname_max1 on global_query_review_history (hostname_max);
|
[11/14/14 4:19:25 PM] Nicolas Payart: slow_query_log=# explain SELECT DISTINCT `hostname_max` FROM `global_query_review_history`;
|
+------+-------------+-----------------------------+-------+---------------+---------------+---------+------+------+--------------------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+-------------+-----------------------------+-------+---------------+---------------+---------+------+------+--------------------------+
|
| 1 | SIMPLE | global_query_review_history | range | NULL | hostname_max1 | 194 | NULL | 27 | Using index for group-by |
|
+------+-------------+-----------------------------+-------+---------------+---------------+---------+------+------+--------------------------+
|
1 row in set (0.00 sec)
|
was ok on MySQL 5.6 (without index hostname_max1)
slow_query_log=# show table status like 'global_query_review_history'\G
|
*************************** 1. row ***************************
|
Name: global_query_review_history
|
Engine: InnoDB
|
Version: 10
|
Row_format: Compact
|
Rows: 3167374
|
Avg_row_length: 1091
|
Data_length: 3458203648
|
Max_data_length: 0
|
Index_length: 335953920
|
Data_free: 17825792
|
Auto_increment: NULL
|
Create_time: 2014-11-14 16:18:52
|
Update_time: NULL
|
Check_time: NULL
|
Collation: utf8_general_ci
|
Checksum: NULL
|
Create_options:
|
Comment:
|
1 row in set (0.00 sec)
|
CREATE TABLE `global_query_review_history` (
|
`hostname_max` varchar(64) NOT NULL,
|
`db_max` varchar(64) DEFAULT NULL,
|
`checksum` bigint(20) unsigned NOT NULL,
|
`sample` longtext NOT NULL,
|
`ts_min` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
`ts_max` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
`ts_cnt` float DEFAULT NULL,
|
`Query_time_sum` float DEFAULT NULL,
|
`Query_time_min` float DEFAULT NULL,
|
`Query_time_max` float DEFAULT NULL,
|
`Query_time_pct_95` float DEFAULT NULL,
|
`Query_time_stddev` float DEFAULT NULL,
|
`Query_time_median` float DEFAULT NULL,
|
`Lock_time_sum` float DEFAULT NULL,
|
`Lock_time_min` float DEFAULT NULL,
|
`Lock_time_max` float DEFAULT NULL,
|
`Lock_time_pct_95` float DEFAULT NULL,
|
`Lock_time_stddev` float DEFAULT NULL,
|
`Lock_time_median` float DEFAULT NULL,
|
`Rows_sent_sum` float DEFAULT NULL,
|
`Rows_sent_min` float DEFAULT NULL,
|
`Rows_sent_max` float DEFAULT NULL,
|
`Rows_sent_pct_95` float DEFAULT NULL,
|
`Rows_sent_stddev` float DEFAULT NULL,
|
`Rows_sent_median` float DEFAULT NULL,
|
`Rows_examined_sum` float DEFAULT NULL,
|
`Rows_examined_min` float DEFAULT NULL,
|
`Rows_examined_max` float DEFAULT NULL,
|
`Rows_examined_pct_95` float DEFAULT NULL,
|
`Rows_examined_stddev` float DEFAULT NULL,
|
`Rows_examined_median` float DEFAULT NULL,
|
`Rows_affected_sum` float DEFAULT NULL,
|
`Rows_affected_min` float DEFAULT NULL,
|
`Rows_affected_max` float DEFAULT NULL,
|
`Rows_affected_pct_95` float DEFAULT NULL,
|
`Rows_affected_stddev` float DEFAULT NULL,
|
`Rows_affected_median` float DEFAULT NULL,
|
`Rows_read_sum` float DEFAULT NULL,
|
`Rows_read_min` float DEFAULT NULL,
|
`Rows_read_max` float DEFAULT NULL,
|
`Rows_read_pct_95` float DEFAULT NULL,
|
`Rows_read_stddev` float DEFAULT NULL,
|
`Rows_read_median` float DEFAULT NULL,
|
`Merge_passes_sum` float DEFAULT NULL,
|
`Merge_passes_min` float DEFAULT NULL,
|
`Merge_passes_max` float DEFAULT NULL,
|
`Merge_passes_pct_95` float DEFAULT NULL,
|
`Merge_passes_stddev` float DEFAULT NULL,
|
`Merge_passes_median` float DEFAULT NULL,
|
`InnoDB_IO_r_ops_min` float DEFAULT NULL,
|
`InnoDB_IO_r_ops_max` float DEFAULT NULL,
|
`InnoDB_IO_r_ops_pct_95` float DEFAULT NULL,
|
`InnoDB_IO_r_bytes_pct_95` float DEFAULT NULL,
|
`InnoDB_IO_r_bytes_stddev` float DEFAULT NULL,
|
`InnoDB_IO_r_bytes_median` float DEFAULT NULL,
|
`InnoDB_IO_r_wait_min` float DEFAULT NULL,
|
`InnoDB_IO_r_wait_max` float DEFAULT NULL,
|
`InnoDB_IO_r_wait_pct_95` float DEFAULT NULL,
|
`InnoDB_IO_r_ops_stddev` float DEFAULT NULL,
|
`InnoDB_IO_r_ops_median` float DEFAULT NULL,
|
`InnoDB_IO_r_bytes_min` float DEFAULT NULL,
|
`InnoDB_IO_r_bytes_max` float DEFAULT NULL,
|
`InnoDB_IO_r_wait_stddev` float DEFAULT NULL,
|
`InnoDB_IO_r_wait_median` float DEFAULT NULL,
|
`InnoDB_rec_lock_wait_min` float DEFAULT NULL,
|
`InnoDB_rec_lock_wait_max` float DEFAULT NULL,
|
`InnoDB_rec_lock_wait_pct_95` float DEFAULT NULL,
|
`InnoDB_rec_lock_wait_stddev` float DEFAULT NULL,
|
`InnoDB_rec_lock_wait_median` float DEFAULT NULL,
|
`InnoDB_queue_wait_min` float DEFAULT NULL,
|
`InnoDB_queue_wait_max` float DEFAULT NULL,
|
`InnoDB_queue_wait_pct_95` float DEFAULT NULL,
|
`InnoDB_queue_wait_stddev` float DEFAULT NULL,
|
`InnoDB_queue_wait_median` float DEFAULT NULL,
|
`InnoDB_pages_distinct_min` float DEFAULT NULL,
|
`InnoDB_pages_distinct_max` float DEFAULT NULL,
|
`InnoDB_pages_distinct_pct_95` float DEFAULT NULL,
|
`InnoDB_pages_distinct_stddev` float DEFAULT NULL,
|
`InnoDB_pages_distinct_median` float DEFAULT NULL,
|
`QC_Hit_cnt` float DEFAULT NULL,
|
`QC_Hit_sum` float DEFAULT NULL,
|
`Full_scan_cnt` float DEFAULT NULL,
|
`Full_scan_sum` float DEFAULT NULL,
|
`Full_join_cnt` float DEFAULT NULL,
|
`Full_join_sum` float DEFAULT NULL,
|
`Tmp_table_cnt` float DEFAULT NULL,
|
`Tmp_table_sum` float DEFAULT NULL,
|
`Filesort_cnt` float DEFAULT NULL,
|
`Filesort_sum` float DEFAULT NULL,
|
`Tmp_table_on_disk_cnt` float DEFAULT NULL,
|
`Tmp_table_on_disk_sum` float DEFAULT NULL,
|
`Filesort_on_disk_cnt` float DEFAULT NULL,
|
`Filesort_on_disk_sum` float DEFAULT NULL,
|
`Bytes_sum` float DEFAULT NULL,
|
`Bytes_min` float DEFAULT NULL,
|
`Bytes_max` float DEFAULT NULL,
|
`Bytes_pct_95` float DEFAULT NULL,
|
`Bytes_stddev` float DEFAULT NULL,
|
`Bytes_median` float DEFAULT NULL,
|
UNIQUE KEY `hostname_max` (`hostname_max`,`checksum`,`ts_min`,`ts_max`),
|
KEY `ts_min` (`ts_min`),
|
KEY `checksum` (`checksum`)
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8
|
|
Please backport MDEV-6657 as soon as possible in 10.0
- relates to
-
MDEV-4120
UNIQUE indexes should not be considered for loose index scan
-
-
Closed
{"report":{"fcp":993.8999999761581,"ttfb":307.7000000476837,"pageVisibility":"visible","entityId":48862,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"0d619a5b-ce05-4d23-8ca7-3e27d9893596","navigationType":0,"readyForUser":1097.2000000476837,"redirectCount":0,"resourceLoadedEnd":1126.6000000238419,"resourceLoadedStart":314.10000002384186,"resourceTiming":[{"duration":100.60000002384186,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2bu7/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":314.10000002384186,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":314.10000002384186,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":414.7000000476837,"responseStart":0,"secureConnectionStart":0},{"duration":100.89999997615814,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2bu7/820016/12ta74/8679b4946efa1a0bb029a3a22206fb5d/_/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","startTime":314.39999997615814,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":314.39999997615814,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":415.2999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":170.60000002384186,"initiatorType":"script","name":"https://jira.mariadb.org/s/fbf975c0cce4b1abf04784eeae9ba1f4-CDN/lu2bu7/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":314.5,"connectEnd":314.5,"connectStart":314.5,"domainLookupEnd":314.5,"domainLookupStart":314.5,"fetchStart":314.5,"redirectEnd":0,"redirectStart":0,"requestStart":314.5,"responseEnd":485.10000002384186,"responseStart":485.10000002384186,"secureConnectionStart":314.5},{"duration":257.7999999523163,"initiatorType":"script","name":"https://jira.mariadb.org/s/099b33461394b8015fc36c0a4b96e19f-CDN/lu2bu7/820016/12ta74/8679b4946efa1a0bb029a3a22206fb5d/_/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","startTime":314.7000000476837,"connectEnd":314.7000000476837,"connectStart":314.7000000476837,"domainLookupEnd":314.7000000476837,"domainLookupStart":314.7000000476837,"fetchStart":314.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":314.7000000476837,"responseEnd":572.5,"responseStart":572.5,"secureConnectionStart":314.7000000476837},{"duration":261.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/94c15bff32baef80f4096a08aceae8bc-CDN/lu2bu7/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":314.89999997615814,"connectEnd":314.89999997615814,"connectStart":314.89999997615814,"domainLookupEnd":314.89999997615814,"domainLookupStart":314.89999997615814,"fetchStart":314.89999997615814,"redirectEnd":0,"redirectStart":0,"requestStart":314.89999997615814,"responseEnd":576.3999999761581,"responseStart":576.3999999761581,"secureConnectionStart":314.89999997615814},{"duration":261.89999997615814,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":315.10000002384186,"connectEnd":315.10000002384186,"connectStart":315.10000002384186,"domainLookupEnd":315.10000002384186,"domainLookupStart":315.10000002384186,"fetchStart":315.10000002384186,"redirectEnd":0,"redirectStart":0,"requestStart":315.10000002384186,"responseEnd":577,"responseStart":577,"secureConnectionStart":315.10000002384186},{"duration":262.10000002384186,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":315.2999999523163,"connectEnd":315.2999999523163,"connectStart":315.2999999523163,"domainLookupEnd":315.2999999523163,"domainLookupStart":315.2999999523163,"fetchStart":315.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":315.2999999523163,"responseEnd":577.3999999761581,"responseStart":577.3999999761581,"secureConnectionStart":315.2999999523163},{"duration":311.7999999523163,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2bu7/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":315.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":315.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":627.2999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":262.1999999284744,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":315.60000002384186,"connectEnd":315.60000002384186,"connectStart":315.60000002384186,"domainLookupEnd":315.60000002384186,"domainLookupStart":315.60000002384186,"fetchStart":315.60000002384186,"redirectEnd":0,"redirectStart":0,"requestStart":315.60000002384186,"responseEnd":577.7999999523163,"responseStart":577.7999999523163,"secureConnectionStart":315.60000002384186},{"duration":311.7000000476837,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2bu7/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":315.7999999523163,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":315.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":627.5,"responseStart":0,"secureConnectionStart":0},{"duration":262.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/3339d87fa2538a859872f2df449bf8d0-CDN/lu2bu7/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":315.89999997615814,"connectEnd":315.89999997615814,"connectStart":315.89999997615814,"domainLookupEnd":315.89999997615814,"domainLookupStart":315.89999997615814,"fetchStart":315.89999997615814,"redirectEnd":0,"redirectStart":0,"requestStart":315.89999997615814,"responseEnd":578.3999999761581,"responseStart":578.3999999761581,"secureConnectionStart":315.89999997615814},{"duration":440,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":316.7999999523163,"connectEnd":316.7999999523163,"connectStart":316.7999999523163,"domainLookupEnd":316.7999999523163,"domainLookupStart":316.7999999523163,"fetchStart":316.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":316.7999999523163,"responseEnd":756.7999999523163,"responseStart":756.7999999523163,"secureConnectionStart":316.7999999523163},{"duration":625.2000000476837,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":322.2999999523163,"connectEnd":322.2999999523163,"connectStart":322.2999999523163,"domainLookupEnd":322.2999999523163,"domainLookupStart":322.2999999523163,"fetchStart":322.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":322.2999999523163,"responseEnd":947.5,"responseStart":947.3999999761581,"secureConnectionStart":322.2999999523163},{"duration":117.60000002384186,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":639.5,"connectEnd":639.5,"connectStart":639.5,"domainLookupEnd":639.5,"domainLookupStart":639.5,"fetchStart":639.5,"redirectEnd":0,"redirectStart":0,"requestStart":639.5,"responseEnd":757.1000000238419,"responseStart":757.1000000238419,"secureConnectionStart":639.5},{"duration":91.70000004768372,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2bu7/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","startTime":896.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":896.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":988.2000000476837,"responseStart":0,"secureConnectionStart":0},{"duration":91.39999997615814,"initiatorType":"link","name":"https://jira.mariadb.org/s/50bc9be5bfead1a25e72c1a9338c94f6-CDN/lu2bu7/820016/12ta74/e108c7645258ccb43280ed3404e3e949/_/download/contextbatch/css/com.atlassian.jira.plugins.jira-development-integration-plugin:0,-_super,-jira.view.issue,-jira.global,-jira.general,-jira.browse.project,-project.issue.navigator,-atl.general/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true","startTime":897,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":897,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":988.3999999761581,"responseStart":0,"secureConnectionStart":0},{"duration":221.10000002384186,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/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","startTime":897.7999999523163,"connectEnd":897.7999999523163,"connectStart":897.7999999523163,"domainLookupEnd":897.7999999523163,"domainLookupStart":897.7999999523163,"fetchStart":897.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":897.7999999523163,"responseEnd":1118.8999999761581,"responseStart":1118.8999999761581,"secureConnectionStart":897.7999999523163},{"duration":227,"initiatorType":"script","name":"https://jira.mariadb.org/s/f51ef5507eea4c158f257c66c93b2a3f-CDN/lu2bu7/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","startTime":898.2000000476837,"connectEnd":898.2000000476837,"connectStart":898.2000000476837,"domainLookupEnd":898.2000000476837,"domainLookupStart":898.2000000476837,"fetchStart":898.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":898.2000000476837,"responseEnd":1125.2000000476837,"responseStart":1125.2000000476837,"secureConnectionStart":898.2000000476837},{"duration":228.10000002384186,"initiatorType":"script","name":"https://jira.mariadb.org/s/86ee9bbc76cd1bcd8556fcdcf46241c9-CDN/lu2bu7/820016/12ta74/e108c7645258ccb43280ed3404e3e949/_/download/contextbatch/js/com.atlassian.jira.plugins.jira-development-integration-plugin:0,-_super,-jira.view.issue,-jira.global,-jira.general,-jira.browse.project,-project.issue.navigator,-atl.general/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true","startTime":898.5,"connectEnd":898.5,"connectStart":898.5,"domainLookupEnd":898.5,"domainLookupStart":898.5,"fetchStart":898.5,"redirectEnd":0,"redirectStart":0,"requestStart":898.5,"responseEnd":1126.6000000238419,"responseStart":1126.6000000238419,"secureConnectionStart":898.5},{"duration":163.5,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":987.7000000476837,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":987.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1151.2000000476837,"responseStart":0,"secureConnectionStart":0}],"fetchStart":1,"domainLookupStart":1,"domainLookupEnd":1,"connectStart":1,"connectEnd":1,"requestStart":92,"responseStart":308,"responseEnd":314,"domLoading":312,"domInteractive":1209,"domContentLoadedEventStart":1209,"domContentLoadedEventEnd":1283,"domComplete":1757,"loadEventStart":1757,"loadEventEnd":1759,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1154.7000000476837},{"name":"bigPipe.sidebar-id.end","time":1155.5},{"name":"bigPipe.activity-panel-pipe-id.start","time":1155.6000000238419},{"name":"bigPipe.activity-panel-pipe-id.end","time":1160.6000000238419},{"name":"activityTabFullyLoaded","time":1307.7000000476837}],"measures":[],"correlationId":"7f60167f3eca91","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":128,"dbReadsTimeInMs":15,"dbConnsTimeInMs":23,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
show profiles;
| Query_ID | Duration | Query |