-
-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: socket server with redis multinode cluster (#720)
* feat: clustering support for redis * feat: add auth support * feat: socket io clustering with adminui * docs: new setup steps
- Loading branch information
1 parent
a0af2a3
commit bb0231d
Showing
10 changed files
with
255 additions
and
74 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
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,37 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
# Function to check if a redis node is ready | ||
check_redis() { | ||
echo "Checking if Redis node '$1' is ready..." | ||
while true; do | ||
# Attempt to get a PONG response from the Redis node | ||
if redis-cli -h "$1" -p "$2" ping | grep -q "PONG"; then | ||
echo "Redis node '$1:$2' is ready." | ||
break | ||
else | ||
echo "Waiting for Redis node '$1:$2' to be ready..." | ||
sleep 2 | ||
fi | ||
done | ||
} | ||
|
||
|
||
# Wait for all Redis nodes to be ready | ||
echo "Checking readiness of Redis nodes..." | ||
|
||
# Since we can't use arrays in sh, we list the nodes directly | ||
check_redis "redis-master1" "6379" | ||
check_redis "redis-master2" "6379" | ||
check_redis "redis-master3" "6379" | ||
|
||
|
||
# Since we can't pass arrays to redis-cli, we build the cluster create command manually | ||
echo "All Redis nodes are ready. Creating Redis Cluster..." | ||
echo "yes" | redis-cli --cluster create \ | ||
redis-master1:6379 \ | ||
redis-master2:6379 \ | ||
redis-master3:6379 \ | ||
--cluster-replicas 0 | ||
|
||
echo "Redis Cluster created successfully." |
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
Oops, something went wrong.