...
|
...
|
@@ -29,9 +29,9 @@ app-dispatcher { |
29
|
29
|
executor = "fork-join-executor"
|
30
|
30
|
fork-join-executor {
|
31
|
31
|
# Min number of threads to cap factor-based parallelism number to
|
32
|
|
- parallelism-min = 2
|
|
32
|
+ parallelism-min = 1
|
33
|
33
|
# Max number of threads to cap factor-based parallelism number to
|
34
|
|
- parallelism-max = 12
|
|
34
|
+ parallelism-max = 1
|
35
|
35
|
|
36
|
36
|
# The parallelism factor is used to determine thread pool size using the
|
37
|
37
|
# following formula: ceil(available processors * factor). Resulting size
|
...
|
...
|
@@ -54,7 +54,7 @@ rpc-dispatcher { |
54
|
54
|
# Min number of threads to cap factor-based parallelism number to
|
55
|
55
|
parallelism-min = 2
|
56
|
56
|
# Max number of threads to cap factor-based parallelism number to
|
57
|
|
- parallelism-max = 12
|
|
57
|
+ parallelism-max = 8
|
58
|
58
|
|
59
|
59
|
# The parallelism factor is used to determine thread pool size using the
|
60
|
60
|
# following formula: ceil(available processors * factor). Resulting size
|
...
|
...
|
@@ -82,7 +82,7 @@ core-dispatcher { |
82
|
82
|
# The parallelism factor is used to determine thread pool size using the
|
83
|
83
|
# following formula: ceil(available processors * factor). Resulting size
|
84
|
84
|
# is then bounded by the parallelism-min and parallelism-max values.
|
85
|
|
- parallelism-factor = 1.0
|
|
85
|
+ parallelism-factor = 0.25
|
86
|
86
|
}
|
87
|
87
|
# How long time the dispatcher will wait for new actors until it shuts down
|
88
|
88
|
shutdown-timeout = 1s
|
...
|
...
|
@@ -105,7 +105,7 @@ rule-dispatcher { |
105
|
105
|
# The parallelism factor is used to determine thread pool size using the
|
106
|
106
|
# following formula: ceil(available processors * factor). Resulting size
|
107
|
107
|
# is then bounded by the parallelism-min and parallelism-max values.
|
108
|
|
- parallelism-factor = 1.0
|
|
108
|
+ parallelism-factor = 0.25
|
109
|
109
|
}
|
110
|
110
|
# How long time the dispatcher will wait for new actors until it shuts down
|
111
|
111
|
shutdown-timeout = 1s
|
...
|
...
|
@@ -128,7 +128,7 @@ plugin-dispatcher { |
128
|
128
|
# The parallelism factor is used to determine thread pool size using the
|
129
|
129
|
# following formula: ceil(available processors * factor). Resulting size
|
130
|
130
|
# is then bounded by the parallelism-min and parallelism-max values.
|
131
|
|
- parallelism-factor = 1.0
|
|
131
|
+ parallelism-factor = 0.25
|
132
|
132
|
}
|
133
|
133
|
# How long time the dispatcher will wait for new actors until it shuts down
|
134
|
134
|
shutdown-timeout = 1s
|
...
|
...
|
@@ -152,7 +152,7 @@ session-dispatcher { |
152
|
152
|
# The parallelism factor is used to determine thread pool size using the
|
153
|
153
|
# following formula: ceil(available processors * factor). Resulting size
|
154
|
154
|
# is then bounded by the parallelism-min and parallelism-max values.
|
155
|
|
- parallelism-factor = 1.0
|
|
155
|
+ parallelism-factor = 0.25
|
156
|
156
|
}
|
157
|
157
|
# How long time the dispatcher will wait for new actors until it shuts down
|
158
|
158
|
shutdown-timeout = 1s
|
...
|
...
|
|