You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a real-time arrow IPC stream and would like update a perspective table batch by batch as data comes in. Currently it seems like I need to pass each batch through the following function and prepend the schema:
That seems quite inefficient, especially when I'm already receiving the batch as a byte buffer on a socket. Is there any way to pass the received RecordBatch bytes directly? I guess this is not possible because the arrow schema may change between updates?
The text was updated successfully, but these errors were encountered:
Feature Request
Description of Problem:
This is related to #1157 but not quite the same.
I have a real-time arrow IPC stream and would like update a perspective table batch by batch as data comes in. Currently it seems like I need to pass each batch through the following function and prepend the schema:
That seems quite inefficient, especially when I'm already receiving the batch as a byte buffer on a socket. Is there any way to pass the received
RecordBatch
bytes directly? I guess this is not possible because the arrow schema may change between updates?The text was updated successfully, but these errors were encountered: