You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by GitBox <gi...@apache.org> on 2022/10/30 17:20:25 UTC

[GitHub] [arrow-julia] bkamins opened a new issue, #354: Arrow.append to non-existent file

bkamins opened a new issue, #354:
URL: https://github.com/apache/arrow-julia/issues/354

   Maybe we could consider allowing creation of a new Arrow file with `Arrow.append`? Currently it fails, so one needs to write:
   ```
   for i in 1:10
       if isfile("out.arrow")
           Arrow.append("out.arrow", DataFrame(i=i))
       else
           Arrow.write("out.arrow", DataFrame(i=i))
       end
   end
   ```
   which could be just:
   ```
   for i in 1:10
       Arrow.append("out.arrow", DataFrame(i=i))
   end
   ```
   But maybe there is a reason for the current design?


-- 
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: issues-unsubscribe@arrow.apache.org.apache.org

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


[GitHub] [arrow-julia] ericphanson closed issue #354: Arrow.append to non-existent file

Posted by GitBox <gi...@apache.org>.
ericphanson closed issue #354: Arrow.append to non-existent file
URL: https://github.com/apache/arrow-julia/issues/354


-- 
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: issues-unsubscribe@arrow.apache.org

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


[GitHub] [arrow-julia] quinnj commented on issue #354: Arrow.append to non-existent file

Posted by GitBox <gi...@apache.org>.
quinnj commented on issue #354:
URL: https://github.com/apache/arrow-julia/issues/354#issuecomment-1301183126

   Yeah, I think this shouldn't be too hard to support; cc @tanmaykm and @baumgold in case they have suggestions/comments about whether it would work or not.


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


[GitHub] [arrow-julia] tanmaykm commented on issue #354: Arrow.append to non-existent file

Posted by GitBox <gi...@apache.org>.
tanmaykm commented on issue #354:
URL: https://github.com/apache/arrow-julia/issues/354#issuecomment-1301795700

   Yes, should be possible to support.
   I can attempt a PR in a bit.


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


[GitHub] [arrow-julia] CarloLucibello commented on issue #354: Arrow.append to non-existent file

Posted by GitBox <gi...@apache.org>.
CarloLucibello commented on issue #354:
URL: https://github.com/apache/arrow-julia/issues/354#issuecomment-1370614497

   This should be closed as fixed in #358


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