Lowered our costs by ~50% and reduced data processing times by orders of magnitudes.
ClickHouse: An open-source column-oriented database management system
31–40 of 58 posts
Re: ClickHouse: An open-source column-oriented database management system
#32People who've used Clickhouse or other OLAP databases in production & at scale, how do you "interconnect" it with relational data? I'm currently experimenting with Clickhouse, because my dataflow is increasing in size (40M rows right now, doubling every month or so) and my current setup (MongoDB) is at its limits. I would like to migrate the 40M rows to CH, but I also need the metadata for the rows to be in something…
Re: ClickHouse: An open-source column-oriented database management system
#33I'm not sure why this got posted again on HN. It's been posted numerous times, though in the past the url used to be https://github.com/yandex/ClickHouse so it wouldn't have been caught as a duplicate. Just searching on HB algolia there are numerous posts. eg: https://hn.algolia.com/?q=clickhouse
tosh submits 10-20 articles a day (yet averages about 1 comment every 2-3 days). There's bound to be some dupes.
Re: ClickHouse: An open-source column-oriented database management system
#34Re: ClickHouse: An open-source column-oriented database management system
#35Great software. We are managing terabytes of stocks data and realtime market scanners queries across all market (billions of books and timesales) with hundreds of concurrent requests. We were using kdb before, but clickhouse is more scalable, way cheaper and much more easy to grasp for a newbie.
Re: ClickHouse: An open-source column-oriented database management system
#36Clickhouse is easily my favorite secret weapon. Lowered our costs by ~50% and reduced data processing times by orders of magnitudes.
Re: ClickHouse: An open-source column-oriented database management system
#37People who've used Clickhouse or other OLAP databases in production & at scale, how do you "interconnect" it with relational data? I'm currently experimenting with Clickhouse, because my dataflow is increasing in size (40M rows right now, doubling every month or so) and my current setup (MongoDB) is at its limits. I would like to migrate the 40M rows to CH, but I also need the metadata for the rows to be in something…
Take a look at query engines like Trino (formerly PrestoSQL) [ https://trino.io/ ]. (Disclaimer: I'm a contributor to Trino). I used it at a previous job to combine data from MongoDB, Kafka, S3 and Postgres to great effect. It tries to push-down as many operations as possible to the source too to improve performance. Full ANSI SQL support over multiple number of backends (Kafka, Cassandra, Postgres, ClickHouse, S3 an…
Re: ClickHouse: An open-source column-oriented database management system
#38Clickhouse is easily my favorite secret weapon. Lowered our costs by ~50% and reduced data processing times by orders of magnitudes.
compared to what? what's the scale of processing - data size, number of transactions etc...? and how much is the cost?
Old system was a hodgepodge of oracle/mssql/postgres with data engineering glue connecting them.
Re: ClickHouse: An open-source column-oriented database management system
#39Great software. We are managing terabytes of stocks data and realtime market scanners queries across all market (billions of books and timesales) with hundreds of concurrent requests. We were using kdb before, but clickhouse is more scalable, way cheaper and much more easy to grasp for a newbie.
You’re ingesting real time data into Clickhouse?