Undermoon - 手動設置 Redis 集群
本教程將引導您完成手動設置 undermoon 集群的過程,以更好地了解 undermoon 的工作原理。
架構
我們將在一臺機器上部署以下所有部件:
- mem_broker(內存代理)
- coordinator(協調器)
- 2 個代理與 4 個 Redis 節點
構建二進制文件
$ cargo build
請注意,您還需要安裝 Redis。
部署 Memory Broker
$ RUST_LOG=undermoon=debug,mem_broker=debug UNDERMOON_ADDRESS=127.0.0.1:7799 target/debug/mem_broker
部署 Coordinator
運行 coordinator 并指定 memory broker 地址。
$ RUST_LOG=undermoon=debug,coordinator=debug UNDERMOON_BROKER_AD
部署 Server Proxy 與 Redis
Chunk
有關詳細說明,請參閱:Rust 寫的 Undermoon Redis 集群 - Chunk。
運行 Server Proxy 與 Redis
運行 2 個服務器代理和 4 個 Redis 節點:
# You need to run each line in different terminals
# The first half
$ redis-server --port 7001
$ redis-server --port 7002
$ RUST_LOG=undermoon=debug,server_proxy=debug UNDERMOON_ADDRESS=127.0.0.1:6001 target/debug/server_proxy
# The second Half
$ redis-server --port 7003
$ redis-server --port 7004
$ RUST_LOG=undermoon=debug,server_proxy=debug UNDERMOON_ADDRESS=127.0.0.1:6002 target/debug/server_proxy
將 Server Proxy 和 Redis 注冊到 Memory Broker
Redis 集群永遠無法在單臺機器上創建。即使我們有足夠的 node,Memory broker 也無法創建集群,因為它們似乎都在同一主機 127.0.0.1 中;
但是由于我們在一臺機器上部署了整個 undermoon 集群,我們需要通過在發布的 json 中將 host 字段指定為 localhost1 和 localhost2 來明確告訴 memory broker 它們在不同的主機中。
curl -XPOST -H 'Content-Type: application/json' "http://localhost:7799/api/v3/proxies/meta" -d '{"proxy_address": "127.0.0.1:6001", "nodes": ["127.0.0.1:7001", "127.0.0.1:7002"], "host": "localhost1"}'
curl -XPOST -H 'Content-Type: application/json' "http://localhost:7799/api/v3/proxies/meta" -d '{"proxy_address": "127.0.0.1:6002", "nodes": ["127.0.0.1:7003", "127.0.0.1:7004"], "host": "localhost2"}'
現在我們有 2 個服務器代理與 4 個節點。
$ curl http://localhost:7799/api/v3/proxies/addresses
{"addresses":["127.0.0.1:6001","127.0.0.1:6002"]}
$ curl http://localhost:7799/api/v3/proxies/meta/127.0.0.1:6001
{"proxy":{"address":"127.0.0.1:6001","epoch":2,"nodes":[],"free_nodes":["127.0.0.1:7001","127.0.0.1:7002"],"peers":[],"clusters_config":{}}}
$ curl http://localhost:7799/api/v3/proxies/meta/127.0.0.1:6002
{"proxy":{"address":"127.0.0.1:6002","epoch":2,"nodes":[],"free_nodes":["127.0.0.1:7003","127.0.0.1:7004"],"peers":[],"clusters_config":{}}}
創建集群
使用 4 個 Redis 節點創建一個名為 mycluster 的集群。
$ curl -XPOST -H 'Content-Type: application/json' http://localhost:7799/api/v3/clusters/meta/mycluster -d '{"node_number": 4}'
現在我們可以連接到集群:
$ redis-cli -h 127.0.0.1 -p 6001 -c
127.0.0.1:6001> cluster nodes
mycluster___________2261c530e98070a6____ 127.0.0.1:6001 myself,master - 0 0 3 connected 8192-16383
mycluster___________ad095468b9deeb2d____ 127.0.0.1:6002 master - 0 0 3 connected 0-8191
127.0.0.1:6001> get a
(nil)
127.0.0.1:6001> get b
-> Redirected to slot [3300] located at 127.0.0.1:6002
"1"