Hi,
If I have multiple RecordBatchStreamReader inputs, what is the recommended
way to get all the RecordBatch from all the inputs together, maybe in a
Table? They all have the same schema. The source for the readers are
different files.
So, I do something like:
reader1 = pa.open_stream('foo')
table1 = reader1.read_all()
reader2 = pa.open_stream('bar')
table2 = reader2.read_all()
# table_all = ???
# OR maybe I don't need to create table1 and table2
# table_all = pa.Table.from_batches( ??? )
Thanks!
Rares