Skip to content

Commit

Permalink
Sync akka configuration
Browse files Browse the repository at this point in the history
Sync akka configuration with controller 9.0.2.

For more details see:
https://jira.opendaylight.org/browse/CONTROLLER-2108

Signed-off-by: Ivan Hrasko <[email protected]>
  • Loading branch information
ihrasko committed May 3, 2024
1 parent 06c8b37 commit aa56252
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ akka {
}

cluster {
# Remove ".tcp" when using artery.
# Using artery.
seed-nodes = ["akka://[email protected]:2550"]

roles = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,9 @@ akka {
max-entry-size = 16M
# Maximum size of a segment
max-segment-size = 128M
# Maximum number of bytes that are written without synchronizing storage. Defaults to max-entry-size.
# Set to <= 0 to flush immediately.
#max-unflushed-bytes = 1M
# Map each segment into memory. Defaults to true, use false to keep a heap-based
# buffer instead.
memory-mapped = true
Expand All @@ -181,6 +184,9 @@ akka {
max-entry-size = 512K
# Maximum size of a segment
max-segment-size = 1M
# Maximum number of bytes that are written without synchronizing storage. Defaults to max-entry-size.
# Set to <= 0 to flush immediately.
#max-unflushed-bytes = 128K
# Map each segment into memory. Note that while this can improve performance,
# it will also place additional burden on system resources.
memory-mapped = false
Expand Down

0 comments on commit aa56252

Please sign in to comment.