joellubi commented on PR #43066: URL: https://github.com/apache/arrow/pull/43066#issuecomment-2207380544
@zeroshade @mapleFU I've pushed up the requested changes and also have both batched reads and writes working by buffering the data for each page. See `file_writer_test.go` for confirmation of this behavior. The performance is not quite as good as it was without the buffering due to additional allocations and copies. I tried to use buffers from a pool for the encoder, but used regular buffers for the decoder since it doesn't have a `Release` method in which I could return them to the pool. Let me know what you think. -- 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]
