rluvaton opened a new issue, #10392:
URL: https://github.com/apache/arrow-rs/issues/10392

   ### Is your feature request related to a problem or challenge?
   
   Yes, having all columns in a record batch share the same underlying buffer 
reduce the chance of some columns to be drop
   
   lets say we have this:
   
   ```
   Project: a, b + c + d + e
     Scan Arrow IPC: a, b, c, d, e
   ```
   because the entire batch from Arrow IPC is a single underlying buffer, even 
though the output of project only need to have keep in memory the original 
column `a` the entire batch (a, b, c, d, e) columns are kept in memory
   
   ### Describe the solution you'd like
   
   I would like to be able to have an option to disable reading Arrow IPC in 
flat buffer, so each column/null buffer/offsets/whatever in the batch is 
different allocation that can be free'd independently
   
   ### Describe alternatives you've considered
   
   _No response_
   
   ### Additional context
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to