You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "yarenty (via GitHub)" <gi...@apache.org> on 2023/10/19 19:59:47 UTC

[I] df.write_xxx no longer working in ballista [arrow-ballista]

yarenty opened a new issue, #894:
URL: https://github.com/apache/arrow-ballista/issues/894

   **Describe the bug**
   
   Since the update to Datafusion 30 ( rev: 7d774481aedc027b7f68226b2c3a4fc0db959fc2 )
   as Dataframe moved to use LogicalPlan::Copy when executing write (csv, parquet,json)
   df. write_xxx is no longer working in Ballista.
   
   
   **To Reproduce**
   One can use any sql and then df.write ie: in examples standalone_sql.rs add write_csv() instead show():
   
   ``` 
       let df = ctx.sql("select count(1) from test").await?;
   
       df.write_csv("output.csv", DataFrameWriteOptions::default(), None).await?;
   ```
   
   
   `cargo run --example standalone_sql`
   
   Output: 
   ```
   Error: DataFusionError(Internal("failed to serialize logical plan: Internal(\"LogicalPlan serde is not yet implemented for Copy\")"))
   ```
   
   **Expected behavior**
   File created.
   
   
   **Additional context**
   See PR:  https://github.com/apache/arrow-datafusion/pull/7283
   
   Looks like this is todo -  there are no serde / proto changes in datafusion. 
   
   *Question: should I ask about it in datafusion repo ?*
   
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] df.write_xxx no longer working in ballista [arrow-ballista]

Posted by "andygrove (via GitHub)" <gi...@apache.org>.
andygrove closed issue #894: df.write_xxx no longer working in ballista
URL: https://github.com/apache/arrow-ballista/issues/894


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] df.write_xxx no longer working in ballista [arrow-ballista]

Posted by "andygrove (via GitHub)" <gi...@apache.org>.
andygrove commented on issue #894:
URL: https://github.com/apache/arrow-ballista/issues/894#issuecomment-1864673153

   Depends on https://github.com/apache/arrow-datafusion/issues/8596


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org