You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "andygrove (via GitHub)" <gi...@apache.org> on 2023/12/20 15:32:25 UTC

[I] Add serde support for CSV FileTypeWriterOptions [arrow-datafusion]

andygrove opened a new issue, #8597:
URL: https://github.com/apache/arrow-datafusion/issues/8597

   ### Is your feature request related to a problem or challenge?
   
   DataFusion supports many FileTypeWriterOptions:
   
   ```rust
   pub enum FileTypeWriterOptions {
       #[cfg(feature = "parquet")]
       Parquet(ParquetWriterOptions),
       CSV(CsvWriterOptions),
       JSON(JsonWriterOptions),
       Avro(AvroWriterOptions),
       Arrow(ArrowWriterOptions),
   }
   ```
   
   The serde support in the `datafusion-proto` crate currently only supports JSON:
   
   ```protobuf
   message FileTypeWriterOptions {
     oneof FileType {
       JsonWriterOptions json_options = 1;
     }
   }
   ```
   
   ### Describe the solution you'd like
   
   Add serde support for CSV FileTypeWriterOptions
   
   ### Describe alternatives you've considered
   
   _No response_
   
   ### Additional context
   
   _No response_


-- 
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] Add serde support for CSV FileTypeWriterOptions [arrow-datafusion]

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

   > I am interested in helping out with this (and the related FileTypeWriterOption / copy serde support issues). I can take a look later today or tomorrow if you aren't too far along already.
   
   Sorry, just saw this message, and I have a draft PR up for this one now. Would be great to get your review and also would be good to work with you on this. 
   
   Would you be interested in picking up https://github.com/apache/arrow-datafusion/issues/8632?


-- 
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] Add serde support for CSV FileTypeWriterOptions [arrow-datafusion]

Posted by "devinjdangelo (via GitHub)" <gi...@apache.org>.
devinjdangelo commented on issue #8597:
URL: https://github.com/apache/arrow-datafusion/issues/8597#issuecomment-1866247506

   I am interested in helping out with this (and the related FileTypeWriterOption / copy serde support issues). I can take a look later today or tomorrow if you aren't too far along already.


-- 
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] Add serde support for CSV FileTypeWriterOptions [arrow-datafusion]

Posted by "devinjdangelo (via GitHub)" <gi...@apache.org>.
devinjdangelo commented on issue #8597:
URL: https://github.com/apache/arrow-datafusion/issues/8597#issuecomment-1868358717

   @andygrove Yes, I can take a look at the draft PR, and happy to pick up #8632 as well.


-- 
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] Add serde support for CSV FileTypeWriterOptions [arrow-datafusion]

Posted by "andygrove (via GitHub)" <gi...@apache.org>.
andygrove closed issue #8597: Add serde support for CSV FileTypeWriterOptions
URL: https://github.com/apache/arrow-datafusion/issues/8597


-- 
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