2021-01-14 04:36:03 +08:00
|
|
|
# Optimize CLUSTER NODES command by generating all nodes slot topology firstly
|
|
|
|
|
2024-05-09 10:14:47 +08:00
|
|
|
start_cluster 2 2 {tags {external:skip cluster}} {
|
2021-01-14 04:36:03 +08:00
|
|
|
|
|
|
|
test "Cluster should start ok" {
|
2024-05-09 10:14:47 +08:00
|
|
|
wait_for_cluster_state ok
|
2021-01-14 04:36:03 +08:00
|
|
|
}
|
|
|
|
|
2024-05-09 10:14:47 +08:00
|
|
|
set master1 [srv 0 "client"]
|
|
|
|
set master2 [srv -1 "client"]
|
2021-01-14 04:36:03 +08:00
|
|
|
|
|
|
|
test "Continuous slots distribution" {
|
|
|
|
assert_match "* 0-8191*" [$master1 CLUSTER NODES]
|
|
|
|
assert_match "* 8192-16383*" [$master2 CLUSTER NODES]
|
2021-03-12 14:40:35 +08:00
|
|
|
assert_match "*0 8191*" [$master1 CLUSTER SLOTS]
|
|
|
|
assert_match "*8192 16383*" [$master2 CLUSTER SLOTS]
|
2021-01-14 04:36:03 +08:00
|
|
|
|
|
|
|
$master1 CLUSTER DELSLOTS 4096
|
|
|
|
assert_match "* 0-4095 4097-8191*" [$master1 CLUSTER NODES]
|
2021-03-12 14:40:35 +08:00
|
|
|
assert_match "*0 4095*4097 8191*" [$master1 CLUSTER SLOTS]
|
|
|
|
|
2021-01-14 04:36:03 +08:00
|
|
|
$master2 CLUSTER DELSLOTS 12288
|
|
|
|
assert_match "* 8192-12287 12289-16383*" [$master2 CLUSTER NODES]
|
2021-03-12 14:40:35 +08:00
|
|
|
assert_match "*8192 12287*12289 16383*" [$master2 CLUSTER SLOTS]
|
2021-01-14 04:36:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
test "Discontinuous slots distribution" {
|
|
|
|
# Remove middle slots
|
|
|
|
$master1 CLUSTER DELSLOTS 4092 4094
|
|
|
|
assert_match "* 0-4091 4093 4095 4097-8191*" [$master1 CLUSTER NODES]
|
2021-03-12 14:40:35 +08:00
|
|
|
assert_match "*0 4091*4093 4093*4095 4095*4097 8191*" [$master1 CLUSTER SLOTS]
|
2021-01-14 04:36:03 +08:00
|
|
|
$master2 CLUSTER DELSLOTS 12284 12286
|
|
|
|
assert_match "* 8192-12283 12285 12287 12289-16383*" [$master2 CLUSTER NODES]
|
2021-03-12 14:40:35 +08:00
|
|
|
assert_match "*8192 12283*12285 12285*12287 12287*12289 16383*" [$master2 CLUSTER SLOTS]
|
2021-01-14 04:36:03 +08:00
|
|
|
|
|
|
|
# Remove head slots
|
|
|
|
$master1 CLUSTER DELSLOTS 0 2
|
|
|
|
assert_match "* 1 3-4091 4093 4095 4097-8191*" [$master1 CLUSTER NODES]
|
2021-03-12 14:40:35 +08:00
|
|
|
assert_match "*1 1*3 4091*4093 4093*4095 4095*4097 8191*" [$master1 CLUSTER SLOTS]
|
2021-01-14 04:36:03 +08:00
|
|
|
|
|
|
|
# Remove tail slots
|
|
|
|
$master2 CLUSTER DELSLOTS 16380 16382 16383
|
|
|
|
assert_match "* 8192-12283 12285 12287 12289-16379 16381*" [$master2 CLUSTER NODES]
|
2021-03-12 14:40:35 +08:00
|
|
|
assert_match "*8192 12283*12285 12285*12287 12287*12289 16379*16381 16381*" [$master2 CLUSTER SLOTS]
|
2021-01-14 04:36:03 +08:00
|
|
|
}
|
2024-05-09 10:14:47 +08:00
|
|
|
|
|
|
|
} ;# start_cluster
|