|
|
|
|
|
by zX41ZdbW
1365 days ago
|
|
Yes, ClickHouse can query Postgres for maybe two years already. https://clickhouse.com/docs/en/integrations/postgresql/postg... You can connect to Postgres using a table function: SELECT ... FROM postgresql(...) You can create a table with ENGINE = PostgreSQL and use it like a normal table. You can create a database with ENGINE = PostgreSQL and it will represent all the tables from the PostgreSQL database. And finally, you can replicate data from PostgreSQL in realtime with CDC into ClickHouse tables. |
|