-
Notifications
You must be signed in to change notification settings - Fork 85
Open
Labels
Type: enhancementNew feature or requestNew feature or request
Description
Describe the enhancement requested
We're testing reading parquet files from S3 and I'm looking at the memory profile. We're using a 2GB file for testing and in the profile I see that the make call in
arrow-go/parquet/reader_properties.go
Line 80 in c8d2478
| data := make([]byte, nbytes) |
I see that the ReaderProperties has an allocator field, but the allocation there is made using the standard Go call. Is there a reason why the custom allocator is not used there? I wanted to test using a custom allocator, so maybe we can switch the make call to r.alloc.Allocate ?
Component(s)
Parquet
joechenrh
Metadata
Metadata
Assignees
Labels
Type: enhancementNew feature or requestNew feature or request