Hi, I've been looking for some guidance on optimizing akka streams for throughput but have not found much info so far. For example, if I have a non-blocking flow, would parallelizing by number of cpu cores make sense? So far what I've observed after several runs is a decrease in processing time as I increase the parallelize until I hit number of cores, and then it doesn't seem get any faster. To clarify, when I say parallelize I'm referring to doing the following n-times:
dispatcher.out(i) ~> flow.async ~> merger.in(i) Any ideas? Thanks! Andrew -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
