Errors out when writing to external table while using BallistaContext #1033
Unanswered
saimarpaka
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have the following piece of code, that i'm trying to run on ballista.
An empty external table called
test
is created. The goal is to perform computation and insert the result into thetest
table, as an example.The above snippet errors out with
Error: DataFusionError(Plan("Column count doesn't match insert query!"))
So I tried to get around this by making the following modifications
still the same
Error: DataFusionError(Plan("Column count doesn't match insert query!"))
It appears that empty external tables do not work as expected, when running from Ballista Context. However, they do run, when running from DataFusion context
So I seeded the
test
table with a parquet from DataFusion context, instead of the Ballista Context to get around this, and performed the followingI get the following error
Error: DataFusionError(Internal("failed to serialize logical plan: Internal(\"LogicalPlan serde is not yet implemented for Dml\")"))
Is insertion into External Tables not supported by Ballista at the moment ?
If it is supported, am I doing something wrong here ?
Beta Was this translation helpful? Give feedback.
All reactions