Skip to content

[fix](cloud) overwrite job statistic without data quality check when update cloud progress#39790

Merged
liaoxin01 merged 1 commit intoapache:masterfrom
sollhui:routine_load_cloud_progress
Aug 27, 2024
Merged

[fix](cloud) overwrite job statistic without data quality check when update cloud progress#39790
liaoxin01 merged 1 commit intoapache:masterfrom
sollhui:routine_load_cloud_progress

Conversation

@sollhui
Copy link
Copy Markdown
Contributor

@sollhui sollhui commented Aug 22, 2024

updateCloudProgress() will be called when job need schedule, and then:

  1. update job statistic by accumulation
  2. do data quality check

Update job statistic by accumulation will cause job statistic incorrect, for job pause and resume will double the job statistic.

do data quality check is not need, for updateCloudProgress() is similar to the reply operation,

if (this.jobStatistic.currentErrorRows > maxErrorNum
                || (this.jobStatistic.currentTotalRows > 0
                    && ((double) this.jobStatistic.currentErrorRows
                            / this.jobStatistic.currentTotalRows) > maxFilterRatio)) {
            LOG.info(new LogBuilder(LogKey.ROUTINE_LOAD_JOB, id)
                    .add("current_total_rows", this.jobStatistic.currentTotalRows)
                    .add("current_error_rows", this.jobStatistic.currentErrorRows)
                    .add("max_error_num", maxErrorNum)
                    .add("max_filter_ratio", maxFilterRatio)
                    .add("msg", "current error rows is more than max_error_number "
                            + "or the max_filter_ratio is more than the max, begin to pause job")
                    .build());
            if (!isReplay) {
                // remove all of task in jobs and change job state to paused
                updateState(JobState.PAUSED, new ErrorReason(InternalErrorCode.TOO_MANY_FAILURE_ROWS_ERR,
                        "current error rows is more than max_error_number "
                            + "or the max_filter_ratio is more than the value set"), isReplay);
            }
            // reset currentTotalNum and currentErrorNum
            this.jobStatistic.currentErrorRows = 0;
            this.jobStatistic.currentTotalRows = 0;
        }

if quality checks are performed, it will result in the job not being able to resume.

@doris-robot
Copy link
Copy Markdown

Thank you for your contribution to Apache Doris.
Don't know what should be done next? See How to process your PR

Since 2024-03-18, the Document has been moved to doris-website.
See Doris Document.

@sollhui
Copy link
Copy Markdown
Contributor Author

sollhui commented Aug 22, 2024

run buildall

@doris-robot
Copy link
Copy Markdown

TPC-H: Total hot run time: 38086 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
Tpch sf100 test result on commit a28c3b16fba03cfcf1430f498997a409291a1040, data reload: false

------ Round 1 ----------------------------------
q1	18008	4532	4450	4450
q2	2241	183	170	170
q3	10478	1165	1084	1084
q4	10138	743	709	709
q5	7761	2830	2800	2800
q6	230	140	146	140
q7	961	625	619	619
q8	9321	2080	2073	2073
q9	7087	6533	6570	6533
q10	7016	2269	2207	2207
q11	443	241	246	241
q12	402	233	237	233
q13	18121	3058	3019	3019
q14	303	259	250	250
q15	516	488	504	488
q16	495	391	391	391
q17	1001	687	747	687
q18	7261	6951	6775	6775
q19	1382	1070	1081	1070
q20	672	344	332	332
q21	3980	3252	2810	2810
q22	1117	1005	1019	1005
Total cold run time: 108934 ms
Total hot run time: 38086 ms

----- Round 2, with runtime_filter_mode=off -----
q1	4414	4353	4367	4353
q2	375	286	298	286
q3	2892	2658	2644	2644
q4	1949	1682	1707	1682
q5	5407	5385	5446	5385
q6	219	133	135	133
q7	2106	1725	1724	1724
q8	3209	3408	3382	3382
q9	8476	8498	8424	8424
q10	3486	3272	3206	3206
q11	604	492	521	492
q12	794	621	614	614
q13	11997	3068	3037	3037
q14	321	274	277	274
q15	522	483	490	483
q16	477	424	426	424
q17	1810	1489	1469	1469
q18	7640	7502	7421	7421
q19	1697	1348	1493	1348
q20	2088	1846	1811	1811
q21	5413	5208	5388	5208
q22	1118	1028	1007	1007
Total cold run time: 67014 ms
Total hot run time: 54807 ms

@doris-robot
Copy link
Copy Markdown

TPC-DS: Total hot run time: 187032 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
TPC-DS sf100 test result on commit a28c3b16fba03cfcf1430f498997a409291a1040, data reload: false

query1	910	384	366	366
query2	6510	1915	1895	1895
query3	6668	214	216	214
query4	34538	23318	23205	23205
query5	4148	505	496	496
query6	259	174	183	174
query7	4580	295	297	295
query8	255	214	198	198
query9	8469	2443	2428	2428
query10	447	272	270	270
query11	16568	15077	15028	15028
query12	148	100	99	99
query13	1624	379	381	379
query14	9643	7165	6873	6873
query15	277	171	165	165
query16	8037	485	464	464
query17	1573	587	542	542
query18	2102	288	287	287
query19	189	144	149	144
query20	115	116	109	109
query21	212	104	103	103
query22	4436	4288	4130	4130
query23	33998	33263	33526	33263
query24	11304	2933	2958	2933
query25	625	404	409	404
query26	1200	168	167	167
query27	2457	290	285	285
query28	7379	2039	2022	2022
query29	842	444	427	427
query30	316	160	159	159
query31	960	794	776	776
query32	96	58	60	58
query33	770	302	312	302
query34	959	483	497	483
query35	870	723	730	723
query36	1091	915	963	915
query37	148	88	88	88
query38	4007	3829	3849	3829
query39	1457	1389	1412	1389
query40	202	125	124	124
query41	50	51	46	46
query42	122	98	99	98
query43	504	483	480	480
query44	1304	748	763	748
query45	202	172	175	172
query46	1114	759	798	759
query47	1901	1792	1794	1792
query48	379	301	323	301
query49	1128	448	439	439
query50	813	417	427	417
query51	7191	7068	6964	6964
query52	101	89	89	89
query53	267	199	185	185
query54	1109	468	474	468
query55	80	76	81	76
query56	291	262	271	262
query57	1207	1045	1088	1045
query58	255	240	240	240
query59	2884	2933	2766	2766
query60	324	288	280	280
query61	123	119	122	119
query62	847	663	682	663
query63	229	194	192	192
query64	6579	2336	1835	1835
query65	3278	3182	3183	3182
query66	1392	354	358	354
query67	15420	15239	15432	15239
query68	4588	594	573	573
query69	500	287	282	282
query70	1193	1117	1055	1055
query71	407	283	282	282
query72	7467	2334	2103	2103
query73	779	329	330	329
query74	9357	8696	8913	8696
query75	3422	2698	2770	2698
query76	2696	1095	944	944
query77	541	309	364	309
query78	9623	9043	9134	9043
query79	2513	545	547	545
query80	916	512	496	496
query81	578	227	223	223
query82	951	140	135	135
query83	264	154	155	154
query84	237	84	80	80
query85	1593	291	318	291
query86	429	300	282	282
query87	4485	4191	4252	4191
query88	3641	2376	2358	2358
query89	390	287	286	286
query90	1779	205	209	205
query91	131	103	105	103
query92	70	53	56	53
query93	1699	557	547	547
query94	832	303	291	291
query95	356	268	269	268
query96	590	276	274	274
query97	3140	3067	3051	3051
query98	231	212	202	202
query99	1521	1261	1290	1261
Total cold run time: 296402 ms
Total hot run time: 187032 ms

@doris-robot
Copy link
Copy Markdown

ClickBench: Total hot run time: 31.05 s
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools
ClickBench test result on commit a28c3b16fba03cfcf1430f498997a409291a1040, data reload: false

query1	0.05	0.05	0.04
query2	0.10	0.03	0.04
query3	0.24	0.06	0.05
query4	1.66	0.08	0.07
query5	0.52	0.48	0.50
query6	1.13	0.74	0.73
query7	0.02	0.01	0.01
query8	0.05	0.04	0.05
query9	0.56	0.49	0.48
query10	0.53	0.55	0.53
query11	0.15	0.12	0.11
query12	0.15	0.12	0.12
query13	0.61	0.59	0.60
query14	0.78	0.77	0.81
query15	0.88	0.83	0.82
query16	0.38	0.37	0.37
query17	1.06	1.05	0.99
query18	0.21	0.20	0.20
query19	1.87	1.74	1.81
query20	0.01	0.01	0.01
query21	15.40	0.66	0.66
query22	4.40	6.49	2.28
query23	18.27	1.39	1.23
query24	2.09	0.24	0.22
query25	0.17	0.08	0.09
query26	0.27	0.18	0.17
query27	0.07	0.08	0.06
query28	13.18	1.03	0.99
query29	12.62	3.37	3.39
query30	0.25	0.06	0.05
query31	2.89	0.41	0.40
query32	3.24	0.49	0.48
query33	2.97	2.96	3.03
query34	17.02	4.43	4.39
query35	4.38	4.45	4.44
query36	0.66	0.49	0.48
query37	0.20	0.16	0.16
query38	0.16	0.16	0.15
query39	0.05	0.04	0.04
query40	0.16	0.12	0.13
query41	0.09	0.05	0.05
query42	0.05	0.05	0.05
query43	0.05	0.05	0.04
Total cold run time: 109.6 s
Total hot run time: 31.05 s

@sollhui
Copy link
Copy Markdown
Contributor Author

sollhui commented Aug 24, 2024

run buildall

@doris-robot
Copy link
Copy Markdown

TPC-H: Total hot run time: 38152 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
Tpch sf100 test result on commit 9326739e18624e37bc054bee7f94594e27117c49, data reload: false

------ Round 1 ----------------------------------
q1	18099	4583	4371	4371
q2	2473	178	173	173
q3	11113	1163	1075	1075
q4	10525	752	755	752
q5	8056	2895	2823	2823
q6	226	139	141	139
q7	975	622	616	616
q8	9605	2126	2052	2052
q9	7225	6523	6548	6523
q10	7008	2247	2259	2247
q11	468	250	246	246
q12	398	218	220	218
q13	18915	3099	3055	3055
q14	276	240	235	235
q15	529	502	499	499
q16	496	386	391	386
q17	1028	720	632	632
q18	7389	6780	6953	6780
q19	1393	958	1074	958
q20	680	342	325	325
q21	3985	3040	3065	3040
q22	1125	1007	1022	1007
Total cold run time: 111987 ms
Total hot run time: 38152 ms

----- Round 2, with runtime_filter_mode=off -----
q1	4432	4297	4245	4245
q2	383	283	285	283
q3	2928	2690	2693	2690
q4	1952	1673	1628	1628
q5	5379	5376	5385	5376
q6	220	131	134	131
q7	2071	1715	1726	1715
q8	3192	3363	3356	3356
q9	8506	8483	8413	8413
q10	3469	3224	3194	3194
q11	595	510	515	510
q12	798	633	588	588
q13	12230	3063	3046	3046
q14	308	289	286	286
q15	529	499	480	480
q16	479	437	434	434
q17	1843	1487	1463	1463
q18	7801	7367	7424	7367
q19	1678	1501	1633	1501
q20	2048	1803	1814	1803
q21	5351	5375	5108	5108
q22	1099	1049	1029	1029
Total cold run time: 67291 ms
Total hot run time: 54646 ms

@doris-robot
Copy link
Copy Markdown

TPC-DS: Total hot run time: 187411 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
TPC-DS sf100 test result on commit 9326739e18624e37bc054bee7f94594e27117c49, data reload: false

query1	902	386	362	362
query2	6452	1994	1946	1946
query3	6661	212	220	212
query4	34191	23099	23180	23099
query5	4160	528	504	504
query6	255	168	185	168
query7	4579	305	298	298
query8	263	208	207	207
query9	8469	2452	2433	2433
query10	444	287	276	276
query11	16686	14971	15000	14971
query12	143	100	95	95
query13	1642	384	382	382
query14	9987	7307	7164	7164
query15	254	172	180	172
query16	8022	467	475	467
query17	1608	577	572	572
query18	2083	319	284	284
query19	266	147	149	147
query20	117	114	116	114
query21	210	103	100	100
query22	4588	4030	4216	4030
query23	34324	33706	33641	33641
query24	10961	2909	2902	2902
query25	612	403	380	380
query26	1177	158	158	158
query27	2470	287	281	281
query28	7294	2051	2039	2039
query29	816	416	406	406
query30	308	158	154	154
query31	977	774	721	721
query32	99	57	56	56
query33	756	301	303	301
query34	949	475	487	475
query35	882	737	746	737
query36	1099	938	949	938
query37	161	94	85	85
query38	4073	3894	3964	3894
query39	1438	1407	1384	1384
query40	198	118	118	118
query41	50	49	46	46
query42	121	98	101	98
query43	501	499	490	490
query44	1218	753	760	753
query45	194	172	172	172
query46	1110	734	745	734
query47	1869	1796	1799	1796
query48	385	298	298	298
query49	1085	422	432	422
query50	828	417	424	417
query51	7195	7016	7036	7016
query52	101	89	90	89
query53	254	183	180	180
query54	973	470	470	470
query55	81	77	77	77
query56	283	265	254	254
query57	1217	1101	1055	1055
query58	253	235	252	235
query59	3004	2947	2816	2816
query60	298	276	280	276
query61	101	107	102	102
query62	834	662	671	662
query63	226	187	187	187
query64	5365	2353	1751	1751
query65	3221	3170	3168	3168
query66	1371	339	343	339
query67	15753	15103	15416	15103
query68	3133	596	609	596
query69	420	294	287	287
query70	1205	1074	1079	1074
query71	347	275	280	275
query72	6268	2308	2036	2036
query73	757	328	338	328
query74	9108	8780	8848	8780
query75	3408	2756	2645	2645
query76	1875	1025	993	993
query77	489	321	326	321
query78	9693	9054	9454	9054
query79	1011	537	553	537
query80	696	509	507	507
query81	446	230	226	226
query82	234	136	143	136
query83	180	159	152	152
query84	228	82	78	78
query85	673	300	290	290
query86	340	298	275	275
query87	4358	4277	4210	4210
query88	2891	2395	2403	2395
query89	374	284	288	284
query90	1859	209	204	204
query91	137	179	102	102
query92	64	55	52	52
query93	1032	540	544	540
query94	697	319	299	299
query95	377	269	270	269
query96	586	268	273	268
query97	3181	3060	3094	3060
query98	215	210	197	197
query99	1464	1262	1315	1262
Total cold run time: 286213 ms
Total hot run time: 187411 ms

@doris-robot
Copy link
Copy Markdown

ClickBench: Total hot run time: 30.43 s
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools
ClickBench test result on commit 9326739e18624e37bc054bee7f94594e27117c49, data reload: false

query1	0.05	0.04	0.04
query2	0.08	0.04	0.04
query3	0.23	0.05	0.06
query4	1.68	0.08	0.08
query5	0.50	0.49	0.50
query6	1.12	0.72	0.72
query7	0.02	0.01	0.02
query8	0.05	0.04	0.04
query9	0.55	0.47	0.48
query10	0.54	0.54	0.54
query11	0.15	0.11	0.12
query12	0.15	0.12	0.12
query13	0.61	0.59	0.59
query14	0.78	0.78	0.77
query15	0.89	0.82	0.82
query16	0.36	0.38	0.37
query17	1.01	0.98	1.00
query18	0.22	0.22	0.21
query19	1.98	1.80	1.69
query20	0.01	0.01	0.01
query21	15.44	0.67	0.67
query22	4.16	7.50	1.67
query23	18.35	1.37	1.36
query24	2.11	0.23	0.23
query25	0.15	0.08	0.09
query26	0.27	0.18	0.18
query27	0.08	0.07	0.08
query28	13.62	1.03	1.01
query29	12.86	3.34	3.29
query30	0.25	0.07	0.05
query31	2.86	0.41	0.40
query32	3.24	0.49	0.48
query33	2.96	2.99	2.95
query34	17.13	4.36	4.36
query35	4.44	4.40	4.39
query36	0.65	0.48	0.50
query37	0.19	0.17	0.17
query38	0.16	0.14	0.15
query39	0.06	0.04	0.04
query40	0.16	0.12	0.13
query41	0.09	0.06	0.05
query42	0.06	0.05	0.05
query43	0.05	0.04	0.04
Total cold run time: 110.32 s
Total hot run time: 30.43 s

liaoxin01
liaoxin01 previously approved these changes Aug 26, 2024
Copy link
Copy Markdown
Contributor

@liaoxin01 liaoxin01 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions github-actions bot added the approved Indicates a PR has been approved by one committer. label Aug 26, 2024
@github-actions
Copy link
Copy Markdown
Contributor

PR approved by at least one committer and no changes requested.

@github-actions
Copy link
Copy Markdown
Contributor

PR approved by anyone and no changes requested.

Copy link
Copy Markdown
Contributor

@XuJianxu XuJianxu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@sollhui
Copy link
Copy Markdown
Contributor Author

sollhui commented Aug 27, 2024

run buildall

@github-actions github-actions bot removed the approved Indicates a PR has been approved by one committer. label Aug 27, 2024
@doris-robot
Copy link
Copy Markdown

TPC-H: Total hot run time: 37951 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
Tpch sf100 test result on commit 1d0ebd44bd8cd87095b7a3f5aed21fab796cdd20, data reload: false

------ Round 1 ----------------------------------
q1	17673	4368	4319	4319
q2	2021	191	173	173
q3	11712	997	1115	997
q4	10520	745	708	708
q5	7738	2823	2835	2823
q6	222	138	141	138
q7	987	610	604	604
q8	9317	2067	2070	2067
q9	7074	6558	6579	6558
q10	7029	2158	2175	2158
q11	459	243	245	243
q12	398	223	230	223
q13	17774	3030	3027	3027
q14	285	232	231	231
q15	540	496	476	476
q16	499	397	387	387
q17	987	680	691	680
q18	7321	6886	6752	6752
q19	1397	980	1037	980
q20	710	329	338	329
q21	4185	3202	3071	3071
q22	1110	1035	1007	1007
Total cold run time: 109958 ms
Total hot run time: 37951 ms

----- Round 2, with runtime_filter_mode=off -----
q1	4417	4324	4328	4324
q2	380	271	269	269
q3	2891	2724	2678	2678
q4	1940	1650	1623	1623
q5	5535	5683	5696	5683
q6	237	146	142	142
q7	2253	1802	1822	1802
q8	3304	3394	3433	3394
q9	8876	8810	8849	8810
q10	3576	3376	3397	3376
q11	613	515	521	515
q12	810	673	670	670
q13	14871	3251	3158	3158
q14	331	290	289	289
q15	542	489	504	489
q16	504	437	450	437
q17	1850	1544	1528	1528
q18	8101	7772	7893	7772
q19	1760	1619	1593	1593
q20	2164	1884	1928	1884
q21	5733	5475	5520	5475
q22	1196	1110	1034	1034
Total cold run time: 71884 ms
Total hot run time: 56945 ms

@doris-robot
Copy link
Copy Markdown

TPC-DS: Total hot run time: 191723 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
TPC-DS sf100 test result on commit 1d0ebd44bd8cd87095b7a3f5aed21fab796cdd20, data reload: false

query1	1250	913	880	880
query2	6157	1948	1921	1921
query3	10613	4069	4104	4069
query4	60147	26403	23060	23060
query5	5419	516	523	516
query6	410	172	184	172
query7	5754	295	286	286
query8	284	200	205	200
query9	8949	2500	2491	2491
query10	494	274	264	264
query11	18105	15066	15424	15066
query12	157	103	125	103
query13	1552	389	373	373
query14	11231	7456	7500	7456
query15	229	175	177	175
query16	7478	469	496	469
query17	1118	589	595	589
query18	1967	307	294	294
query19	286	145	165	145
query20	123	109	109	109
query21	206	105	100	100
query22	4571	4326	4256	4256
query23	34358	33753	33383	33383
query24	5937	2917	2828	2828
query25	525	372	373	372
query26	687	157	155	155
query27	1765	270	271	270
query28	3770	2061	2060	2060
query29	679	405	408	405
query30	229	154	148	148
query31	940	782	731	731
query32	83	51	53	51
query33	458	287	276	276
query34	869	462	470	462
query35	872	724	708	708
query36	1061	940	941	940
query37	136	88	80	80
query38	4031	3938	3915	3915
query39	1469	1409	1416	1409
query40	199	119	122	119
query41	52	47	47	47
query42	122	99	102	99
query43	523	492	490	490
query44	1093	738	750	738
query45	196	164	202	164
query46	1103	737	713	713
query47	1888	1769	1814	1769
query48	361	296	296	296
query49	765	426	430	426
query50	818	410	423	410
query51	7108	7029	7110	7029
query52	96	87	85	85
query53	250	180	179	179
query54	561	457	442	442
query55	79	74	79	74
query56	274	255	274	255
query57	1197	1068	1037	1037
query58	217	238	225	225
query59	3120	2897	2756	2756
query60	289	270	277	270
query61	142	101	98	98
query62	785	664	625	625
query63	212	186	189	186
query64	3319	1763	1746	1746
query65	3209	3185	3175	3175
query66	664	337	340	337
query67	15436	15281	15164	15164
query68	2996	564	602	564
query69	406	278	274	274
query70	1120	1027	1030	1027
query71	362	277	271	271
query72	2586	2164	2064	2064
query73	719	319	323	319
query74	9094	8865	8827	8827
query75	3384	2721	2719	2719
query76	1381	986	960	960
query77	563	318	315	315
query78	11082	9387	9045	9045
query79	1032	543	533	533
query80	677	499	519	499
query81	450	235	230	230
query82	298	139	132	132
query83	168	148	149	148
query84	258	74	80	74
query85	729	292	280	280
query86	333	300	269	269
query87	4499	4181	4233	4181
query88	3244	2322	2421	2322
query89	382	290	284	284
query90	1888	196	193	193
query91	120	97	106	97
query92	61	51	54	51
query93	1039	532	538	532
query94	685	294	298	294
query95	326	262	264	262
query96	590	273	268	268
query97	3210	3134	3067	3067
query98	223	216	202	202
query99	1501	1280	1279	1279
Total cold run time: 303853 ms
Total hot run time: 191723 ms

@doris-robot
Copy link
Copy Markdown

ClickBench: Total hot run time: 31.04 s
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools
ClickBench test result on commit 1d0ebd44bd8cd87095b7a3f5aed21fab796cdd20, data reload: false

query1	0.05	0.04	0.04
query2	0.08	0.04	0.04
query3	0.22	0.05	0.05
query4	1.68	0.07	0.08
query5	0.49	0.48	0.49
query6	1.12	0.74	0.75
query7	0.02	0.01	0.01
query8	0.05	0.04	0.04
query9	0.55	0.50	0.47
query10	0.54	0.56	0.55
query11	0.15	0.11	0.12
query12	0.15	0.13	0.13
query13	0.62	0.60	0.59
query14	0.77	0.79	0.78
query15	0.85	0.83	0.82
query16	0.37	0.38	0.38
query17	1.04	1.06	1.05
query18	0.21	0.21	0.21
query19	1.94	1.79	1.76
query20	0.01	0.01	0.01
query21	15.39	0.67	0.68
query22	4.33	7.41	2.04
query23	18.27	1.33	1.30
query24	2.16	0.23	0.22
query25	0.15	0.08	0.08
query26	0.25	0.18	0.17
query27	0.09	0.07	0.08
query28	13.19	1.03	1.00
query29	12.63	3.40	3.37
query30	0.24	0.06	0.06
query31	2.88	0.42	0.40
query32	3.23	0.48	0.47
query33	2.97	3.00	3.02
query34	17.01	4.42	4.37
query35	4.42	4.42	4.52
query36	0.66	0.48	0.49
query37	0.19	0.16	0.17
query38	0.16	0.15	0.16
query39	0.04	0.03	0.04
query40	0.17	0.13	0.12
query41	0.09	0.04	0.04
query42	0.05	0.05	0.06
query43	0.05	0.04	0.04
Total cold run time: 109.53 s
Total hot run time: 31.04 s

Copy link
Copy Markdown
Contributor

@liaoxin01 liaoxin01 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions github-actions bot added the approved Indicates a PR has been approved by one committer. label Aug 27, 2024
@github-actions
Copy link
Copy Markdown
Contributor

PR approved by at least one committer and no changes requested.

@liaoxin01 liaoxin01 merged commit 8ccf2f2 into apache:master Aug 27, 2024
dataroaring pushed a commit that referenced this pull request Aug 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by one committer. dev/3.0.2-merged reviewed

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants