Re: Apache Arrow Flight - From Rust to Javascript (FlightData)

2024-03-21 Thread Weston Pace
> I don't think there is currently a direct equivalent to > `FlightRecordBatchStream` in the arrow javascript library, but you should > be able to combine the data header + body and then read it using the > `fromIPC` functions since it's just the Arrow IPC format The RecordBatchReader[1] _should_

Re: Apache Arrow Flight - From Rust to Javascript (FlightData)

2024-03-20 Thread Matt Topol
I don't think there is currently a direct equivalent to `FlightRecordBatchStream` in the arrow javascript library, but you should be able to combine the data header + body and then read it using the `fromIPC` functions since it's just the Arrow IPC format On Fri, Mar 15, 2024 at 5:39 AM Alexander

Apache Arrow Flight - From Rust to Javascript (FlightData)

2024-03-15 Thread Alexander Lerche Falk
Hey Arrow Dev, First of all: thanks for your great work. Is there a way to go from the FlightData structure in Javascript back to Record Batches? I have a small Rust application, implementing the FlightService, and streaming the data back through the do_get method. Maybe something equivalent t