You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The arrow writer doesn't track memory size correctly, and it seems like it thinks FixedSizeList columns have a fixed memory usage. Ie. the reported memory usage doesn't grow despite the buffers actually growing in memory.
The issue is that GenericColumnWriter::memory_size is not accounting for the data_pages it has buffered waiting for the dictionary page to be flushed. This should be a relatively straightforward case of changing it to be
Describe the bug
The arrow writer doesn't track memory size correctly, and it seems like it thinks
FixedSizeList
columns have a fixed memory usage. Ie. the reported memory usage doesn't grow despite the buffers actually growing in memory.To Reproduce
Expected behavior
We should see the reported memory usage rise over time, then as flush is triggered, it should go down to around zero. Then repeat.
The text was updated successfully, but these errors were encountered: