You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Will Jones (Jira)" <ji...@apache.org> on 2022/04/29 22:38:00 UTC

[jira] [Commented] (ARROW-16423) R arrow/dplyr: simple join and collect crashes session

    [ https://issues.apache.org/jira/browse/ARROW-16423?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17530264#comment-17530264 ] 

Will Jones commented on ARROW-16423:
------------------------------------

Hi Andrew, could you provide the output of:

{code:R}
sessionInfo()
arrowInfo()
{code}

I tried this locally on 7.0.0 and dev branch (soon to be released) on MacOS, with both {{options(use_thread = ...)}} set to false and true, and didn't get any error.

> R arrow/dplyr: simple join and collect crashes session
> ------------------------------------------------------
>
>                 Key: ARROW-16423
>                 URL: https://issues.apache.org/jira/browse/ARROW-16423
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: R
>    Affects Versions: 7.0.0
>            Reporter: Andrew C Thomas
>            Priority: Minor
>
> Trying to do an inner join style filter on an open_dataset, and R crashes, but not reliably the first time. Sometimes takes a couple of tries until it does.
> Reprex follows.
> ------------------------------------------------------
> library (arrow)
> library (dplyr)
> library (tidyr)
> DataSet <- expand_grid (A = 1:10, B = 1:10, C = 1:10000) %>%
>   group_by (A, B)
> write_dataset(DataSet, "TestBreakData")
> for (DoThisUntilItBreaks in 1:100) {
>   message (DoThisUntilItBreaks)
>   D2 <- open_dataset("TestBreakData") %>% inner_join (data.frame (A=1L, B=1:5)) %>% collect
> }



--
This message was sent by Atlassian Jira
(v8.20.7#820007)