You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "aaronschiff (via GitHub)" <gi...@apache.org> on 2024/03/21 23:04:48 UTC

[I] write_parquet() doesn't work in R package 15.0.1 update [arrow]

aaronschiff opened a new issue, #40726:
URL: https://github.com/apache/arrow/issues/40726

   ### Describe the bug, including details regarding any error messages, version, and platform.
   
   On MacOS, after I updated the arrow R package to 15.0.1, write_parquet() fails:
   
   ```
   r$> write_parquet(x = data.frame(a = c(1, 2, 3)), sink = "test.parquet")
   Error in parquet___WriterProperties___Builder__create() : 
     Cannot call parquet___WriterProperties___Builder__create(). See https://arrow.apache.org/docs/r/articles/install.html for help installing Arrow C++ libraries. 
   ```
   
   It was working prior to the update (version 15.0.0, I think). I tried removing and re-installing the package but it didn't help. The read_parquet() function works fine however. 
   
   ### Component(s)
   
   R


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


Re: [I] [R] write_parquet() doesn't work in R package 15.0.1 update [arrow]

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

   Sorry, I just saw this has already been reported as part of a separate issue


-- 
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] [R] write_parquet() doesn't work in R package 15.0.1 update [arrow]

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

   First time user of arrow, getting the same error. Is the problem with arrow itself or with the arrow R package? (trying to work out if I should install a previous version of arrow itself, or just the arrow R package). Are you able to link to the issue where it has already been reported? (I couldn't spot it).


-- 
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] [R] write_parquet() doesn't work in R package 15.0.1 update [arrow]

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

   @stevecondylios see here for a fix: https://github.com/apache/arrow/issues/40667
   
   It's an issue with the version 15.0.1 package on CRAN


-- 
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] [R] write_parquet() doesn't work in R package 15.0.1 update [arrow]

Posted by "aaronschiff (via GitHub)" <gi...@apache.org>.
aaronschiff closed issue #40726: [R] write_parquet() doesn't work in R package 15.0.1 update
URL: https://github.com/apache/arrow/issues/40726


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


Re: [I] [R] write_parquet() doesn't work in R package 15.0.1 update [arrow]

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

   @aaronschiff thanks a lot, got it working 2 minutes after reading your reply. 
   
   In case anyone else ends up here, you temporarily need to install like so:
   
   ```r
   install.packages('arrow', repos = c('https://apache.r-universe.dev'))
   ```
    ([source](https://github.com/apache/arrow/issues/40667#issuecomment-2007942987))


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