We are facing a show stopper for fast insert and restitution using Dynamic Columns compression.
Objective is to provide a view of the original table hiding dynamic column compression not to be forced to change all the software relying on original table design
We have 2 paths
Activating InnoDB Compression on the table
Using compress uncompress functions on the dyncamic column of the table
With compress uncompress functions, creating the view failed on MDEV-3944
Using InnoDB compression we can now create a view but facing heavy negative scalability when running concurrent LOAD DATA INFILE
Fixing one or the other issue would put MariaDB as the solution of choice proposed from this editor to clients regarding big data sizing
set optimizer_switch='derived_merge=off';
set optimizer_switch='materialization=on';
drop table if exists t1;
create table t1(a int , b smallint unsigned, c numeric(10) , primary key (a,b)) engine =innodb;
set @b:=1;
insert into t1 select 1 ,@b:=@b+1, 1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 2 ,b, 1 from t1 where a=1;
insert into t1 select 3 ,b, 1 from t1 where a=1;
insert into t1 select 4 ,b, 1 from t1 where a=1;
insert into t1 select 5 ,b, 1 from t1 where a=1;
insert into t1 select 6 ,b, 1 from t1 where a=1;
insert into t1 select 7 ,b, 1 from t1 where a=1;
insert into t1 select 8 ,b, 1 from t1 where a=1;
insert into t1 select 9 ,b, 1 from t1 where a=1;
insert into t1 select 12 ,b, 1 from t1 where a=1;
insert into t1 select 13 ,b, 1 from t1 where a=1;
insert into t1 select 14 ,b, 1 from t1 where a=1;
insert into t1 select 15 ,b, 1 from t1 where a=1;
insert into t1 select 16 ,b, 1 from t1 where a=1;
insert into t1 select 17 ,b, 1 from t1 where a=1;
insert into t1 select 18 ,b, 1 from t1 where a=1;
insert into t1 select 19 ,b, 1 from t1 where a=1;
– creating a table to store column b that will be our indice to dynamic column
drop table if exists i1;
create table i1(a int , b smallint unsigned, primary key (a,b)) engine=innodb;
insert into i1 select a, b from t1 group by a,b;
set global max_allowed_packet=1024*1024*100;
drop table if exists t2;
– injecting t1 to compressed dynamic column
create table t2(a int primary key , dc blob) engine=innodb ;
delimiter //
drop procedure if exists spa //
CREATE PROCEDURE spa()
BEGIN
DECLARE mya BIGINT;
DECLARE MyQuery TEXT;
DECLARE not_found BOOLEAN DEFAULT FALSE;
DECLARE cur1 CURSOR FOR SELECT DISTINCT a FROM t1;
DECLARE CONTINUE HANDLER FOR NOT FOUND SET not_found = TRUE;
SET group_concat_max_len=1024*1024*1024;
OPEN cur1;
SET not_found = FALSE;
REPEAT
FETCH cur1 INTO mya;
BEGIN
DECLARE mya_t2 BIGINT;
DECLARE myb_t2 TEXT;
DECLARE result_not_found BOOLEAN DEFAULT FALSE;
DECLARE cur2 CURSOR FOR
SELECT SQL_BIG_RESULT a,
GROUP_CONCAT(b,',',c,' as DECIMAL')
FROM t1
WHERE a=mya
GROUP BY a;
DECLARE CONTINUE HANDLER FOR NOT FOUND SET result_not_found = TRUE;
OPEN cur2;
SET result_not_found = FALSE;
REPEAT
BEGIN
DECLARE EXIT HANDLER FOR SQLEXCEPTION COMMIT;
FETCH cur2 INTO mya_t2,myb_t2;
SELECT CONCAT(
'INSERT INTO t2 VALUES(',mya_t2,
',' ,
'COMPRESS(COLUMN_CREATE(',
myb_t2,
')))') INTO MyQuery;
SET @insert_query=MyQuery;
START TRANSACTION;
PREPARE stmt FROM @insert_query;
EXECUTE stmt;
COMMIT;
END;
UNTIL result_not_found = TRUE END REPEAT;
CLOSE cur2;
END;
UNTIL not_found = TRUE END REPEAT;
CLOSE cur1;
END//
call spa//
delimiter ;
– recreate t1 from compressed t2
– fixed in MDEV-4292
CREATE VIEW `v2` AS
SELECT U.a,i1.b, COLUMN_GET(U.dc,i1.b as DECIMAL) as c FROM ( SELECT a , UNCOMPRESS(dc) dc FROM t2 )U straight_join i1 on U.a=i1.a where COLUMN_GET(U.dc,i1.b as DECIMAL) IS NOT NULL;
– creating uncompressed table t3 from t2
drop table if exists t3;
create table t3 like t2 ;
insert into t3 select a, uncompress(dc) from t2;
– recreate t1 from uncompressed t3
drop view if exists v3;
CREATE VIEW v3 AS
SELECT t3.a,i1.b,
COLUMN_GET(t3.dc,i1.b as DECIMAL ) as c
FROM t3 INNER JOIN
i1 on i1.a=t3.a
where COLUMN_GET(t3.dc,i1.b as DECIMAL) IS NOT NULL;
– create t4 innodb compression from uncompressed table
drop table if exists t4;
create table t4(a int primary key , dc blob) engine=innodb row_format=compressed ;
insert into t4 select * from t3;
– recreate t1 from compressed t4
drop view if exists v4;
CREATE VIEW v4 AS
SELECT t4.a,i1.b,
COLUMN_GET(t4.dc,i1.b as DECIMAL ) as c
FROM t4 INNER JOIN
i1 on i1.a=t4.a
where COLUMN_GET(t4.dc,i1.b as DECIMAL) IS NOT NULL;
Stephane Varoqui | Senior Consultant EMEA
SkySQL Ab | www.skysql.com Location: Paris -France | Tel : +33 6 95 92 64 01
SkySQL - The first choice in affordable MySQL® Database solutions for the Enterprise and Cloud
VAROQUI Stephane
added a comment - - edited set optimizer_switch='derived_merge=off';
set optimizer_switch='materialization=on';
drop table if exists t1;
create table t1(a int , b smallint unsigned, c numeric(10) , primary key (a,b)) engine =innodb;
set @b:=1;
insert into t1 select 1 ,@b:=@b+1, 1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 1 ,@b:=@b+1, 1 from t1;
insert into t1 select 2 ,b, 1 from t1 where a=1;
insert into t1 select 3 ,b, 1 from t1 where a=1;
insert into t1 select 4 ,b, 1 from t1 where a=1;
insert into t1 select 5 ,b, 1 from t1 where a=1;
insert into t1 select 6 ,b, 1 from t1 where a=1;
insert into t1 select 7 ,b, 1 from t1 where a=1;
insert into t1 select 8 ,b, 1 from t1 where a=1;
insert into t1 select 9 ,b, 1 from t1 where a=1;
insert into t1 select 12 ,b, 1 from t1 where a=1;
insert into t1 select 13 ,b, 1 from t1 where a=1;
insert into t1 select 14 ,b, 1 from t1 where a=1;
insert into t1 select 15 ,b, 1 from t1 where a=1;
insert into t1 select 16 ,b, 1 from t1 where a=1;
insert into t1 select 17 ,b, 1 from t1 where a=1;
insert into t1 select 18 ,b, 1 from t1 where a=1;
insert into t1 select 19 ,b, 1 from t1 where a=1;
– creating a table to store column b that will be our indice to dynamic column
drop table if exists i1;
create table i1(a int , b smallint unsigned, primary key (a,b)) engine=innodb;
insert into i1 select a, b from t1 group by a,b;
set global max_allowed_packet=1024*1024*100;
drop table if exists t2;
– injecting t1 to compressed dynamic column
create table t2(a int primary key , dc blob) engine=innodb ;
delimiter //
drop procedure if exists spa //
CREATE PROCEDURE spa()
BEGIN
DECLARE mya BIGINT;
DECLARE MyQuery TEXT;
DECLARE not_found BOOLEAN DEFAULT FALSE;
DECLARE cur1 CURSOR FOR SELECT DISTINCT a FROM t1;
DECLARE CONTINUE HANDLER FOR NOT FOUND SET not_found = TRUE;
SET group_concat_max_len=1024*1024*1024;
OPEN cur1;
SET not_found = FALSE;
REPEAT
FETCH cur1 INTO mya;
BEGIN
DECLARE mya_t2 BIGINT;
DECLARE myb_t2 TEXT;
DECLARE result_not_found BOOLEAN DEFAULT FALSE;
DECLARE cur2 CURSOR FOR
SELECT SQL_BIG_RESULT a,
GROUP_CONCAT(b,',',c,' as DECIMAL')
FROM t1
WHERE a=mya
GROUP BY a;
DECLARE CONTINUE HANDLER FOR NOT FOUND SET result_not_found = TRUE;
OPEN cur2;
SET result_not_found = FALSE;
REPEAT
BEGIN
DECLARE EXIT HANDLER FOR SQLEXCEPTION COMMIT;
FETCH cur2 INTO mya_t2,myb_t2;
SELECT CONCAT(
'INSERT INTO t2 VALUES(',mya_t2,
',' ,
'COMPRESS(COLUMN_CREATE(',
myb_t2,
')))') INTO MyQuery;
SET @insert_query=MyQuery;
START TRANSACTION;
PREPARE stmt FROM @insert_query;
EXECUTE stmt;
COMMIT;
END;
UNTIL result_not_found = TRUE END REPEAT;
CLOSE cur2;
END;
UNTIL not_found = TRUE END REPEAT;
CLOSE cur1;
END//
call spa//
delimiter ;
– recreate t1 from compressed t2
– fixed in MDEV-4292
CREATE VIEW `v2` AS
SELECT U.a,i1.b, COLUMN_GET(U.dc,i1.b as DECIMAL) as c FROM ( SELECT a , UNCOMPRESS(dc) dc FROM t2 )U straight_join i1 on U.a=i1.a where COLUMN_GET(U.dc,i1.b as DECIMAL) IS NOT NULL;
– creating uncompressed table t3 from t2
drop table if exists t3;
create table t3 like t2 ;
insert into t3 select a, uncompress(dc) from t2;
– recreate t1 from uncompressed t3
drop view if exists v3;
CREATE VIEW v3 AS
SELECT t3.a,i1.b,
COLUMN_GET(t3.dc,i1.b as DECIMAL ) as c
FROM t3 INNER JOIN
i1 on i1.a=t3.a
where COLUMN_GET(t3.dc,i1.b as DECIMAL) IS NOT NULL;
– create t4 innodb compression from uncompressed table
drop table if exists t4;
create table t4(a int primary key , dc blob) engine=innodb row_format=compressed ;
insert into t4 select * from t3;
– recreate t1 from compressed t4
drop view if exists v4;
CREATE VIEW v4 AS
SELECT t4.a,i1.b,
COLUMN_GET(t4.dc,i1.b as DECIMAL ) as c
FROM t4 INNER JOIN
i1 on i1.a=t4.a
where COLUMN_GET(t4.dc,i1.b as DECIMAL) IS NOT NULL;
Stephane Varoqui | Senior Consultant EMEA
SkySQL Ab | www.skysql.com Location: Paris -France | Tel : +33 6 95 92 64 01
SkySQL - The first choice in affordable MySQL® Database solutions for the Enterprise and Cloud
Well in our first test it looks like the conditions have not been push down for internal view or that derived_merge is lost lost .
The idea is not to decompress for every record of i1
I'll ask our client to review again if we have missed something here like an index that would have cause us to miss interpreted that result
Thanks for the investigation so far .
Sandrine, Simon, can provide us an explain of the embedded view test case . Can you also retest on mariadb 10 as it looks like innodb compression is much much better in that release .
Stéphane
Stephane Varoqui | Senior Consultant EMEA
SkySQL Ab | www.skysql.com Location: Paris -France | Tel : +33 6 95 92 64 01
SkySQL - The first choice in affordable MySQL® Database solutions for the Enterprise and Cloud
VAROQUI Stephane
added a comment - Hi Patryk,
Well in our first test it looks like the conditions have not been push down for internal view or that derived_merge is lost lost .
The idea is not to decompress for every record of i1
I'll ask our client to review again if we have missed something here like an index that would have cause us to miss interpreted that result
Thanks for the investigation so far .
Sandrine, Simon, can provide us an explain of the embedded view test case . Can you also retest on mariadb 10 as it looks like innodb compression is much much better in that release .
Stéphane
Stephane Varoqui | Senior Consultant EMEA
SkySQL Ab | www.skysql.com Location: Paris -France | Tel : +33 6 95 92 64 01
SkySQL - The first choice in affordable MySQL® Database solutions for the Enterprise and Cloud
People
Unassigned
VAROQUI Stephane
Votes:
0Vote for this issue
Watchers:
6Start watching this issue
Dates
Created:
Updated:
Git Integration
Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.
{"report":{"fcp":924.8999996185303,"ttfb":195.30000019073486,"pageVisibility":"visible","entityId":23713,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":1,"journeyId":"714c4ab5-a68e-413e-bb93-9218718ef529","navigationType":0,"readyForUser":981,"redirectCount":0,"resourceLoadedEnd":1426.3000001907349,"resourceLoadedStart":201.69999980926514,"resourceTiming":[{"duration":229.19999980926514,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":201.69999980926514,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":201.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":430.8999996185303,"responseStart":0,"secureConnectionStart":0},{"duration":229.10000038146973,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/2bf333562ca6724060a9d5f1535471f6/_/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":202,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":202,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":431.1000003814697,"responseStart":0,"secureConnectionStart":0},{"duration":237.79999923706055,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":202.10000038146973,"connectEnd":202.10000038146973,"connectStart":202.10000038146973,"domainLookupEnd":202.10000038146973,"domainLookupStart":202.10000038146973,"fetchStart":202.10000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":202.10000038146973,"responseEnd":439.8999996185303,"responseStart":439.8999996185303,"secureConnectionStart":202.10000038146973},{"duration":280.5999994277954,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/2bf333562ca6724060a9d5f1535471f6/_/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":202.30000019073486,"connectEnd":202.30000019073486,"connectStart":202.30000019073486,"domainLookupEnd":202.30000019073486,"domainLookupStart":202.30000019073486,"fetchStart":202.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":202.30000019073486,"responseEnd":482.8999996185303,"responseStart":482.8999996185303,"secureConnectionStart":202.30000019073486},{"duration":284,"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":202.69999980926514,"connectEnd":202.69999980926514,"connectStart":202.69999980926514,"domainLookupEnd":202.69999980926514,"domainLookupStart":202.69999980926514,"fetchStart":202.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":202.69999980926514,"responseEnd":486.69999980926514,"responseStart":486.69999980926514,"secureConnectionStart":202.69999980926514},{"duration":284.3999996185303,"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":202.80000019073486,"connectEnd":202.80000019073486,"connectStart":202.80000019073486,"domainLookupEnd":202.80000019073486,"domainLookupStart":202.80000019073486,"fetchStart":202.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":202.80000019073486,"responseEnd":487.19999980926514,"responseStart":487.19999980926514,"secureConnectionStart":202.80000019073486},{"duration":285,"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":202.89999961853027,"connectEnd":202.89999961853027,"connectStart":202.89999961853027,"domainLookupEnd":202.89999961853027,"domainLookupStart":202.89999961853027,"fetchStart":202.89999961853027,"redirectEnd":0,"redirectStart":0,"requestStart":202.89999961853027,"responseEnd":487.8999996185303,"responseStart":487.8999996185303,"secureConnectionStart":202.89999961853027},{"duration":381.79999923706055,"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":203.10000038146973,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":203.10000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":584.8999996185303,"responseStart":0,"secureConnectionStart":0},{"duration":285.0999994277954,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":203.30000019073486,"connectEnd":203.30000019073486,"connectStart":203.30000019073486,"domainLookupEnd":203.30000019073486,"domainLookupStart":203.30000019073486,"fetchStart":203.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":203.30000019073486,"responseEnd":488.3999996185303,"responseStart":488.3999996185303,"secureConnectionStart":203.30000019073486},{"duration":381.6000003814697,"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":203.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":203.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":585.1000003814697,"responseStart":0,"secureConnectionStart":0},{"duration":285.29999923706055,"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":203.60000038146973,"connectEnd":203.60000038146973,"connectStart":203.60000038146973,"domainLookupEnd":203.60000038146973,"domainLookupStart":203.60000038146973,"fetchStart":203.60000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":203.60000038146973,"responseEnd":488.8999996185303,"responseStart":488.8999996185303,"secureConnectionStart":203.60000038146973},{"duration":1218,"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":204.5,"connectEnd":204.5,"connectStart":204.5,"domainLookupEnd":204.5,"domainLookupStart":204.5,"fetchStart":204.5,"redirectEnd":0,"redirectStart":0,"requestStart":204.5,"responseEnd":1422.5,"responseStart":1422.5,"secureConnectionStart":204.5},{"duration":1218.2999992370605,"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":204.60000038146973,"connectEnd":204.60000038146973,"connectStart":204.60000038146973,"domainLookupEnd":204.60000038146973,"domainLookupStart":204.60000038146973,"fetchStart":204.60000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":204.60000038146973,"responseEnd":1422.8999996185303,"responseStart":1422.8999996185303,"secureConnectionStart":204.60000038146973},{"duration":127.10000038146973,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":596.5,"connectEnd":596.5,"connectStart":596.5,"domainLookupEnd":596.5,"domainLookupStart":596.5,"fetchStart":596.5,"redirectEnd":0,"redirectStart":0,"requestStart":596.5,"responseEnd":723.6000003814697,"responseStart":723.6000003814697,"secureConnectionStart":596.5},{"duration":549.1000003814697,"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","startTime":877.1999998092651,"connectEnd":877.1999998092651,"connectStart":877.1999998092651,"domainLookupEnd":877.1999998092651,"domainLookupStart":877.1999998092651,"fetchStart":877.1999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":877.1999998092651,"responseEnd":1426.3000001907349,"responseStart":1426.3000001907349,"secureConnectionStart":877.1999998092651},{"duration":529.1000003814697,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":917.3999996185303,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":917.3999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1446.5,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":38,"responseStart":196,"responseEnd":199,"domLoading":199,"domInteractive":1454,"domContentLoadedEventStart":1454,"domContentLoadedEventEnd":1498,"domComplete":2248,"loadEventStart":2248,"loadEventEnd":2249,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1428.1999998092651},{"name":"bigPipe.sidebar-id.end","time":1428.8999996185303},{"name":"bigPipe.activity-panel-pipe-id.start","time":1429.1999998092651},{"name":"bigPipe.activity-panel-pipe-id.end","time":1430.8000001907349},{"name":"activityTabFullyLoaded","time":1516.3000001907349}],"measures":[],"correlationId":"cffad5cf995669","effectiveType":"4g","downlink":9.5,"rtt":0,"serverDuration":100,"dbReadsTimeInMs":12,"dbConnsTimeInMs":21,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
How would the view look like?