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
As per title:
cluster <- multidplyr::new_cluster(parallel::detectCores()) someFunc <- function(data, cluster) { data %>% dplyr::group_by(cyl) %>% multidplyr::partition(cluster) %>% dplyr::summarise(avg_mpg = mean(mpg)) %>% dplyr::collect() } someFunc(mtcars, cluster)
If you are lucky 2 or more cores (main+workers) will randomly get used, if not then only the main thread gets used.
The text was updated successfully, but these errors were encountered:
+1, it seems there's a lot of data copying and other things going on in the background. Would love to see this resolved.
Sorry, something went wrong.
Duplicate of #87
No branches or pull requests
As per title:
If you are lucky 2 or more cores (main+workers) will randomly get used, if not then only the main thread gets used.
The text was updated successfully, but these errors were encountered: