You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@pekko.apache.org by "laglangyue (via GitHub)" <gi...@apache.org> on 2023/12/21 14:27:58 UTC

[PR] [Draft] migrate pages to pekko [incubator-pekko-platform-guide]

laglangyue opened a new pull request, #56:
URL: https://github.com/apache/incubator-pekko-platform-guide/pull/56

   todo:


-- 
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: notifications-unsubscribe@pekko.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@pekko.apache.org
For additional commands, e-mail: notifications-help@pekko.apache.org


Re: [PR] [Draft] migrate pages to pekko [incubator-pekko-platform-guide]

Posted by "pjfanning (via GitHub)" <gi...@apache.org>.
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: notifications-unsubscribe@pekko.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@pekko.apache.org
For additional commands, e-mail: notifications-help@pekko.apache.org


Re: [PR] [Draft] migrate pages to pekko [incubator-pekko-platform-guide]

Posted by "laglangyue (via GitHub)" <gi...@apache.org>.
laglangyue commented on code in PR #56:
URL: https://github.com/apache/incubator-pekko-platform-guide/pull/56#discussion_r1434880881


##########
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.

Review Comment:
   yeah, this PR is draft. When I am ready to review, I will remove the draft tag and call you to avoid wasting your time.
   
   Besides a simple question, Do we need to keep the link to the Akka-Blog? I think we should keep it for now.



-- 
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: notifications-unsubscribe@pekko.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@pekko.apache.org
For additional commands, e-mail: notifications-help@pekko.apache.org


Re: [PR] [Draft] migrate pages to pekko [incubator-pekko-platform-guide]

Posted by "pjfanning (via GitHub)" <gi...@apache.org>.
pjfanning commented on code in PR #56:
URL: https://github.com/apache/incubator-pekko-platform-guide/pull/56#discussion_r1434437863


##########
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.

Review Comment:
   Should be 'Pekko Management'



-- 
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: notifications-unsubscribe@pekko.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@pekko.apache.org
For additional commands, e-mail: notifications-help@pekko.apache.org


Re: [PR] [Draft] migrate pages to pekko [incubator-pekko-platform-guide]

Posted by "pjfanning (via GitHub)" <gi...@apache.org>.
pjfanning commented on code in PR #56:
URL: https://github.com/apache/incubator-pekko-platform-guide/pull/56#discussion_r1434437863


##########
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.

Review Comment:
   Should be 'Pekko Management' not 'Akka Management'



-- 
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: notifications-unsubscribe@pekko.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@pekko.apache.org
For additional commands, e-mail: notifications-help@pekko.apache.org


Re: [PR] Replace the akka with pekko in the doc page [pekko-platform-guide]

Posted by "laglangyue (via GitHub)" <gi...@apache.org>.
laglangyue commented on PR #56:
URL: https://github.com/apache/pekko-platform-guide/pull/56#issuecomment-2027993542

   I want to go to this PR.
   I spent about 2 hours today replacing akka/alpakka in the document with pekko/pekko connector


-- 
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: notifications-unsubscribe@pekko.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@pekko.apache.org
For additional commands, e-mail: notifications-help@pekko.apache.org


Re: [PR] [Draft] migrate pages to pekko [incubator-pekko-platform-guide]

Posted by "pjfanning (via GitHub)" <gi...@apache.org>.
pjfanning commented on code in PR #56:
URL: https://github.com/apache/incubator-pekko-platform-guide/pull/56#discussion_r1434882836


##########
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.

Review Comment:
   it's ok to link to Akka docs when there is no Pekko equivalent - just make sure our docs still say it is about Akka



-- 
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: notifications-unsubscribe@pekko.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@pekko.apache.org
For additional commands, e-mail: notifications-help@pekko.apache.org


Re: [PR] [Draft] migrate pages to pekko [incubator-pekko-platform-guide]

Posted by "pjfanning (via GitHub)" <gi...@apache.org>.
pjfanning commented on code in PR #56:
URL: https://github.com/apache/incubator-pekko-platform-guide/pull/56#discussion_r1434438407


##########
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.

Review Comment:
   there are lots of other refs left behind to 'Akka'



-- 
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: notifications-unsubscribe@pekko.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@pekko.apache.org
For additional commands, e-mail: notifications-help@pekko.apache.org