use std::any::Any;
use std::pin::Pin;
use std::sync::Arc;
use std::task::{Context, Poll};
use crate::error::{DataFusionError, Result};
use crate::physical_plan::{
ExecutionPlan, Partitioning, RecordBatchStream, SendableRecordBatchStream,
};
use arrow::compute::kernels::concat::concat;
use arrow::datatypes::SchemaRef;
use arrow::error::Result as ArrowResult;
use arrow::record_batch::RecordBatch;
use async_trait::async_trait;
use futures::stream::{Stream, StreamExt};
use log::debug;
#[derive(Debug)]
pub struct CoalesceBatchesExec {
input: Arc<dyn ExecutionPlan>,
target_batch_size: usize,
}
impl CoalesceBatchesExec {
pub fn new(input: Arc<dyn ExecutionPlan>, target_batch_size: usize) -> Self {
Self {
input,
target_batch_size,
}
}
pub fn input(&self) -> &Arc<dyn ExecutionPlan> {
&self.input
}
pub fn target_batch_size(&self) -> usize {
self.target_batch_size
}
}
#[async_trait]
impl ExecutionPlan for CoalesceBatchesExec {
fn as_any(&self) -> &dyn Any {
self
}
fn schema(&self) -> SchemaRef {
self.input.schema()
}
fn children(&self) -> Vec<Arc<dyn ExecutionPlan>> {
vec![self.input.clone()]
}
fn output_partitioning(&self) -> Partitioning {
self.input.output_partitioning()
}
fn with_new_children(
&self,
children: Vec<Arc<dyn ExecutionPlan>>,
) -> Result<Arc<dyn ExecutionPlan>> {
match children.len() {
1 => Ok(Arc::new(CoalesceBatchesExec::new(
children[0].clone(),
self.target_batch_size,
))),
_ => Err(DataFusionError::Internal(
"CoalesceBatchesExec wrong number of children".to_string(),
)),
}
}
async fn execute(&self, partition: usize) -> Result<SendableRecordBatchStream> {
Ok(Box::pin(CoalesceBatchesStream {
input: self.input.execute(partition).await?,
schema: self.input.schema(),
target_batch_size: self.target_batch_size,
buffer: Vec::new(),
buffered_rows: 0,
}))
}
}
struct CoalesceBatchesStream {
input: SendableRecordBatchStream,
schema: SchemaRef,
target_batch_size: usize,
buffer: Vec<RecordBatch>,
buffered_rows: usize,
}
impl Stream for CoalesceBatchesStream {
type Item = ArrowResult<RecordBatch>;
fn poll_next(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Option<Self::Item>> {
loop {
let input_batch = self.input.poll_next_unpin(cx);
match input_batch {
Poll::Ready(x) => match x {
Some(Ok(ref batch)) => {
if batch.num_rows() >= self.target_batch_size
&& self.buffer.is_empty()
{
return Poll::Ready(Some(Ok(batch.clone())));
} else if batch.num_rows() == 0 {
} else {
self.buffer.push(batch.clone());
self.buffered_rows += batch.num_rows();
if self.buffered_rows >= self.target_batch_size {
let batch = concat_batches(
&self.schema,
&self.buffer,
self.buffered_rows,
)?;
self.buffer.clear();
self.buffered_rows = 0;
return Poll::Ready(Some(Ok(batch)));
}
}
}
None => {
if self.buffer.is_empty() {
return Poll::Ready(None);
} else {
let batch = concat_batches(
&self.schema,
&self.buffer,
self.buffered_rows,
)?;
self.buffer.clear();
self.buffered_rows = 0;
return Poll::Ready(Some(Ok(batch)));
}
}
other => return Poll::Ready(other),
},
Poll::Pending => return Poll::Pending,
}
}
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.input.size_hint()
}
}
impl RecordBatchStream for CoalesceBatchesStream {
fn schema(&self) -> SchemaRef {
self.schema.clone()
}
}
pub fn concat_batches(
schema: &SchemaRef,
batches: &[RecordBatch],
row_count: usize,
) -> ArrowResult<RecordBatch> {
let mut arrays = Vec::with_capacity(schema.fields().len());
for i in 0..schema.fields().len() {
let array = concat(
&batches
.iter()
.map(|batch| batch.column(i).as_ref())
.collect::<Vec<_>>(),
)?;
arrays.push(array);
}
debug!(
"Combined {} batches containing {} rows",
batches.len(),
row_count
);
RecordBatch::try_new(schema.clone(), arrays)
}
#[cfg(test)]
mod tests {
use super::*;
use crate::physical_plan::memory::MemoryExec;
use arrow::array::UInt32Array;
use arrow::datatypes::{DataType, Field, Schema};
#[tokio::test(threaded_scheduler)]
async fn test_concat_batches() -> Result<()> {
let schema = test_schema();
let partition = create_vec_batches(&schema, 10)?;
let partitions = vec![partition];
let output_partitions = coalesce_batches(&schema, partitions, 20).await?;
assert_eq!(1, output_partitions.len());
let batches = &output_partitions[0];
assert_eq!(4, batches.len());
assert_eq!(24, batches[0].num_rows());
assert_eq!(24, batches[1].num_rows());
assert_eq!(24, batches[2].num_rows());
assert_eq!(8, batches[3].num_rows());
Ok(())
}
fn test_schema() -> Arc<Schema> {
Arc::new(Schema::new(vec![Field::new("c0", DataType::UInt32, false)]))
}
fn create_vec_batches(
schema: &Arc<Schema>,
num_batches: usize,
) -> Result<Vec<RecordBatch>> {
let batch = create_batch(schema);
let mut vec = Vec::with_capacity(num_batches);
for _ in 0..num_batches {
vec.push(batch.clone());
}
Ok(vec)
}
fn create_batch(schema: &Arc<Schema>) -> RecordBatch {
RecordBatch::try_new(
schema.clone(),
vec![Arc::new(UInt32Array::from(vec![1, 2, 3, 4, 5, 6, 7, 8]))],
)
.unwrap()
}
async fn coalesce_batches(
schema: &SchemaRef,
input_partitions: Vec<Vec<RecordBatch>>,
target_batch_size: usize,
) -> Result<Vec<Vec<RecordBatch>>> {
let exec = MemoryExec::try_new(&input_partitions, schema.clone(), None)?;
let exec: Arc<dyn ExecutionPlan> =
Arc::new(CoalesceBatchesExec::new(Arc::new(exec), target_batch_size));
let output_partition_count = exec.output_partitioning().partition_count();
let mut output_partitions = Vec::with_capacity(output_partition_count);
for i in 0..output_partition_count {
let mut stream = exec.execute(i).await?;
let mut batches = vec![];
while let Some(result) = stream.next().await {
batches.push(result?);
}
output_partitions.push(batches);
}
Ok(output_partitions)
}
}