-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
=doc hide auto downing from default sample config in cluster
- Loading branch information
Showing
4 changed files
with
27 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#//#snippet | ||
akka { | ||
actor { | ||
provider = "akka.cluster.ClusterActorRefProvider" | ||
|
@@ -15,7 +16,14 @@ akka { | |
"akka.tcp://[email protected]:2551", | ||
"akka.tcp://[email protected]:2552"] | ||
|
||
#//#snippet | ||
# excluded from snippet | ||
auto-down-unreachable-after = 10s | ||
#//#snippet | ||
# auto downing is NOT safe for production deployments. | ||
# you may want to use it during development, read more about it in the docs. | ||
# | ||
# auto-down-unreachable-after = 10s | ||
} | ||
} | ||
|
||
|
@@ -28,3 +36,4 @@ akka.extensions=["akka.cluster.metrics.ClusterMetricsExtension"] | |
# Sigar native library extract location during tests. | ||
# Note: use per-jvm-instance folder when running multiple jvm on one host. | ||
akka.cluster.metrics.native-library-extract-folder=${user.dir}/target/native | ||
#//#snippet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#//#snippet | ||
akka { | ||
actor { | ||
provider = "akka.cluster.ClusterActorRefProvider" | ||
|
@@ -15,7 +16,14 @@ akka { | |
"akka.tcp://[email protected]:2551", | ||
"akka.tcp://[email protected]:2552"] | ||
|
||
#//#snippet | ||
# excluded from snippet | ||
auto-down-unreachable-after = 10s | ||
#//#snippet | ||
# auto downing is NOT safe for production deployments. | ||
# you may want to use it during development, read more about it in the docs. | ||
# | ||
# auto-down-unreachable-after = 10s | ||
} | ||
} | ||
|
||
|
@@ -26,5 +34,6 @@ akka.cluster.metrics.enabled=off | |
akka.extensions=["akka.cluster.metrics.ClusterMetricsExtension"] | ||
|
||
# Sigar native library extract location during tests. | ||
# Note: use per-jvm-instance folder when running multiple jvm on one host. | ||
# Note: use per-jvm-instance folder when running multiple jvm on one host. | ||
akka.cluster.metrics.native-library-extract-folder=${user.dir}/target/native | ||
#//#snippet |