lhotari commented on PR #24623: URL: https://github.com/apache/pulsar/pull/24623#issuecomment-3201583643
Latest results: ```shell ENABLE_MANUAL_TEST=true NETTY_LEAK_DETECTION=off command mvn -pl pulsar-broker test -Dtest=BrokerEntryCacheMultiBrokerTest ``` ```shell ❯ { cat pulsar-broker/target/rolling_restarts_result_header.txt; cat pulsar-broker/target/rolling_restarts_result_*.csv } | duckdb -c "select * from read_csv('/dev/stdin')" |cat ┌────────────────────────────────────┬──────────┬──────────┬───────────┬──────────┬─────────────────┬────────┬────────┬──────────┬───────────────┐ │ desc │ produced │ consumed │ consumers │ bk_reads │ bk_read_entries │ hits │ misses │ restarts │ ts │ │ varchar │ int64 │ int64 │ int64 │ int64 │ int64 │ double │ double │ int64 │ int64 │ ├────────────────────────────────────┼──────────┼──────────┼───────────┼──────────┼─────────────────┼────────┼────────┼──────────┼───────────────┤ │ cacheEvictionByMarkDeletedPosition │ 2660292 │ 26102837 │ 10 │ 87047 │ 8626725 │ 66.95 │ 33.05 │ 3 │ 1755623354982 │ │ cacheEvictionByMarkDeletedPosition │ 2647945 │ 26028044 │ 10 │ 69754 │ 15571349 │ 40.17 │ 59.83 │ 3 │ 1755623387463 │ │ cacheEvictionByMarkDeletedPosition │ 2803509 │ 27535085 │ 10 │ 19000 │ 17466420 │ 36.57 │ 63.43 │ 3 │ 1755623418762 │ │ cacheEvictionByMarkDeletedPosition │ 2648032 │ 26006855 │ 10 │ 88187 │ 26220971 │ -0.82 │ 100.82 │ 3 │ 1755623451152 │ │ cacheEvictionByMarkDeletedPosition │ 2388742 │ 23387415 │ 10 │ 80938 │ 34265177 │ -46.51 │ 146.51 │ 3 │ 1755623482483 │ │ PR12258 │ 2922876 │ 28728667 │ 10 │ 21638 │ 2161003 │ 92.48 │ 7.52 │ 3 │ 1755623524024 │ │ PR12258 │ 2605045 │ 25611487 │ 10 │ 8382 │ 2997768 │ 88.3 │ 11.7 │ 3 │ 1755623556442 │ │ PR12258 │ 2679822 │ 26298140 │ 10 │ 12208 │ 4213620 │ 83.98 │ 16.02 │ 3 │ 1755623589188 │ │ PR12258 │ 2420780 │ 23774162 │ 10 │ 7935 │ 5005927 │ 78.94 │ 21.06 │ 3 │ 1755623621678 │ │ PR12258 │ 2351600 │ 23015996 │ 10 │ 5859 │ 5581687 │ 75.75 │ 24.25 │ 3 │ 1755623653041 │ │ PIP430 │ 2914091 │ 28640822 │ 10 │ 5918 │ 589504 │ 97.94 │ 2.06 │ 3 │ 1755623694786 │ │ PIP430 │ 2922053 │ 28794218 │ 10 │ 9955 │ 1574605 │ 94.53 │ 5.47 │ 3 │ 1755623727195 │ │ PIP430 │ 2623624 │ 25736240 │ 10 │ 7131 │ 2286231 │ 91.12 │ 8.88 │ 3 │ 1755623758620 │ │ PIP430 │ 2583862 │ 25388696 │ 10 │ 6245 │ 2899585 │ 88.58 │ 11.42 │ 3 │ 1755623791074 │ │ PIP430 │ 2294603 │ 22446027 │ 10 │ 8299 │ 3726636 │ 83.4 │ 16.6 │ 3 │ 1755623822450 │ │ expectedReadCountDisabled │ 2713720 │ 26637115 │ 10 │ 78585 │ 7795124 │ 70.74 │ 29.26 │ 3 │ 1755623863844 │ │ expectedReadCountDisabled │ 2865916 │ 28181263 │ 10 │ 99677 │ 17718814 │ 37.13 │ 62.87 │ 3 │ 1755623896222 │ │ expectedReadCountDisabled │ 2838176 │ 27881679 │ 10 │ 96236 │ 27312325 │ 2.04 │ 97.96 │ 3 │ 1755623928988 │ │ expectedReadCountDisabled │ 2590901 │ 25464936 │ 10 │ 79871 │ 35279058 │ -38.54 │ 138.54 │ 3 │ 1755623961372 │ │ expectedReadCountDisabled │ 2449431 │ 23994309 │ 10 │ 82496 │ 43419652 │ -80.96 │ 180.96 │ 3 │ 1755623992682 │ ├────────────────────────────────────┴──────────┴──────────┴───────────┴──────────┴─────────────────┴────────┴────────┴──────────┴───────────────┤ │ 20 rows 10 columns │ └────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘ ``` ```shell ❯ { cat pulsar-broker/target/rolling_restarts_result_header.txt; cat pulsar-broker/target/rolling_restarts_result_*.csv } | duckdb -c "select description, avg(produced), avg(consumed), avg(bk_reads), avg(bk_read_entries), avg(hits), avg(misses) from read_csv('/dev/stdin') group by description order by 5" |cat ┌────────────────────────────────────┬───────────────┬───────────────┬───────────────┬──────────────────────┬────────────────────┬─────────────┐ │ description │ avg(produced) │ avg(consumed) │ avg(bk_reads) │ avg(bk_read_entries) │ avg(hits) │ avg(misses) │ │ varchar │ double │ double │ double │ double │ double │ double │ ├────────────────────────────────────┼───────────────┼───────────────┼───────────────┼──────────────────────┼────────────────────┼─────────────┤ │ PIP430 │ 2667646.6 │ 26201200.6 │ 7509.6 │ 2215312.2 │ 91.114 │ 8.886 │ │ PR12258 │ 2596024.6 │ 25485690.4 │ 11204.4 │ 3992001.0 │ 83.89 │ 16.11 │ │ cacheEvictionByMarkDeletedPosition │ 2629704.0 │ 25812047.2 │ 68985.2 │ 20430128.4 │ 19.272000000000002 │ 80.728 │ │ expectedReadCountDisabled │ 2691628.8 │ 26431860.4 │ 87373.0 │ 26304994.6 │ -1.917999999999998 │ 101.918 │ └────────────────────────────────────┴───────────────┴───────────────┴───────────────┴──────────────────────┴────────────────────┴─────────────┘ ``` -- 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