stanchion icon indicating copy to clipboard operation
stanchion copied to clipboard

Performance comparison with ClickHouse

Open alexey-milovidov opened this issue 1 year ago • 2 comments

How does it favor compared to ClickHouse?

alexey-milovidov avatar Feb 01 '24 20:02 alexey-milovidov

My plan was to benchmark against chDB and not Clickhouse because chDB is embedded like sqlite+stanchion. However, you are the Clickhouse expert, so maybe I can pick your brain a bit. Is there an existing benchmark suite that you use across chDB and Clickhouse? And since Clickhouse runs as a server, do you have recommendations for setting up a single node Clickhouse server so that it can be compared to an embedded DB?

dgllghr avatar Feb 01 '24 21:02 dgllghr

Here is the benchmark suite: https://github.com/ClickHouse/ClickBench

Setting up ClickHouse on a single machine:

curl https://clickhouse.com/ | sh
sudo ./clickhouse install
sudo clickhouse start

Running it in an embedded mode without a server:

curl https://clickhouse.com/ | sh
./clickhouse

alexey-milovidov avatar Feb 01 '24 23:02 alexey-milovidov