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
{{ message }}
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
I need to translate a working python code into rust. This code receives a json payload (the event object in the following snippet), the entries are the following:
input_schema: a string containing the base64 encoded input schema in apache-arrow format.
output_schema: a string containing the base64 encoded output schema in apache-arrow format.
input_records: a string containing the base64 data (record batches)
That results in the following error, while running deserialize_schema, suggesting deserialize_schema is not working properly or I am making something wrong. If I am wrong, can you help me with the correct translation into Rust using arrow2 crate?
In <Message@84>::header(): Invalid vtable length (length = 8)
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I need to translate a working python code into rust. This code receives a json payload (the
event
object in the following snippet), the entries are the following:input_schema
: a string containing the base64 encoded input schema in apache-arrow format.output_schema
: a string containing the base64 encoded output schema in apache-arrow format.input_records
: a string containing the base64 data (record batches)The working python snnippet is the following:
How could I convert this snniped to Rust? I am still having problems in the beggining of the process, on how to extract the schema:
That results in the following error, while running
deserialize_schema
, suggestingdeserialize_schema
is not working properly or I am making something wrong. If I am wrong, can you help me with the correct translation into Rust using arrow2 crate?The text was updated successfully, but these errors were encountered: