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
partitioned parallel fetch data, same parallel fetch thread also parses rows to RecordBatch
Note: concat_batches almost doubles the memory usage peak, as a buffer needs to be created to copy all the existing arrays.
partitioned parallel fetch data, return Vec<Rows>, then parallelize columns parsing to a single RecordBatch
RecordBatchNote:
concat_batchesalmost doubles the memory usage peak, as a buffer needs to be created to copy all the existing arrays.Vec<Rows>, then parallelize columns parsing to a singleRecordBatch