-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
5.1.1 - handle SC-mode rackid setting
- Loading branch information
Robert Glonek
committed
Feb 6, 2023
1 parent
ba74bd7
commit 493fa31
Showing
8 changed files
with
93 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5.1.0 | ||
5.1.1 |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Deploy a Rack-Aware Cluster with strong-consistency | ||
AeroLab makes it easy for you to deploy a [rack-aware](https://docs.aerospike.com/server/operations/configure/network/rack-aware) | ||
Aerospike Database cluster. | ||
|
||
## Create a size node Aerospike cluster, do not start aerospike | ||
|
||
```bash | ||
aerolab cluster create -c 6 -s n -o sc-template-file.conf | ||
``` | ||
|
||
## Assign rack-id 1 to first three nodes, all namespaces | ||
|
||
Do not re-roster with strong-consistency, we are not ready to do that yet. | ||
|
||
```bash | ||
aerolab conf rackid -l 1-3 -i 1 --no-roster | ||
``` | ||
|
||
## Assign rack-id 2 to the next three nodes, all namespaces | ||
|
||
This time we will allow strong consistency roster to be apply too and the cluster to be restarted. | ||
|
||
```bash | ||
aerolab conf rackid -l 4-6 -i 2 | ||
``` | ||
|
||
## Confirm the cluster is working | ||
|
||
```bash | ||
aerolab attach asadm -- -e info | ||
``` |
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
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,5 +1,5 @@ | ||
package main | ||
|
||
var version = "v5.1.0" | ||
var version = "v5.1.1" | ||
|
||
var simulateArmInstaller = false |