You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Gil Henriques (Jira)" <ji...@apache.org> on 2022/06/10 09:14:00 UTC

[jira] [Created] (ARROW-16805) [R] R crashing with Apple M1 chip

Gil Henriques created ARROW-16805:
-------------------------------------

             Summary: [R] R crashing with Apple M1 chip
                 Key: ARROW-16805
                 URL: https://issues.apache.org/jira/browse/ARROW-16805
             Project: Apache Arrow
          Issue Type: Bug
          Components: R
         Environment: MacBook Pro 13-inch, M1, 2020
R version 4.1.1 (2021-08-10)
Platform: x86_64-apple-darwin17.0 (64-bit)
Running under: macOS Monterey 12.1
            Reporter: Gil Henriques


When using the \{arrow} package, R crashes as soon as a dplyr verb is used on a parquet object. This does not happen on Windows computers, but I have reproduced it using two separate MacBook Pros with an Apple M1 chip. Crash happens both with RStudio and running R in the command line.

The reprex below is based on the vignette for \{arrow}, available at [https://arrow.apache.org/docs/r/:]

 

{{library(arrow)}}

{{library(dplyr)}}

{{write_parquet(starwars, sink = 'sw_parquet')}}

{{sw <- read_parquet(file = 'sw_parquet', as_data_frame = FALSE)}}

{{result <- sw %>%}}
{{  filter(homeworld == "Tatooine")}}



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