lhotari commented on PR #24623: URL: https://github.com/apache/pulsar/pull/24623#issuecomment-3214666886
I also ran the test run on GCP on e2-highcpu-8 VM. The base VM setup was done using [these instructions](https://github.com/lhotari/pulsar-release-validation?tab=readme-ov-file#cloud-vm-instructions). Tested hash was 9f185b0c06c24f28fd6d846aa585995f2a928a90 ``` $ ENABLE_MANUAL_TEST=true NETTY_LEAK_DETECTION=off mvn -PtestLoggingToFile -pl pulsar-broker test -Dtest=BrokerEntryCacheRollingRestartTest ... $ { cat pulsar-broker/target/rolling_restarts_result_header.txt; cat pulsar-broker/target/rolling_restarts_result_*.csv; } | duckdb -markdo wn -c "select description, round(avg(hits), 2), round(avg(misses),2), avg(produced), avg(consumed), avg(bk_reads), avg(bk_read_entries) from read_csv('/dev/stdin') group by descr iption order by 3" ``` | description | round(avg(hits), 2) | round(avg(misses), 2) | avg(produced) | avg(consumed) | avg(bk_reads) | avg(bk_read_entries) | |------------------------------------|--------------------:|----------------------:|--------------:|--------------:|--------------:|---------------------:| | PIP430 | 64.4 | 35.6 | 945271.4 | 9488097.4 | 36004.8 | 3389183.8 | | PIP430disabled | 17.26 | 82.74 | 987600.6 | 9914821.4 | 87639.0 | 8237855.4 | | PR12258 | 16.69 | 83.31 | 736788.6 | 7405417.2 | 64793.0 | 6165019.0 | | cacheEvictionByMarkDeletedPosition | 10.44 | 89.56 | 883692.8 | 8873488.2 | 84476.6 | 7935516.6 | ``` $ { cat pulsar-broker/target/rolling_restarts_result_header.txt; cat pulsar-broker/target/rolling_restarts_result_*.csv; } | duckdb -markdown -c "select * from read_csv('/dev/stdin')" ``` | description | produced | consumed | consumers | bk_reads | bk_read_entries | hits | misses | restarts | ts | |------------------------------------|---------:|---------:|----------:|---------:|----------------:|------:|-------:|---------:|-------------------------| | PR12258 | 722205 | 7260204 | 10 | 62770 | 5900925 | 18.72 | 81.28 | 3 | 2025-08-22 14:37:33.051 | | PR12258 | 727260 | 7312068 | 10 | 66696 | 6409363 | 12.35 | 87.65 | 3 | 2025-08-22 14:38:07.886 | | PR12258 | 770503 | 7738888 | 10 | 62813 | 5959073 | 23.0 | 77.0 | 3 | 2025-08-22 14:38:42.591 | | PR12258 | 746141 | 7494393 | 10 | 67358 | 6394109 | 14.68 | 85.32 | 3 | 2025-08-22 14:39:17.402 | | PR12258 | 717834 | 7221533 | 10 | 64328 | 6161625 | 14.68 | 85.32 | 3 | 2025-08-22 14:39:52.448 | | cacheEvictionByMarkDeletedPosition | 990178 | 9953989 | 10 | 87859 | 8372283 | 15.89 | 84.11 | 3 | 2025-08-22 14:40:36.216 | | cacheEvictionByMarkDeletedPosition | 888499 | 8926319 | 10 | 92909 | 8506371 | 4.7 | 95.3 | 3 | 2025-08-22 14:41:10.719 | | cacheEvictionByMarkDeletedPosition | 857009 | 8594563 | 10 | 77840 | 7443520 | 13.39 | 86.61 | 3 | 2025-08-22 14:41:45.061 | | cacheEvictionByMarkDeletedPosition | 853380 | 8572404 | 10 | 83868 | 7838027 | 8.57 | 91.43 | 3 | 2025-08-22 14:42:19.706 | | cacheEvictionByMarkDeletedPosition | 829398 | 8320166 | 10 | 79907 | 7517382 | 9.65 | 90.35 | 3 | 2025-08-22 14:42:54.178 | | PIP430disabled | 1093913 | 10998750 | 10 | 104001 | 9850732 | 10.44 | 89.56 | 3 | 2025-08-22 14:43:37.596 | | PIP430disabled | 965939 | 9693564 | 10 | 73744 | 6934155 | 28.47 | 71.53 | 3 | 2025-08-22 14:44:12.082 | | PIP430disabled | 982209 | 9855468 | 10 | 93342 | 8687182 | 11.85 | 88.15 | 3 | 2025-08-22 14:44:46.605 | | PIP430disabled | 973272 | 9764521 | 10 | 99398 | 9403644 | 3.7 | 96.3 | 3 | 2025-08-22 14:45:21.343 | | PIP430disabled | 922670 | 9261804 | 10 | 67710 | 6313564 | 31.83 | 68.17 | 3 | 2025-08-22 14:45:55.891 | | PIP430 | 1030064 | 10348227 | 10 | 40013 | 3680055 | 64.44 | 35.56 | 3 | 2025-08-22 14:46:39.512 | | PIP430 | 978801 | 9819258 | 10 | 38060 | 3589311 | 63.45 | 36.55 | 3 | 2025-08-22 14:47:14.053 | | PIP430 | 941428 | 9452911 | 10 | 41558 | 3970945 | 57.99 | 42.01 | 3 | 2025-08-22 14:47:48.721 | | PIP430 | 846183 | 8495437 | 10 | 27239 | 2568891 | 69.76 | 30.24 | 3 | 2025-08-22 14:48:23.226 | | PIP430 | 929881 | 9324654 | 10 | 33154 | 3136717 | 66.36 | 33.64 | 3 | 2025-08-22 14:48:58.114 | -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pulsar.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org