Trying to take a DDL aware backup with mariabackup --lock-ddl-per-table causes backup to wait indefinitely in FLUSH NO_WRITE_TO_BINLOG TABLES if an ALTER TABLE is issued during the backup.
To reproduce, run backup with:
mariabackup --lock-ddl-per-table --backup --user user --password password --stream=xbstream --parallel=4 --tmpdir=/tmp | gzip > backup.xbs.gz
While backup is running, issue an alter table to add a column, eg:
alter table testpk add column MARIA_ID bigint unsigned not null auto_increment primary key
The backup will hang in FLUSH TABLES forever.
Show processlist shows that there is some kind of conflict between the MDL taken by the lock-ddl-per-table and the flush tables command:
MariaDB [(none)]> show processlist;
+----+-------------+-----------+------+---------+------+---------------------------------+--------------------------------------------------------------------------------------------+----------+
| Id | User | Host | db | Command | Time | State | Info | Progress |
+----+-------------+-----------+------+---------+------+---------------------------------+--------------------------------------------------------------------------------------------+----------+
| 1 | system user | | NULL | Daemon | NULL | InnoDB purge worker | NULL | 0.000 |
| 2 | system user | | NULL | Daemon | NULL | InnoDB purge worker | NULL | 0.000 |
| 3 | system user | | NULL | Daemon | NULL | InnoDB purge worker | NULL | 0.000 |
| 4 | system user | | NULL | Daemon | NULL | InnoDB purge coordinator | NULL | 0.000 |
| 5 | system user | | NULL | Daemon | NULL | InnoDB shutdown handler | NULL | 0.000 |
| 63 | root | localhost | rick | Query | 113 | Waiting for table metadata lock | alter table testpk add column MARIA_ID bigint unsigned not null auto_increment primary key | 0.000 |
| 80 | root | localhost | NULL | Query | 52 | Waiting for table flush | FLUSH NO_WRITE_TO_BINLOG TABLES | 0.000 |
| 81 | root | localhost | NULL | Sleep | 117 | | NULL | 0.000 |
| 82 | root | localhost | NULL | Query | 0 | init | show processlist | 0.000 |
+----+-------------+-----------+------+---------+------+---------------------------------+--------------------------------------------------------------------------------------------+----------+
9 rows in set (0.00 sec)
Thread dump show what looks like a metadata deadlock, both threads waiting in MDL_wait:
10 libaio::??(libaio.so.1),LinuxAIOHandler::collect(os0file.cc:1893),LinuxAIOHandler::poll(os0file.cc:2038),os_aio_linux_handler(os0file.cc:2092),os_aio_handler(os0file.cc:2092),fil_aio_wait(fil0fil.cc:5330),io_handler_thread(srv0start.cc:343),start_thread,clone
3 pthread_cond_wait,wait(os0event.cc:166),wait_low(os0event.cc:166),os_event_wait_low(os0event.cc:166),srv_resume_thread(srv0srv.cc:935),srv_worker_thread(srv0srv.cc:935),start_thread,clone
1 pthread_cond_wait,wait(os0event.cc:166),wait_low(os0event.cc:166),os_event_wait_low(os0event.cc:166),srv_resume_thread(srv0srv.cc:935),srv_purge_coordinator_suspend(srv0srv.cc:935),srv_purge_coordinator_thread(srv0srv.cc:935),start_thread,clone
1 pthread_cond_wait,wait(os0event.cc:166),wait_low(os0event.cc:166),os_event_wait_low(os0event.cc:166),buf_resize_thread(buf0buf.cc:3083),start_thread,clone
1 pthread_cond_wait,wait(os0event.cc:166),wait_low(os0event.cc:166),os_event_wait_low(os0event.cc:166),buf_dump_thread(buf0dump.cc:777),start_thread,clone
1 pthread_cond_wait,inline_mysql_cond_wait(mysql_thread.h:1149),inline_mysql_cond_wait(mysql_thread.h:1149),thd_destructor_proxy(mysql_thread.h:1149),start_thread,clone
1 pthread_cond_wait,inline_mysql_cond_wait(mysql_thread.h:1149),inline_mysql_cond_wait(mysql_thread.h:1149),handle_slave_background(mysql_thread.h:1149),start_thread,clone
1 pthread_cond_timedwait,os_event::timed_wait(os0event.cc:286),os_event::wait_time_low(os0event.cc:413),srv_monitor_thread(srv0srv.cc:1754),start_thread,clone
1 pthread_cond_timedwait,os_event::timed_wait(os0event.cc:286),os_event::wait_time_low(os0event.cc:413),srv_error_monitor_thread(srv0srv.cc:1923),start_thread,clone
1 pthread_cond_timedwait,os_event::timed_wait(os0event.cc:286),os_event::wait_time_low(os0event.cc:413),pc_sleep_if_needed(buf0flu.cc:2718),buf_flush_page_cleaner_coordinator(buf0flu.cc:2718),start_thread,clone
1 pthread_cond_timedwait,os_event::timed_wait(os0event.cc:286),os_event::wait_time_low(os0event.cc:413),lock_wait_timeout_thread(lock0wait.cc:547),start_thread,clone
1 pthread_cond_timedwait,os_event::timed_wait(os0event.cc:286),os_event::wait_time_low(os0event.cc:413),ib_wqueue_timedwait(ut0wqueue.cc:163),fts_optimize_thread(fts0opt.cc:3032),start_thread,clone
1 pthread_cond_timedwait,os_event::timed_wait(os0event.cc:286),os_event::wait_time_low(os0event.cc:413),dict_stats_thread(dict0stats_bg.cc:451),start_thread,clone
1 pthread_cond_timedwait,inline_mysql_cond_timedwait(mysql_thread.h:1186),timer_handler(mysql_thread.h:1186),start_thread,clone
1 pthread_cond_timedwait,inline_mysql_cond_timedwait(mysql_thread.h:1186),my_service_thread_sleep(mysql_thread.h:1186),ma_checkpoint_background(ma_checkpoint.c:709),start_thread,clone
1 pthread_cond_timedwait,inline_mysql_cond_timedwait(mysql_thread.h:1186),MDL_wait::timed_wait(mysql_thread.h:1186),TABLE_SHARE::wait_for_old_version(table.cc:4410),close_cached_tables(sql_base.cc:454),reload_acl_and_cache(sql_reload.cc:334),mysql_execute_command(sql_parse.cc:5384),mysql_parse(sql_parse.cc:7902),dispatch_command(sql_parse.cc:1806),do_command(sql_parse.cc:1360),do_handle_one_connection(sql_connect.cc:1335),handle_one_connection(sql_connect.cc:1241),start_thread,clone
1 pthread_cond_timedwait,inline_mysql_cond_timedwait(mysql_thread.h:1186),MDL_wait::timed_wait(mysql_thread.h:1186),MDL_context::acquire_lock(mdl.cc:2138),MDL_context::upgrade_shared_lock(mdl.cc:2333),mysql_inplace_alter_table(sql_table.cc:7245),mysql_alter_table(sql_table.cc:7245),Sql_cmd_alter_table::execute(sql_alter.cc:324),mysql_execute_command(sql_parse.cc:6208),mysql_parse(sql_parse.cc:7902),dispatch_command(sql_parse.cc:1806),do_command(sql_parse.cc:1360),do_handle_one_connection(sql_connect.cc:1335),handle_one_connection(sql_connect.cc:1241),start_thread,clone
1 pthread_cond_timedwait,inline_mysql_cond_timedwait(mysql_thread.h:1186),inline_mysql_cond_timedwait(mysql_thread.h:1186),cache_thread(mysql_thread.h:1186),one_thread_per_connection_end(mysql_thread.h:1186),do_handle_one_connection(sql_connect.cc:1354),handle_one_connection(sql_connect.cc:1241),start_thread,clone
1 __poll,vio_io_wait(viosocket.c:945),vio_socket_io_wait(viosocket.c:108),vio_read(viosocket.c:184),my_real_read(net_serv.cc:892),my_net_read_packet_reallen(net_serv.cc:1162),my_net_read_packet(net_serv.cc:1146),do_command(sql_parse.cc:1242),do_handle_one_connection(sql_connect.cc:1335),handle_one_connection(sql_connect.cc:1241),start_thread,clone
1 __poll,handle_connections_sockets(mysqld.cc:6584),mysqld_main(mysqld.cc:6050),__libc_start_main,_start
1 nanosleep,os_thread_sleep(os0thread.cc:230),srv_master_sleep(srv0srv.cc:2412),srv_master_thread(srv0srv.cc:2412),start_thread,clone
1 nanosleep,os_thread_sleep(os0thread.cc:230),btr_defragment_thread(btr0defragment.cc:772),start_thread,clone
1 do_sigwait,__sigwait,signal_hand(mysqld.cc:3505),start_thread,clone
Elena Stepanova
made changes -
2018-03-23 09:33
Field
Original Value
New Value
Fix Version/s
10.2
[ 14601
]
Assignee
Vladislav Vaintroub
[ wlad
]
Vladislav Vaintroub
made changes -
2018-03-29 21:39
Summary
mariabackup --lock-ddl-per-table hangs in FTWRL due to MDL conflict if ALTER TABLE issued
mariabackup --lock-ddl-per-table hangs in FLUSH TABLES due to MDL conflict if ALTER TABLE issued
Vladislav Vaintroub
made changes -
2018-04-02 09:34
Fix Version/s
10.2.14
[ 22911
]
Fix Version/s
10.3.6
[ 23003
]
Fix Version/s
10.2
[ 14601
]
Resolution
Fixed
[ 1
]
Status
In Progress
[ 3
]
Closed
[ 6
]
Sergei Golubchik
made changes -
2021-12-06 21:47
Workflow
MariaDB v3
[ 86160
]
MariaDB v4
[ 154004
]
{"report":{"fcp":869.5,"ttfb":243.80000019073486,"pageVisibility":"visible","entityId":66457,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":1,"journeyId":"98b459fb-5b27-429e-a5d5-276835ea6e3f","navigationType":0,"readyForUser":964.5999999046326,"redirectCount":0,"resourceLoadedEnd":1033.2000002861023,"resourceLoadedStart":250.2000002861023,"resourceTiming":[{"duration":14.299999713897705,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":250.2000002861023,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":250.2000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":264.5,"responseStart":0,"secureConnectionStart":0},{"duration":14.599999904632568,"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":250.40000009536743,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":250.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":265,"responseStart":0,"secureConnectionStart":0},{"duration":76.59999990463257,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":250.7000002861023,"connectEnd":250.7000002861023,"connectStart":250.7000002861023,"domainLookupEnd":250.7000002861023,"domainLookupStart":250.7000002861023,"fetchStart":250.7000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":250.7000002861023,"responseEnd":327.30000019073486,"responseStart":327.30000019073486,"secureConnectionStart":250.7000002861023},{"duration":160.09999990463257,"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":250.90000009536743,"connectEnd":250.90000009536743,"connectStart":250.90000009536743,"domainLookupEnd":250.90000009536743,"domainLookupStart":250.90000009536743,"fetchStart":250.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":250.90000009536743,"responseEnd":411,"responseStart":411,"secureConnectionStart":250.90000009536743},{"duration":163.69999980926514,"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":251.2000002861023,"connectEnd":251.2000002861023,"connectStart":251.2000002861023,"domainLookupEnd":251.2000002861023,"domainLookupStart":251.2000002861023,"fetchStart":251.2000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":251.2000002861023,"responseEnd":414.90000009536743,"responseStart":414.90000009536743,"secureConnectionStart":251.2000002861023},{"duration":164.09999990463257,"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":251.40000009536743,"connectEnd":251.40000009536743,"connectStart":251.40000009536743,"domainLookupEnd":251.40000009536743,"domainLookupStart":251.40000009536743,"fetchStart":251.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":251.40000009536743,"responseEnd":415.5,"responseStart":415.5,"secureConnectionStart":251.40000009536743},{"duration":164.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":251.5,"connectEnd":251.5,"connectStart":251.5,"domainLookupEnd":251.5,"domainLookupStart":251.5,"fetchStart":251.5,"redirectEnd":0,"redirectStart":0,"requestStart":251.5,"responseEnd":415.90000009536743,"responseStart":415.90000009536743,"secureConnectionStart":251.5},{"duration":230.7999997138977,"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":251.7000002861023,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":251.7000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":482.5,"responseStart":0,"secureConnectionStart":0},{"duration":164.5,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":251.90000009536743,"connectEnd":251.90000009536743,"connectStart":251.90000009536743,"domainLookupEnd":251.90000009536743,"domainLookupStart":251.90000009536743,"fetchStart":251.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":251.90000009536743,"responseEnd":416.40000009536743,"responseStart":416.40000009536743,"secureConnectionStart":251.90000009536743},{"duration":230.7000002861023,"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":252,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":252,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":482.7000002861023,"responseStart":0,"secureConnectionStart":0},{"duration":164.7999997138977,"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":252.2000002861023,"connectEnd":252.2000002861023,"connectStart":252.2000002861023,"domainLookupEnd":252.2000002861023,"domainLookupStart":252.2000002861023,"fetchStart":252.2000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":252.2000002861023,"responseEnd":417,"responseStart":417,"secureConnectionStart":252.2000002861023},{"duration":617.1999998092651,"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":253.40000009536743,"connectEnd":253.40000009536743,"connectStart":253.40000009536743,"domainLookupEnd":253.40000009536743,"domainLookupStart":253.40000009536743,"fetchStart":253.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":253.40000009536743,"responseEnd":870.5999999046326,"responseStart":870.5999999046326,"secureConnectionStart":253.40000009536743},{"duration":618.3000001907349,"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":253.40000009536743,"connectEnd":253.40000009536743,"connectStart":253.40000009536743,"domainLookupEnd":253.40000009536743,"domainLookupStart":253.40000009536743,"fetchStart":253.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":253.40000009536743,"responseEnd":871.7000002861023,"responseStart":871.7000002861023,"secureConnectionStart":253.40000009536743},{"duration":78.59999990463257,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":516.4000000953674,"connectEnd":516.4000000953674,"connectStart":516.4000000953674,"domainLookupEnd":516.4000000953674,"domainLookupStart":516.4000000953674,"fetchStart":516.4000000953674,"redirectEnd":0,"redirectStart":0,"requestStart":516.4000000953674,"responseEnd":595,"responseStart":595,"secureConnectionStart":516.4000000953674},{"duration":101.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2cib/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&whisper-enabled=true","startTime":778.8000001907349,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":778.8000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":880.3000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":252.90000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/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&whisper-enabled=true","startTime":780.3000001907349,"connectEnd":780.3000001907349,"connectStart":780.3000001907349,"domainLookupEnd":780.3000001907349,"domainLookupStart":780.3000001907349,"fetchStart":780.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":780.3000001907349,"responseEnd":1033.2000002861023,"responseStart":1033.2000002861023,"secureConnectionStart":780.3000001907349},{"duration":243.40000009536743,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":862.3000001907349,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":862.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1105.7000002861023,"responseStart":0,"secureConnectionStart":0},{"duration":262.09999990463257,"initiatorType":"script","name":"https://jira.mariadb.org/s/097ae97cb8fbec7d6ea4bbb1f26955b9-CDN/lu2cib/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&whisper-enabled=true","startTime":780.7000002861023,"connectEnd":780.7000002861023,"connectStart":780.7000002861023,"domainLookupEnd":780.7000002861023,"domainLookupStart":780.7000002861023,"fetchStart":780.7000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":780.7000002861023,"responseEnd":1042.8000001907349,"responseStart":1042.8000001907349,"secureConnectionStart":780.7000002861023},{"duration":97.2999997138977,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1010.3000001907349,"connectEnd":1010.3000001907349,"connectStart":1010.3000001907349,"domainLookupEnd":1010.3000001907349,"domainLookupStart":1010.3000001907349,"fetchStart":1010.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":1010.3000001907349,"responseEnd":1107.5999999046326,"responseStart":1107.5999999046326,"secureConnectionStart":1010.3000001907349}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":53,"responseStart":244,"responseEnd":247,"domLoading":247,"domInteractive":1042,"domContentLoadedEventStart":1042,"domContentLoadedEventEnd":1101,"domComplete":1223,"loadEventStart":1223,"loadEventEnd":1224,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1016.3000001907349},{"name":"bigPipe.sidebar-id.end","time":1017.2000002861023},{"name":"bigPipe.activity-panel-pipe-id.start","time":1017.2000002861023},{"name":"bigPipe.activity-panel-pipe-id.end","time":1019.8000001907349},{"name":"activityTabFullyLoaded","time":1118.7000002861023}],"measures":[],"correlationId":"1c338e76ae0cf2","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":125,"dbReadsTimeInMs":22,"dbConnsTimeInMs":32,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}