doSNOW can show progressbar like below
How to show the progress of code in parallel computation in R?
is there a way to get progressbar in doParallel?
Update:
below is a minimal reproducible example
library(foreach)
library(doParallel)
mc <- detectCores()
cl <- makeCluster(mc)
registerDoParallel(cl)
result <- foreach(i = 1:100) %dopar% {
rnorm(1000000) %>% sd
}
stopCluster(cl)