Re: Is there a way we can read a data frame from a cpp program in Apache fusion program in Rust?

2024-02-08 Thread Aldrin
To do this without using network or storage, your processes have to be able to access the same memory. Then, I think you want to use something like SessionContext::register_table [1] to then call SessionContext::read_table [2] on. Ultimately, instead of read_csv [3] which extracts data from a C

Is there a way we can read a data frame from a cpp program in Apache fusion program in Rust?

2024-02-08 Thread Chak-Pong Chung
Hi the arrow community, https://stackoverflow.com/q/77964825/1611102 Trying to get some attention to this performance question.