paleolimbot commented on PR #14250:
URL: https://github.com/apache/arrow/pull/14250#issuecomment-1315422027
Sure thing! I tried:
```r
library(arrow, warn.conflicts = FALSE)
tf <- tempfile()
write.csv(mtcars, tf, row.names = FALSE)
# If we use the signal handling infrastructure in the main process before
# doing the forked workers thing, then the calls hang
# read_csv_arrow(tf)
parallel::mclapply(1:2, function(...) {
read_csv_arrow(tf)
})
```
Cancellation in the main process still works; however, the worker processes
hang instead of error (if a signal handler ever gets registered before forking).
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]