Skip to content

Commit ac03e37

Browse files
authored
Fix flaky replication tests (#13518)
#13495 introduced a change to reply -LOADING while flushing existing db on a replica. Some of our tests are sensitive to this change and do no expect -LOADING reply. Fixing a couple of tests that fail time to time.
1 parent 31227f4 commit ac03e37

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

tests/cluster/tests/14-consistency-check.tcl

+15-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ proc get_one_of_my_replica {id} {
3232
}
3333
set replica_port [lindex [lindex [lindex [R $id role] 2] 0] 1]
3434
set replica_id_num [get_instance_id_by_port redis $replica_port]
35+
36+
# To avoid -LOADING reply, wait until replica syncs with master.
37+
wait_for_condition 1000 50 {
38+
[RI $replica_id_num master_link_status] eq {up}
39+
} else {
40+
fail "Replica did not sync in time."
41+
}
3542
return $replica_id_num
3643
}
3744

@@ -105,8 +112,15 @@ proc test_slave_load_expired_keys {aof} {
105112
# start the replica again (loading an RDB or AOF file)
106113
restart_instance redis $replica_id
107114

115+
# Replica may start a full sync after restart, trying in a loop to avoid
116+
# -LOADING reply in that case.
117+
wait_for_condition 1000 50 {
118+
[catch {set replica_dbsize_3 [R $replica_id dbsize]} e] == 0
119+
} else {
120+
fail "Replica is not up."
121+
}
122+
108123
# make sure the keys are still there
109-
set replica_dbsize_3 [R $replica_id dbsize]
110124
assert {$replica_dbsize_3 > $replica_dbsize_0}
111125

112126
# restore settings

tests/unit/scripting.tcl

+8
Original file line numberDiff line numberDiff line change
@@ -2069,6 +2069,14 @@ start_server {tags {"scripting"}} {
20692069
} 1 x
20702070

20712071
r replicaof [srv -1 host] [srv -1 port]
2072+
2073+
# To avoid -LOADING reply, wait until replica syncs with master.
2074+
wait_for_condition 50 100 {
2075+
[s master_link_status] eq {up}
2076+
} else {
2077+
fail "Replica did not sync in time."
2078+
}
2079+
20722080
assert_error {EXECABORT Transaction discarded because of: READONLY *} {$rr exec}
20732081
assert_error {READONLY You can't write against a read only replica. script: *} {$rr2 exec}
20742082
$rr close

0 commit comments

Comments
 (0)