aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/resources/application.conf
blob: fb69ecd436b8c6c5b8665dbcdb7275a446e10f82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
akka {
    loglevel = DEBUG
    stdout-loglevel = DEBUG
    log-dead-letters = on
    actor {
        default-dispatcher {
            fork-join-executor {
                # Min number of threads to cap factor-based parallelism number to
                parallelism-min = 2

                # The parallelism factor is used to determine thread pool size using the
                # following formula: ceil(available processors * factor). Resulting size
                # is then bounded by the parallelism-min and parallelism-max values.
                parallelism-factor = 3.0

                # Max number of threads to cap factor-based parallelism number to
                parallelism-max = 8
              }

              throughput = 100
        }
    }
}