As per the documentation it says path to define exec context should be like this
couchbase {
akka {
timeout=1000
execution-context {
fork-join-executor {
parallelism-factor = 4.0
parallelism-max = 40
}
}
}
but when i don't define this in my app conf and when I print default configuration i see following
couchbase {
actorctx {
timeout=1000
execution-context {
fork-join-executor {
parallelism-factor = 4.0
parallelism-max = 40
}
}
}
Notice node "actorctx" instead of "akka" . So the question 'couchbase.actorctx' taking an effect in defining execution context or we have to define 'couchbase.akka' ?