lhotari commented on PR #24623: URL: https://github.com/apache/pulsar/pull/24623#issuecomment-3201797905
another test run on Linux (Dell XPS 2019) ``` ❯ { 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 ┌────────────────────────────────────┬──────────┬──────────┬───────────┬──────────┬─────────────────┬────────┬────────┬──────────┬───────────────┐ │ description │ produced │ consumed │ consumers │ bk_reads │ bk_read_entries │ hits │ misses │ restarts │ ts │ │ varchar │ int64 │ int64 │ int64 │ int64 │ int64 │ double │ double │ int64 │ int64 │ ├────────────────────────────────────┼──────────┼──────────┼───────────┼──────────┼─────────────────┼────────┼────────┼──────────┼───────────────┤ │ PR12258 │ 1586948 │ 15369410 │ 10 │ 4573 │ 456940 │ 97.03 │ 2.97 │ 3 │ 1755625060172 │ │ PR12258 │ 1704700 │ 16546907 │ 10 │ 6146 │ 1070325 │ 93.53 │ 6.47 │ 3 │ 1755625094138 │ │ PR12258 │ 1707037 │ 16570280 │ 10 │ 5819 │ 1651148 │ 90.04 │ 9.96 │ 3 │ 1755625128066 │ │ PR12258 │ 1589975 │ 15399742 │ 10 │ 6179 │ 2268268 │ 85.27 │ 14.73 │ 3 │ 1755625160378 │ │ PR12258 │ 1488465 │ 14384635 │ 10 │ 7826 │ 3043915 │ 78.84 │ 21.16 │ 3 │ 1755625192726 │ │ cacheEvictionByMarkDeletedPosition │ 1829818 │ 17798178 │ 10 │ 61741 │ 6117317 │ 65.63 │ 34.37 │ 3 │ 1755625232476 │ │ cacheEvictionByMarkDeletedPosition │ 1754086 │ 17040761 │ 10 │ 60729 │ 12173489 │ 28.56 │ 71.44 │ 3 │ 1755625266333 │ │ cacheEvictionByMarkDeletedPosition │ 1663637 │ 16136278 │ 10 │ 55127 │ 17642584 │ -9.33 │ 109.33 │ 3 │ 1755625300086 │ │ cacheEvictionByMarkDeletedPosition │ 1624190 │ 15741802 │ 10 │ 57864 │ 23413994 │ -48.74 │ 148.74 │ 3 │ 1755625334313 │ │ cacheEvictionByMarkDeletedPosition │ 1525370 │ 14753695 │ 10 │ 56423 │ 29011484 │ -96.64 │ 196.64 │ 3 │ 1755625366638 │ │ PIP430 │ 1764900 │ 17148929 │ 10 │ 4656 │ 463104 │ 97.3 │ 2.7 │ 3 │ 1755625406760 │ │ PIP430 │ 1601618 │ 15516081 │ 10 │ 2252 │ 687211 │ 95.57 │ 4.43 │ 3 │ 1755625440450 │ │ PIP430 │ 1662700 │ 16126908 │ 10 │ 2193 │ 905276 │ 94.39 │ 5.61 │ 3 │ 1755625474464 │ │ PIP430 │ 1585166 │ 15351651 │ 10 │ 2194 │ 1122469 │ 92.69 │ 7.31 │ 3 │ 1755625506824 │ │ PIP430 │ 1397511 │ 13475103 │ 10 │ 3555 │ 1476782 │ 89.04 │ 10.96 │ 3 │ 1755625539074 │ │ expectedReadCountDisabled │ 1838515 │ 17885141 │ 10 │ 59649 │ 5841817 │ 67.34 │ 32.66 │ 3 │ 1755625578829 │ │ expectedReadCountDisabled │ 1584838 │ 15355347 │ 10 │ 47307 │ 10508953 │ 31.56 │ 68.44 │ 3 │ 1755625610988 │ │ expectedReadCountDisabled │ 1653430 │ 16034233 │ 10 │ 58296 │ 16285532 │ -1.57 │ 101.57 │ 3 │ 1755625642709 │ │ expectedReadCountDisabled │ 1536412 │ 14864026 │ 10 │ 45301 │ 20773771 │ -39.76 │ 139.76 │ 3 │ 1755625676502 │ │ expectedReadCountDisabled │ 1412762 │ 13627616 │ 10 │ 46508 │ 25404363 │ -86.42 │ 186.42 │ 3 │ 1755625708764 │ ├────────────────────────────────────┴──────────┴──────────┴───────────┴──────────┴─────────────────┴────────┴────────┴──────────┴───────────────┤ │ 20 rows 10 columns │ └────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘ ❯ { 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 │ 1602379.0 │ 15523734.4 │ 2970.0 │ 930968.4 │ 93.798 │ 6.202 │ │ PR12258 │ 1615425.0 │ 15654194.8 │ 6108.6 │ 1698119.2 │ 88.94200000000001 │ 11.057999999999998 │ │ expectedReadCountDisabled │ 1605191.4 │ 15553272.6 │ 51412.2 │ 15762887.2 │ -5.769999999999998 │ 105.76999999999998 │ │ cacheEvictionByMarkDeletedPosition │ 1679420.2 │ 16294142.8 │ 58376.8 │ 17671773.6 │ -12.104000000000001 │ 112.104 │ └────────────────────────────────────┴───────────────┴───────────────┴───────────────┴──────────────────────┴─────────────────────┴────────────────────┘ ``` -- 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