I am using play framework 2.1 RC1 with web sockets.
Each request to the web socket i open up to 4 akka job on Akka.system ,
and i have load tester that open 1000 connections and send request that use 4 akka job and it work very slow but when i see the CPU% and memory it doesn't reach the limit and the respond send serial so i thinking akka configure is wrong. this is my akka config inside conf/application.conf :
play {
akka {
actor {
deployment {
/actions {
router = round-robin
nr-of-instances = 1000
}
/promises {
router = round-robin
nr-of-instances = 1000
}
}
retrieveBodyParserTimeout = 60 seconds
actions-dispatcher = {
fork-join-executor {
parallelism-factor = 1000
parallelism-max = 1000
pool-size-max =1000
}
}
promises-dispatcher = {
fork-join-executor {
parallelism-factor = 1000
parallelism-max = 1000
pool-size-max =1000
}
}
}
}
}