We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
map()
To avoid cases where we ship map() from purrr 1.0.0 to the workers, but the workers have purrr < 1.0.0, resulting in an error like:
Error in map_("list", .x, .f, ..., .progress = .progress) : could not find function "map_"
Something like:
# rather than this ...furrr_map <- purrr::map # do this ...furrr_map <- function(...) { purrr::map(...) }
https://stackoverflow.com/questions/75660223/r-furure-map-across-multiple-servers
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To avoid cases where we ship
map()
from purrr 1.0.0 to the workers, but the workers have purrr < 1.0.0, resulting in an error like:Something like:
https://stackoverflow.com/questions/75660223/r-furure-map-across-multiple-servers
The text was updated successfully, but these errors were encountered: