Scale with (tens of) thousands of queries? #12514
Replies: 1 comment 6 replies
-
Hi there Dan, A materialized view costs Materialize both CPU and RAM to maintain. Materialize must maintain the results of the query, but often it must also maintain an additional intermediate state. To learn more about the costs of materialization, check out our architecture overview. Are you referring to creating thousands of materialized views or running queries on a single view? In case you are referring to running thousands of queries on an already pre-created materialized view, the cost should be minimal, as the results would already have been pre-computed and incrementally kept up to date. Also, the new Materialize Platform would be a production-ready, managed solution that would be able to handle large levels of workloads by scaling out. For more information you can check out this blog post here: https://materialize.com/materialize-unbundled/ Let me know if you have any other questions! Best, Bobby |
Beta Was this translation helpful? Give feedback.
-
How does a single node scale with thousands, or even tens of thousands of queries on a Kafka data source?
Is this something where I need to consider really beefing up the CPU as well? Or am I more worried about memory?
Beta Was this translation helpful? Give feedback.
All reactions