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

removed exercises 001 and 016 #119

Merged
merged 5 commits into from Nov 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

## Description

This code is used on a Raspberry-Pi based Akka Cluster to demonstrate cluster formation, split-brain occurrence and Split Brain Resolver in a visual manner.
This code is used on a Raspberry-Pi based Akka Cluster to visually demonstrate cluster formation, split-brain occurrence and Split Brain Resolver.

Each node is equipped with an 10-LED RGB strip where different LED's are used to show each node's state (`Joining`, `Up`, `Weakly-up`, `Unreachable`, `Leaving`, `Exiting` and `Down`/`Removed`). In addition, it shows if a node has a so-called _leader_ role and whether a node is running an Akka Cluster Singleton (if one is created on the cluster).

Expand Down
15 changes: 2 additions & 13 deletions build.sbt
Expand Up @@ -3,8 +3,7 @@ lazy val pi_cluster_master = (project in file("."))
.aggregate(
common,
exercise_000_initial_state,
exercise_001_cluster_base,
exercise_002_cluster_base_move_to_artery_tcp,
exercise_002_cluster_base,
exercise_003_cluster_weakly_up,
exercise_004_cluster_singleton,
exercise_005_cluster_the_perils_of_auto_downing,
Expand All @@ -18,7 +17,6 @@ lazy val pi_cluster_master = (project in file("."))
exercise_013_clustered_sudoku_solver,
exercise_014_add_cluster_client,
exercise_015_clustered_sudoku_solver_cluster_client_enabled,
exercise_016_es_vizceral,
exercise_017_es_opentracing,
exercise_018_es_classic_console,
exercise_050_cluster_cluster_singleton_akka_bootstrap_discovery_via_config,
Expand All @@ -31,11 +29,7 @@ lazy val exercise_000_initial_state = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")

lazy val exercise_001_cluster_base = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")

lazy val exercise_002_cluster_base_move_to_artery_tcp = project
lazy val exercise_002_cluster_base = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")

Expand Down Expand Up @@ -91,10 +85,6 @@ lazy val exercise_015_clustered_sudoku_solver_cluster_client_enabled = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")

lazy val exercise_016_es_vizceral = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")

lazy val exercise_017_es_opentracing = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")
Expand All @@ -110,4 +100,3 @@ lazy val exercise_050_cluster_cluster_singleton_akka_bootstrap_discovery_via_con
lazy val exercise_051_cluster_singleton_akka_bootstrap_discovery_via_akka_dns = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")

71 changes: 0 additions & 71 deletions exercise_001_cluster_base/src/main/resources/application.conf

This file was deleted.

34 changes: 0 additions & 34 deletions exercise_001_cluster_base/src/main/resources/logback.xml

This file was deleted.

This file was deleted.

This file was deleted.