pjfanning commented on code in PR #56:
URL:
https://github.com/apache/incubator-pekko-platform-guide/pull/56#discussion_r1434438826
##########
docs-source/docs/modules/concepts/pages/pekko-management.adoc:
##########
@@ -0,0 +1,22 @@
+= Pekko Management
+
+
+include::partial$include.adoc[]
+
+{pekko-management}[Akka Management {tab-icon}, window="tab"] is a collection
of tools to help operate Akka Cluster applications.
+
+== Management
+
+The main building block in {pekko-management}[Akka Management {tab-icon},
window="tab"] is the Management HTTP server.
+
+This HTTP server runs on a dedicated port, so you can separate the application
traffic from the management traffic. It exposes, by default, some read-only
endpoints where you can verify the status of the cluster or the
xref:how-to:health-checks.adoc[health] of the node.
+
+== Bootstrap
+
+To form a cluster between the different nodes of your application you can use
hardcoded IP and port numbers. But that solution is very hard to maintain and
goes against the xref:mobility.adoc[mobility] property of a reactive system.
+
+Instead, Akka Management includes support to
{pekko-management}/bootstrap/index.html[Bootstrap {tab-icon}, window="tab"] a
cluster. Akka Cluster Bootstrap uses {pekko}/discovery/index.html[Akka
Discovery {tab-icon}, window="tab"] (a xref:services#service-discovery[service
discovery] API) to locate peers. This way, when deploying an application, each
node only needs to register itself on the central registry and use the service
discovery to find the peers.
+
+== Kubernetes Lease
+
+The Akka Management {pekko-management}/kubernetes-lease.html[Kubernetes Lease
{tab-icon}, window="tab"] is an implementation of the Akka Coordination Lease
which uses Kubernetes-backed mechanisms to increase the consistency of some
Akka features like {akka}/split-brain-resolver.html[Split Brain Resolver
{tab-icon}, window="tab"], {akka}/typed/cluster-singleton.html#lease[Akka
Cluster Singleton {tab-icon}, window="tab"], and
{akka}/typed/cluster-sharding.html#lease[Akka ClusterSharding {tab-icon},
window="tab"].
Review Comment:
lots of text here about Akka and the `{akka}` tokens too
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]