fil_name_process name ./test/t1.ibd space_id 11 lsn 70401 deleted 0
fil_name_process name ./test/t21.ibd space_id 12 lsn 70401 deleted 0
fil_name_process name ./test/t2.ibd space_id 13 lsn 70401 deleted 0
lsn 70537 space_id 0 page_no 0
lsn 70537 FILE_CHECKPOINT 59814
....
.....
fil_name_process name ./mysql/innodb_table_stats.ibd space_id 4 lsn 70673 deleted 0
fil_name_process name ./mysql/innodb_index_stats.ibd space_id 5 lsn 70673 deleted 0
fil_name_process name ./test/t1.ibd space_id 11 lsn 70673 deleted 0
fil_name_process name ./test/t21.ibd space_id 12 lsn 70673 deleted 0
fil_name_process name ./test/t2.ibd space_id 13 lsn 70673 deleted 0
lsn 70809 FILE_CHECKPOINT 59910
.....
fil_name_process name ./test/t1.ibd space_id 11 lsn 71047 deleted 0
fil_name_process name ./test/t21.ibd space_id 12 lsn 71047 deleted 0
fil_name_process name ./test/t2.ibd space_id 13 lsn 71047 deleted 0
lsn 71115 space_id 0 page_no 0
lsn 71115 FILE_CHECKPOINT 61700
fil_name_process name ./test/t1.ibd space_id 11 lsn 71115 deleted 0
fil_name_process name ./test/t21.ibd space_id 12 lsn 71115 deleted 0
fil_name_process name ./test/t2.ibd space_id 13 lsn 71115 deleted 0
lsn 71183 space_id 0 page_no 0
lsn 71183 FILE_CHECKPOINT 62015
.....
.....
.....
fil_name_process name ./mysql/innodb_table_stats.ibd space_id 4 lsn 73045 deleted 0
fil_name_process name ./test/t1.ibd space_id 11 lsn 73045 deleted 0
fil_name_process name ./mysql/innodb_index_stats.ibd space_id 5 lsn 73045 deleted 0
fil_name_process name ./test/t21.ibd space_id 12 lsn 73045 deleted 0
lsn 73164 space_id 0 page_no 0
lsn 73164 FILE_CHECKPOINT 71526
2025-03-13 13:02:36 0 [Note] InnoDB: End of log at LSN=73164
2025-03-13 13:02:36 0 [ERROR] InnoDB: Missing FILE_CREATE, FILE_DELETE or FILE_MODIFY before FILE_CHECKPOINT for tablespace 4
backup is done using "--tables=test.*1" So it doesn't backup index_stats.ibd and table_stats.ibd file
While parsing lsn 63281 space_id 4 page_no 3 , InnoDB adds the space id in recv_spaces with "" empty string.
It anticipates that in future, it may encounter the FILE_MODIFY for the tablespace.
During lsn 70673, InnoDB does read FILE_MODIFY for innodb_index_stats and innodb_table_stats table.
But fil_name_process() fails to load the tablespace (fil_ibd_load() ) fails with FIL_LOAD_NOT_FOUND
and left the recv_spaces with empty string
else if (lsn < file_checkpoint)
/* We have not seen all records between the checkpoint and
FILE_CHECKPOINT. There should be a FILE_DELETE for this
2025-03-13 13:02:36 0 [ERROR] InnoDB: Missing FILE_CREATE, FILE_DELETE or FILE_MODIFY before FILE_CHECKPOINT for tablespace 4
We encounter the FIL_MODIFY for the tablespace 4 and failed to open it due to partial backup.
Note: There is no way to identify whether mariabackup --prepare has been executed on some partial backup target directory.
We do write the partial: Y in xtrabackup_info file. But during --prepare, we don't read the file though. Can we read the file during --prepare
and create new srv_operation mode as SRV_OPERATION_RESTORE_EXPORT_PARTIAL or SRV_OPERATION_RESTORE_PARTIAL.?
I would like us to distinguish the case where the FILE_ records are actually missing (the log is corrupted), and the case where no file by any of the names is found. In the latter case, it would be good if the error message disclosed one of the parsed file names. When we are preparing a partial backup, then we would suppress the latter error but not the former one.
Marko Mäkelä
added a comment - I would like us to distinguish the case where the FILE_ records are actually missing (the log is corrupted), and the case where no file by any of the names is found. In the latter case, it would be good if the error message disclosed one of the parsed file names. When we are preparing a partial backup, then we would suppress the latter error but not the former one.
The backup.zip is from MariaDB Server 11.4. I reproduced the problem using it and posted some suggestions to https://github.com/MariaDB/server/pull/3990 on how to improve the fix further. The following is what I got when preparing the backup with a 10.11 based executable with my suggested fixes:
10.11/extra/mariabackup/mariadb-backup based on MariaDB server 10.11.12-MariaDB Linux (x86_64)
[00] 2025-04-22 13:27:58 cd to /dev/shm/backup/
[00] 2025-04-22 13:27:58 open files limit requested 0, set to 1024
[00] 2025-04-22 13:27:58 This target seems to be already prepared.
[00] 2025-04-22 13:27:58 mariabackup: using the following InnoDB configuration for recovery:
2025-04-22 13:27:58 0 [Note] InnoDB: At LSN: 70537: unable to open file ./mysql/innodb_table_stats.ibd for tablespace 4
2025-04-22 13:27:58 0 [Note] InnoDB: At LSN: 70537: unable to open file ./mysql/innodb_index_stats.ibd for tablespace 5
2025-04-22 13:27:58 0 [Note] InnoDB: End of log at LSN=73164
2025-04-22 13:27:58 0 [Warning] InnoDB: Tablespace 4 was not found at ./mysql/innodb_table_stats.ibd when restoring a (partial?) backup. All redo log for this file will be ignored!
2025-04-22 13:27:58 0 [Warning] InnoDB: Tablespace 5 was not found at ./mysql/innodb_index_stats.ibd when restoring a (partial?) backup. All redo log for this file will be ignored!
2025-04-22 13:27:58 0 [Warning] InnoDB: Tablespace 13 was not found at ./test/t2.ibd when restoring a (partial?) backup. All redo log for this file will be ignored!
2025-04-22 13:27:58 0 [Note] InnoDB: To recover: 30 pages
[00] 2025-04-22 13:27:58 Last binlog file , position 0
[00] 2025-04-22 13:27:58 completed OK!
I think that the existing warnings for missing files should be sufficient for now, even though they can be considered to be ‘noise’ when restoring a partial backup. But then again, the output is rather noisy to begin with.
Marko Mäkelä
added a comment - The backup.zip is from MariaDB Server 11.4. I reproduced the problem using it and posted some suggestions to https://github.com/MariaDB/server/pull/3990 on how to improve the fix further. The following is what I got when preparing the backup with a 10.11 based executable with my suggested fixes:
10.11/extra/mariabackup/mariadb-backup based on MariaDB server 10.11.12-MariaDB Linux (x86_64)
[00] 2025-04-22 13:27:58 cd to /dev/shm/backup/
[00] 2025-04-22 13:27:58 open files limit requested 0, set to 1024
[00] 2025-04-22 13:27:58 This target seems to be already prepared.
[00] 2025-04-22 13:27:58 mariabackup: using the following InnoDB configuration for recovery:
[00] 2025-04-22 13:27:58 innodb_data_home_dir = .
[00] 2025-04-22 13:27:58 innodb_data_file_path = ibdata1:12M:autoextend
[00] 2025-04-22 13:27:58 innodb_log_group_home_dir = .
[00] 2025-04-22 13:27:58 InnoDB: Using liburing
[00] 2025-04-22 13:27:58 Starting InnoDB instance for recovery.
[00] 2025-04-22 13:27:58 mariabackup: Using 100663296 bytes for buffer pool (set by --use-memory parameter)
2025-04-22 13:27:58 0 [Note] InnoDB: !!!!!!!! UNIV_DEBUG switched on !!!!!!!!!
2025-04-22 13:27:58 0 [Note] InnoDB: Compressed tables use zlib 1.3.1
2025-04-22 13:27:58 0 [Note] InnoDB: Number of transaction pools: 1
2025-04-22 13:27:58 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
2025-04-22 13:27:58 0 [Note] InnoDB: innodb_buffer_pool_size_max=96m, innodb_buffer_pool_size=96m
2025-04-22 13:27:58 0 [Note] InnoDB: Completed initialization of buffer pool
2025-04-22 13:27:58 0 [Note] InnoDB: Memory-mapped log (block size=512 bytes)
2025-04-22 13:27:58 0 [Note] InnoDB: At LSN: 71183: unable to open file ./test/t2.ibd for tablespace 13
2025-04-22 13:27:58 0 [Note] InnoDB: Starting crash recovery from checkpoint LSN=62015
2025-04-22 13:27:58 0 [Note] InnoDB: At LSN: 70537: unable to open file ./mysql/innodb_table_stats.ibd for tablespace 4
2025-04-22 13:27:58 0 [Note] InnoDB: At LSN: 70537: unable to open file ./mysql/innodb_index_stats.ibd for tablespace 5
2025-04-22 13:27:58 0 [Note] InnoDB: End of log at LSN=73164
2025-04-22 13:27:58 0 [Warning] InnoDB: Tablespace 4 was not found at ./mysql/innodb_table_stats.ibd when restoring a (partial?) backup. All redo log for this file will be ignored!
2025-04-22 13:27:58 0 [Warning] InnoDB: Tablespace 5 was not found at ./mysql/innodb_index_stats.ibd when restoring a (partial?) backup. All redo log for this file will be ignored!
2025-04-22 13:27:58 0 [Warning] InnoDB: Tablespace 13 was not found at ./test/t2.ibd when restoring a (partial?) backup. All redo log for this file will be ignored!
2025-04-22 13:27:58 0 [Note] InnoDB: To recover: 30 pages
2025-04-22 13:27:58 0 [Note] InnoDB: Buffered log writes (block size=512 bytes)
[00] 2025-04-22 13:27:58 Last binlog file , position 0
[00] 2025-04-22 13:27:58 completed OK!
I think that the existing warnings for missing files should be sufficient for now, even though they can be considered to be ‘noise’ when restoring a partial backup. But then again, the output is rather noisy to begin with.
People
Thirunarayanan Balathandayuthapani
Thirunarayanan Balathandayuthapani
Votes:
0Vote for this issue
Watchers:
3Start 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":715.6999998092651,"ttfb":246.79999995231628,"pageVisibility":"visible","entityId":133351,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":1,"journeyId":"3bb03d15-23d5-4f19-be10-6d4616e1b28a","navigationType":0,"readyForUser":865.5,"redirectCount":0,"resourceLoadedEnd":742.6999998092651,"resourceLoadedStart":253.39999985694885,"resourceTiming":[{"duration":24.200000047683716,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2bu7/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":253.39999985694885,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":253.39999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":277.59999990463257,"responseStart":0,"secureConnectionStart":0},{"duration":24.300000190734863,"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":253.69999980926514,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":253.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":278,"responseStart":0,"secureConnectionStart":0},{"duration":80.30000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/fbf975c0cce4b1abf04784eeae9ba1f4-CDN/lu2bu7/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":253.69999980926514,"connectEnd":253.69999980926514,"connectStart":253.69999980926514,"domainLookupEnd":253.69999980926514,"domainLookupStart":253.69999980926514,"fetchStart":253.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":253.69999980926514,"responseEnd":334,"responseStart":334,"secureConnectionStart":253.69999980926514},{"duration":160.90000009536743,"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":253.89999985694885,"connectEnd":253.89999985694885,"connectStart":253.89999985694885,"domainLookupEnd":253.89999985694885,"domainLookupStart":253.89999985694885,"fetchStart":253.89999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":253.89999985694885,"responseEnd":414.7999999523163,"responseStart":414.7999999523163,"secureConnectionStart":253.89999985694885},{"duration":164.19999980926514,"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":254,"connectEnd":254,"connectStart":254,"domainLookupEnd":254,"domainLookupStart":254,"fetchStart":254,"redirectEnd":0,"redirectStart":0,"requestStart":254,"responseEnd":418.19999980926514,"responseStart":418.19999980926514,"secureConnectionStart":254},{"duration":165.09999990463257,"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":254,"connectEnd":254,"connectStart":254,"domainLookupEnd":254,"domainLookupStart":254,"fetchStart":254,"redirectEnd":0,"redirectStart":0,"requestStart":254,"responseEnd":419.09999990463257,"responseStart":419.09999990463257,"secureConnectionStart":254},{"duration":166.30000019073486,"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":254.19999980926514,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":254.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":420.5,"responseStart":0,"secureConnectionStart":0},{"duration":165.60000014305115,"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":254.19999980926514,"connectEnd":254.19999980926514,"connectStart":254.19999980926514,"domainLookupEnd":254.19999980926514,"domainLookupStart":254.19999980926514,"fetchStart":254.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":254.19999980926514,"responseEnd":419.7999999523163,"responseStart":419.7999999523163,"secureConnectionStart":254.19999980926514},{"duration":166.20000004768372,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":254.29999995231628,"connectEnd":254.29999995231628,"connectStart":254.29999995231628,"domainLookupEnd":254.29999995231628,"domainLookupStart":254.29999995231628,"fetchStart":254.29999995231628,"redirectEnd":0,"redirectStart":0,"requestStart":254.29999995231628,"responseEnd":420.5,"responseStart":420.5,"secureConnectionStart":254.29999995231628},{"duration":166.79999995231628,"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":254.39999985694885,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":254.39999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":421.19999980926514,"responseStart":0,"secureConnectionStart":0},{"duration":166.89999985694885,"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":254.5,"connectEnd":254.5,"connectStart":254.5,"domainLookupEnd":254.5,"domainLookupStart":254.5,"fetchStart":254.5,"redirectEnd":0,"redirectStart":0,"requestStart":254.5,"responseEnd":421.39999985694885,"responseStart":421.39999985694885,"secureConnectionStart":254.5},{"duration":427.60000014305115,"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":255.19999980926514,"connectEnd":255.19999980926514,"connectStart":255.19999980926514,"domainLookupEnd":255.19999980926514,"domainLookupStart":255.19999980926514,"fetchStart":255.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":255.19999980926514,"responseEnd":682.7999999523163,"responseStart":682.7999999523163,"secureConnectionStart":255.19999980926514},{"duration":433.5,"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":259.5,"connectEnd":259.5,"connectStart":259.5,"domainLookupEnd":259.5,"domainLookupStart":259.5,"fetchStart":259.5,"redirectEnd":0,"redirectStart":0,"requestStart":259.5,"responseEnd":693,"responseStart":693,"secureConnectionStart":259.5},{"duration":200.90000009536743,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":482.59999990463257,"connectEnd":482.59999990463257,"connectStart":482.59999990463257,"domainLookupEnd":482.59999990463257,"domainLookupStart":482.59999990463257,"fetchStart":482.59999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":482.59999990463257,"responseEnd":683.5,"responseStart":683.5,"secureConnectionStart":482.59999990463257},{"duration":1.5999999046325684,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":709,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":709,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":710.5999999046326,"responseStart":0,"secureConnectionStart":0},{"duration":3.200000047683716,"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":731.5999999046326,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":731.5999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":734.7999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":4.1000001430511475,"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":732.3999998569489,"connectEnd":732.3999998569489,"connectStart":732.3999998569489,"domainLookupEnd":732.3999998569489,"domainLookupStart":732.3999998569489,"fetchStart":732.3999998569489,"redirectEnd":0,"redirectStart":0,"requestStart":732.3999998569489,"responseEnd":736.5,"responseStart":736.5,"secureConnectionStart":732.3999998569489},{"duration":9.899999856948853,"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":732.7999999523163,"connectEnd":732.7999999523163,"connectStart":732.7999999523163,"domainLookupEnd":732.7999999523163,"domainLookupStart":732.7999999523163,"fetchStart":732.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":732.7999999523163,"responseEnd":742.6999998092651,"responseStart":742.6999998092651,"secureConnectionStart":732.7999999523163}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":63,"responseStart":246,"responseEnd":252,"domLoading":250,"domInteractive":949,"domContentLoadedEventStart":949,"domContentLoadedEventEnd":999,"domComplete":1265,"loadEventStart":1265,"loadEventEnd":1266,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":915.5999999046326},{"name":"bigPipe.sidebar-id.end","time":916.2999999523163},{"name":"bigPipe.activity-panel-pipe-id.start","time":916.3999998569489},{"name":"bigPipe.activity-panel-pipe-id.end","time":918.5999999046326},{"name":"activityTabFullyLoaded","time":1018.0999999046326}],"measures":[],"correlationId":"815b170d73b29d","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":94,"dbReadsTimeInMs":8,"dbConnsTimeInMs":14,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
https://github.com/MariaDB/server/pull/3908