Pg_ClickHouse: A Postgres extension for querying ClickHouse
1–10 of 47 posts
Re: Pg_ClickHouse: A Postgres extension for querying ClickHouse
#2Re: Pg_ClickHouse: A Postgres extension for querying ClickHouse
#3This is pretty good. It will allow us to use PostgREST as an API endpoint to query the ClickHouse database directly
Re: Pg_ClickHouse: A Postgres extension for querying ClickHouse
#4This is pretty good. It will allow us to use PostgREST as an API endpoint to query the ClickHouse database directly
Re: Pg_ClickHouse: A Postgres extension for querying ClickHouse
#5Re: Pg_ClickHouse: A Postgres extension for querying ClickHouse
#6This is pretty good. It will allow us to use PostgREST as an API endpoint to query the ClickHouse database directly
Re: Pg_ClickHouse: A Postgres extension for querying ClickHouse
#7Re: Pg_ClickHouse: A Postgres extension for querying ClickHouse
#8This is nice because there are a lot of clickhouse fdw implementations and none of them are well maintained from what I can tell.
Our main focus is comprehensive pushdown capabilities. It was very surprising to see how much the Postgres FDW framework has evolved over the years and the number and types of hooks it now provides for push down. This is why we decided to lean into FDW than build an extension bottoms up. But we may still do that within pg_clickhouse for a few features, wherever FDW framework becomes a restriction.
We’ve made notable progress over the last few months, including support for pushdown of custom aggregations and SEMI JOINs/basic subqueries. Fourteen of twenty-two TPCH queries are now fully pushdownable.
We’ll be doubling down to add pushdown support for much more complex queries, CTEs, window functions, and more. More on the future here - https://github.com/ClickHouse/pg_clickhouse?tab=readme-ov-fi... All with the goal of enabling users to build fast analytics from the Postgres layer itself but still using the power of ClickHouse!
Re: Pg_ClickHouse: A Postgres extension for querying ClickHouse
#9The name of the project is a reference to P. G. Wodehouse[0] for those unaware. [0] https://www.gutenberg.org/ebooks/author/783
Re: Pg_ClickHouse: A Postgres extension for querying ClickHouse
#10The name of the project is a reference to P. G. Wodehouse[0] for those unaware. [0] https://www.gutenberg.org/ebooks/author/783
It’s just like all the other postgres extensions named “pg_foo”, and the clear and obvious choice for “foo” in this case is “clickhouse”.
Unless this is some bad joke that has flown over my head.