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
{{ message }}
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Currently we still use arrow's bufferbuilder to build the binary buffer, which is extreamly not efficient. Each binary builder has 3 memory reference as below. Each reducer each binary column has such a structure needs to be cached in memory.
binarybuilder
offsets_builder_
BufferBuilder
data()
value_data_builder_
BufferBuilder
data()
null_bitmap_builder_
BufferBuilder
data()
Describe the solution you'd like
Solution is to use the data() pointer directly to split the record batch into, just like fixed width columns
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Currently we still use arrow's bufferbuilder to build the binary buffer, which is extreamly not efficient. Each binary builder has 3 memory reference as below. Each reducer each binary column has such a structure needs to be cached in memory.
binarybuilder
offsets_builder_
BufferBuilder
data()
value_data_builder_
BufferBuilder
data()
null_bitmap_builder_
BufferBuilder
data()
Describe the solution you'd like
Solution is to use the data() pointer directly to split the record batch into, just like fixed width columns
The text was updated successfully, but these errors were encountered: