Earlier quoted context omitted.
I was under impression that servers and databases generally run on Linux though.
Windows still runs on 71% of the desktop and laptops [1]. In my experience a good number of applications start life on simple desktops and then graduate to servers if they are successful. I work in the field of analytics. I have a locked down Windows desktop and I have been able to try out all the other databases such as MySQL, MariaDB, PostgreSQL and DuckDB because they have windows installers or portable apps. I ha…
ClickHouse gets lazier and faster: Introducing lazy materialization
121–130 of 130 posts
Re: ClickHouse gets lazier and faster: Introducing lazy materialization
#122Earlier quoted context omitted.
Nah, duckdb does have their own format (not sure if it's write friendly, though i believe it is).
It does, but the performance isn't great apparently: https://github.com/duckdb/duckdb/discussions/10161
Re: ClickHouse gets lazier and faster: Introducing lazy materialization
#123Re: ClickHouse gets lazier and faster: Introducing lazy materialization
#124Earlier quoted context omitted.
In my understanding DuckDB doesn't have its own optimised storage that can accept writes (in a sense that ClickHouse does, where it's native storage format gives you best performance), and instead relies on e.g. reading data from Parquet and other formats. That makes sense for an embedded analytics engine on top of existing files, but might be a problem if you wanted to use DuckDB e.g. for real-time analytics where t…
Nah, duckdb does have their own format (not sure if it's write friendly, though i believe it is).
Re: ClickHouse gets lazier and faster: Introducing lazy materialization
#125I really like Clickhouse. Discovered it recently, and man, it's such a breath of fresh air compared to suboptimal solutions I used for analytics. It's so fast and the CLI is also a joy to work with.
How does it compare to duckdb and/or polars?
Re: ClickHouse gets lazier and faster: Introducing lazy materialization
#126Has anyone compared ClickHouse and StarRocks[0]? Join performance seems a lot better on StarRocks a few months ago but I'm not sure if that still holds true. [0] https://www.starrocks.io/
Yes! There is a benchmark on ClickBench: https://benchmark.clickhouse.com/#eyJzeXN0ZW0iOnsiQWxsb3lEQi...
Re: ClickHouse gets lazier and faster: Introducing lazy materialization
#127Re: ClickHouse gets lazier and faster: Introducing lazy materialization
#128Earlier quoted context omitted.
That’s true. With such a small data domain, there would be a lot repeated numbers in the 160M values, leading to highly compressible data.
I found in the article that the column uses 70 Mb of storage. if it was sorted (i.e. if it was an index) it would take even much less space. I don't understand though how they loaded 70 Mb of data with 125 MiB/s SSD in 70 ms.
Re: ClickHouse gets lazier and faster: Introducing lazy materialization
#129Re: ClickHouse gets lazier and faster: Introducing lazy materialization
#130Late Materialization, 19 years later. https://dspace.mit.edu/bitstream/handle/1721.1/34929/MIT-CSA...
Same thing with columnar/vectorized execution. It has been known for a long time that's the "correct" way to process data for olap workflows, but only became "mainstream" in the last few years(mostly due to arrow). It's awesome that clickhouse is adopting it now, but a shame that it's not standard on anything that does analytics processing.