@@ -110,6 +110,7 @@ global:
110110 -Xss512k
111111 -XX:MaxMetaspaceSize=256m
112112 -XX:+UseG1GC
113+ -XX:+ParallelRefProcEnabled
113114 -Djava.net.preferIPv4Stack=true
114115 pekkoOptions : >
115116 -Dpekko.management.cluster.bootstrap.contact-point-discovery.port-name=management
@@ -653,6 +654,14 @@ policies:
653654 # g1ReservePercent configures the used G1 GC "amount of heap to keep free after a mixed GC"
654655 # default (by JVM if not set): 10
655656 g1ReservePercent : 10
657+ # g1NewSizePercent sets the percentage of the heap size to use as default minimum young (new) generation
658+ # default (by JVM if not set): 5
659+ g1NewSizePercent : 5
660+ # g1MaxNewSizePercent sets the maximum percentage of the heap that can be allocated to the young (new) generation
661+ # when using the G1 garbage collector. This helps control the size of the young generation, affecting GC pause times
662+ # and overall memory management.
663+ # default (by JVM if not set): 60
664+ g1MaxNewSizePercent : 60
656665 # startupProbe configuration for policies
657666 # ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
658667 startupProbe :
@@ -931,6 +940,14 @@ things:
931940 # g1ReservePercent configures the used G1 GC "amount of heap to keep free after a mixed GC"
932941 # default (by JVM if not set): 10
933942 g1ReservePercent : 10
943+ # g1NewSizePercent sets the percentage of the heap size to use as default minimum young (new) generation
944+ # default (by JVM if not set): 5
945+ g1NewSizePercent : 5
946+ # g1MaxNewSizePercent sets the maximum percentage of the heap that can be allocated to the young (new) generation
947+ # when using the G1 garbage collector. This helps control the size of the young generation, affecting GC pause times
948+ # and overall memory management.
949+ # default (by JVM if not set): 60
950+ g1MaxNewSizePercent : 60
934951 # startupProbe configuration for things
935952 # ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
936953 startupProbe :
@@ -1023,6 +1040,15 @@ things:
10231040 timeout : 20s
10241041 # reset after this time in "Open" state, the circuit breaker is "Half-opened" again
10251042 reset : 8s
1043+ # supervisor contains configuration about things supervisor actors
1044+ supervisor :
1045+ # localAskTimeout the local ask timeout duration
1046+ localAskTimeout : 5s
1047+ # localAskTimeoutDuringRecovery the local ask timeout duration during persistence actor recovery
1048+ localAskTimeoutDuringRecovery : 45s
1049+ # localAskEnforcerTimeout the local ask timeout duration for interaction with enforcer child
1050+ # needs to be higher than localAskTimeout as policies have to be loaded from cache via remoting
1051+ localAskEnforcerTimeout : 10s
10261052 # cleanup contains the configuration for the background cleanup of stale snapshots and events
10271053 cleanup :
10281054 # enabled configures whether background cleanup is enabled or not
@@ -1358,6 +1384,14 @@ thingsSearch:
13581384 # g1ReservePercent configures the used G1 GC "amount of heap to keep free after a mixed GC"
13591385 # default (by JVM if not set): 10
13601386 g1ReservePercent : 10
1387+ # g1NewSizePercent sets the percentage of the heap size to use as default minimum young (new) generation
1388+ # default (by JVM if not set): 5
1389+ g1NewSizePercent : 5
1390+ # g1MaxNewSizePercent sets the maximum percentage of the heap that can be allocated to the young (new) generation
1391+ # when using the G1 garbage collector. This helps control the size of the young generation, affecting GC pause times
1392+ # and overall memory management.
1393+ # default (by JVM if not set): 60
1394+ g1MaxNewSizePercent : 60
13611395 # startupProbe configuration for policies
13621396 # ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
13631397 startupProbe :
@@ -1634,6 +1668,14 @@ connectivity:
16341668 # g1ReservePercent configures the used G1 GC "amount of heap to keep free after a mixed GC"
16351669 # default (by JVM if not set): 10
16361670 g1ReservePercent : 10
1671+ # g1NewSizePercent sets the percentage of the heap size to use as default minimum young (new) generation
1672+ # default (by JVM if not set): 5
1673+ g1NewSizePercent : 5
1674+ # g1MaxNewSizePercent sets the maximum percentage of the heap that can be allocated to the young (new) generation
1675+ # when using the G1 garbage collector. This helps control the size of the young generation, affecting GC pause times
1676+ # and overall memory management.
1677+ # default (by JVM if not set): 60
1678+ g1MaxNewSizePercent : 60
16371679 # startupProbe configuration for connectivity
16381680 # ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
16391681 startupProbe :
@@ -1969,6 +2011,14 @@ gateway:
19692011 # g1ReservePercent configures the used G1 GC "amount of heap to keep free after a mixed GC"
19702012 # default (by JVM if not set): 10
19712013 g1ReservePercent : 10
2014+ # g1NewSizePercent sets the percentage of the heap size to use as default minimum young (new) generation
2015+ # default (by JVM if not set): 5
2016+ g1NewSizePercent : 5
2017+ # g1MaxNewSizePercent sets the maximum percentage of the heap that can be allocated to the young (new) generation
2018+ # when using the G1 garbage collector. This helps control the size of the young generation, affecting GC pause times
2019+ # and overall memory management.
2020+ # default (by JVM if not set): 60
2021+ g1MaxNewSizePercent : 60
19722022 # startupProbe configuration for gateway
19732023 # ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
19742024 startupProbe :
0 commit comments