|
|
|
|
|
by JonoBB
485 days ago
|
|
> On the clickhouse query side, we end up wanting denormalized data for query performance and to avoid JOINs. It's frequently not a great idea to query in clickhouse using the same table structure as you're using in your transactional db. > In our experience we sync a few tables with PeerDB but mostly end up using app-level custom code to sync denormalized data into Clickhouse for our core use-cases. Have you explored dbt? You may find that using custom code is not scalable, and that dbt solves this exact problem. |
|