Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rewrite Cluster health checks #237

Closed
Aaronontheweb opened this issue Jul 24, 2023 · 0 comments · Fixed by #238
Closed

Rewrite Cluster health checks #237

Aaronontheweb opened this issue Jul 24, 2023 · 0 comments · Fixed by #238
Labels
bug Something isn't working

Comments

@Aaronontheweb
Copy link
Member

These HCs are poisonous and can prevent cluster formation. Need to be relaxed.

Liveness

AkkaClusterLivenessProbe - Liveness probe for clustering.

Reports healthy when:
The ActorSystem joined a cluster.
The ActorSystem is connected to a cluster
Reports unhealthy when:
The ActorSystem just started and has not joined a cluster.
The ActorSystem left the cluster.

Rewrite to

ClusterLivenessProbeProvider - Liveness probe for clustering.
Reports healthy when:
Reports unhealthy when:
The ActorSystem leaving the cluster.

Readiness

AkkaClusterReadinessProbe - Readiness probe for clustering.

Reports healthy when:
The ActorSystem joined a cluster.
The ActorSystem is connected to a cluster
Reports unhealthy when:
The ActorSystem just started has not joined a cluster.
All other nodes in the cluster is unreachable.

Rewrite to:

ClusterReadinessProbeProvider - Liveness probe for clustering.
Reports healthy when:
Reports unhealthy when:
All other nodes in the cluster is unreachable.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant