File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
doc/user/layouts/shortcodes/idiomatic-sql Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 1010partition is **100**. Then, amount of work to perform is proportional to
1111computing the window function results for **10\*100=1000** rows.
1212
13- As a rule of thumb, if the total size of all touched window partitions is at
14- most 1000000 rows per second, then the system should be able to keep up with the
15- input data as it arrives. However, if your use case has higher performance
16- requirements, consider rewriting your query to not use window functions. If your
17- query cannot be rewritten without the window functions and the performance of
18- window functions is insufficient for your use case, please [contact our
19- team](/support/).
13+ To avoid performance issues that may arise as the number of records grows,
14+ consider rewriting your query to use idiomatic Materialize SQL instead of window
15+ functions. If your query cannot be rewritten without the window functions and
16+ the performance of window functions is insufficient for your use case, please
17+ [contact our team](/support/).
You can’t perform that action at this time.
0 commit comments