Feature/merge batches removal#5300
Feature/merge batches removal#5300Dandandan merged 2 commits intoapache:mainfrom synnada-ai:feature/merge_batches_removal
Conversation
merge_batches function is replaced by concat_batches function from arrow::compute
|
Benchmark runs are scheduled for baseline = a10f3a0 and contender = bee4285. bee4285 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
* Remove merge_batches function merge_batches function is replaced by concat_batches function from arrow::compute * Redundant merge_multiple_batches function is also removed
Which issue does this PR close?
Closes #5297.
Rationale for this change
With the new
concat_batchesfunction inarrow::computemodule. We no longer need tomerge_batchesfunction. It can be removed from codebase.What changes are included in this PR?
merge_batchescalls are replaced byconcat_batches, andmerge_batchesis removed.Are these changes tested?
Existing tests are enough, no need to write new tests.
Are there any user-facing changes?
No.