-
Hi, I'm consuming async iterators that fetch data in row format and then transpose it to arrays with For example, I know I'm processing
|
Beta Was this translation helpful? Give feedback.
Answered by
surister
Jul 23, 2025
Replies: 1 comment
-
Actually, the number of values I was pushing to the array builders were always the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
surister
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Actually, the number of values I was pushing to the array builders were always the
allocated
+1 due to another issue, I guess that triggers new allocation. With the right allocation number I get better numbers by usingwith_capacity
as expected.