2021-06-09 08:13:24 -04:00
|
|
|
start_server {tags {"aofrw external:skip"}} {
|
2014-07-10 05:24:59 -04:00
|
|
|
# Enable the AOF
|
|
|
|
r config set appendonly yes
|
|
|
|
r config set auto-aof-rewrite-percentage 0 ; # Disable auto-rewrite.
|
|
|
|
waitForBgrewriteaof r
|
2012-04-07 07:22:04 -04:00
|
|
|
|
2016-08-24 09:39:39 -04:00
|
|
|
foreach rdbpre {yes no} {
|
|
|
|
r config set aof-use-rdb-preamble $rdbpre
|
|
|
|
test "AOF rewrite during write load: RDB preamble=$rdbpre" {
|
|
|
|
# Start a write load for 10 seconds
|
|
|
|
set master [srv 0 client]
|
|
|
|
set master_host [srv 0 host]
|
|
|
|
set master_port [srv 0 port]
|
|
|
|
set load_handle0 [start_write_load $master_host $master_port 10]
|
|
|
|
set load_handle1 [start_write_load $master_host $master_port 10]
|
|
|
|
set load_handle2 [start_write_load $master_host $master_port 10]
|
|
|
|
set load_handle3 [start_write_load $master_host $master_port 10]
|
|
|
|
set load_handle4 [start_write_load $master_host $master_port 10]
|
2014-07-10 05:24:59 -04:00
|
|
|
|
2016-08-24 09:39:39 -04:00
|
|
|
# Make sure the instance is really receiving data
|
|
|
|
wait_for_condition 50 100 {
|
|
|
|
[r dbsize] > 0
|
|
|
|
} else {
|
|
|
|
fail "No write load detected."
|
|
|
|
}
|
2014-07-10 05:24:59 -04:00
|
|
|
|
2016-08-24 09:39:39 -04:00
|
|
|
# After 3 seconds, start a rewrite, while the write load is still
|
|
|
|
# active.
|
|
|
|
after 3000
|
|
|
|
r bgrewriteaof
|
|
|
|
waitForBgrewriteaof r
|
2014-07-10 05:24:59 -04:00
|
|
|
|
2016-08-24 09:39:39 -04:00
|
|
|
# Let it run a bit more so that we'll append some data to the new
|
|
|
|
# AOF.
|
|
|
|
after 1000
|
2014-07-10 05:24:59 -04:00
|
|
|
|
2016-08-24 09:39:39 -04:00
|
|
|
# Stop the processes generating the load if they are still active
|
|
|
|
stop_write_load $load_handle0
|
|
|
|
stop_write_load $load_handle1
|
|
|
|
stop_write_load $load_handle2
|
|
|
|
stop_write_load $load_handle3
|
|
|
|
stop_write_load $load_handle4
|
2014-07-10 05:24:59 -04:00
|
|
|
|
stabilize tests that involved with load handlers (#8967)
When test stop 'load handler' by killing the process that generating the load,
some commands that already in the input buffer, still might be processed by the server.
This may cause some instability in tests, that count on that no more commands
processed after we stop the `load handler'
In this commit, new proc 'wait_load_handlers_disconnected' added, to verify that no more
cammands from any 'load handler' prossesed, by checking that the clients who
genreate the load is disconnceted.
Also, replacing check of dbsize with wait_for_ofs_sync before comparing debug digest, as
it would fail in case the last key the workload wrote was an overridden key (not a new one).
Affected tests
Race fix:
- failover command to specific replica works
- Connect multiple replicas at the same time (issue #141), master diskless=$mdl, replica diskless=$sdl
- AOF rewrite during write load: RDB preamble=$rdbpre
Cleanup and speedup:
- Test replication with blocking lists and sorted sets operations
- Test replication with parallel clients writing in different DBs
- Test replication partial resync: $descr (diskless: $mdl, $sdl, reconnect: $reconnect
2021-05-20 08:29:43 -04:00
|
|
|
# Make sure no more commands processed, before taking debug digest
|
|
|
|
wait_load_handlers_disconnected
|
2014-07-10 10:42:43 -04:00
|
|
|
|
2016-08-24 09:39:39 -04:00
|
|
|
# Get the data set digest
|
|
|
|
set d1 [r debug digest]
|
2014-07-10 05:24:59 -04:00
|
|
|
|
2016-08-24 09:39:39 -04:00
|
|
|
# Load the AOF
|
|
|
|
r debug loadaof
|
|
|
|
set d2 [r debug digest]
|
2014-07-10 05:24:59 -04:00
|
|
|
|
2016-08-24 09:39:39 -04:00
|
|
|
# Make sure they are the same
|
|
|
|
assert {$d1 eq $d2}
|
|
|
|
}
|
2014-07-10 05:24:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-09 08:13:24 -04:00
|
|
|
start_server {tags {"aofrw external:skip"} overrides {aof-use-rdb-preamble no}} {
|
2012-04-07 07:22:04 -04:00
|
|
|
test {Turning off AOF kills the background writing child if any} {
|
|
|
|
r config set appendonly yes
|
|
|
|
waitForBgrewriteaof r
|
|
|
|
r multi
|
|
|
|
r bgrewriteaof
|
|
|
|
r config set appendonly no
|
|
|
|
r exec
|
2012-05-02 05:40:46 -04:00
|
|
|
wait_for_condition 50 100 {
|
2017-02-22 07:08:21 -05:00
|
|
|
[string match {*Killing*AOF*child*} [exec tail -5 < [srv 0 stdout]]]
|
2012-05-02 05:40:46 -04:00
|
|
|
} else {
|
|
|
|
fail "Can't find 'Killing AOF child' into recent logs"
|
|
|
|
}
|
|
|
|
}
|
2012-04-07 07:22:04 -04:00
|
|
|
|
2011-12-12 09:34:00 -05:00
|
|
|
foreach d {string int} {
|
2014-11-13 14:11:47 -05:00
|
|
|
foreach e {quicklist} {
|
2011-12-12 09:34:00 -05:00
|
|
|
test "AOF rewrite of list with $e encoding, $d data" {
|
|
|
|
r flushall
|
2014-11-13 14:11:47 -05:00
|
|
|
set len 1000
|
2011-12-12 09:34:00 -05:00
|
|
|
for {set j 0} {$j < $len} {incr j} {
|
|
|
|
if {$d eq {string}} {
|
|
|
|
set data [randstring 0 16 alpha]
|
|
|
|
} else {
|
|
|
|
set data [randomInt 4000000000]
|
|
|
|
}
|
|
|
|
r lpush key $data
|
|
|
|
}
|
|
|
|
assert_equal [r object encoding key] $e
|
|
|
|
set d1 [r debug digest]
|
|
|
|
r bgrewriteaof
|
|
|
|
waitForBgrewriteaof r
|
|
|
|
r debug loadaof
|
|
|
|
set d2 [r debug digest]
|
|
|
|
if {$d1 ne $d2} {
|
|
|
|
error "assertion:$d1 is not equal to $d2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach d {string int} {
|
|
|
|
foreach e {intset hashtable} {
|
|
|
|
test "AOF rewrite of set with $e encoding, $d data" {
|
|
|
|
r flushall
|
|
|
|
if {$e eq {intset}} {set len 10} else {set len 1000}
|
|
|
|
for {set j 0} {$j < $len} {incr j} {
|
|
|
|
if {$d eq {string}} {
|
|
|
|
set data [randstring 0 16 alpha]
|
|
|
|
} else {
|
|
|
|
set data [randomInt 4000000000]
|
|
|
|
}
|
|
|
|
r sadd key $data
|
|
|
|
}
|
|
|
|
if {$d ne {string}} {
|
|
|
|
assert_equal [r object encoding key] $e
|
|
|
|
}
|
|
|
|
set d1 [r debug digest]
|
|
|
|
r bgrewriteaof
|
|
|
|
waitForBgrewriteaof r
|
|
|
|
r debug loadaof
|
|
|
|
set d2 [r debug digest]
|
|
|
|
if {$d1 ne $d2} {
|
|
|
|
error "assertion:$d1 is not equal to $d2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach d {string int} {
|
2012-01-03 01:14:10 -05:00
|
|
|
foreach e {ziplist hashtable} {
|
2011-12-12 09:34:00 -05:00
|
|
|
test "AOF rewrite of hash with $e encoding, $d data" {
|
|
|
|
r flushall
|
2012-01-03 01:14:10 -05:00
|
|
|
if {$e eq {ziplist}} {set len 10} else {set len 1000}
|
2011-12-12 09:34:00 -05:00
|
|
|
for {set j 0} {$j < $len} {incr j} {
|
|
|
|
if {$d eq {string}} {
|
|
|
|
set data [randstring 0 16 alpha]
|
|
|
|
} else {
|
|
|
|
set data [randomInt 4000000000]
|
|
|
|
}
|
|
|
|
r hset key $data $data
|
|
|
|
}
|
|
|
|
assert_equal [r object encoding key] $e
|
|
|
|
set d1 [r debug digest]
|
|
|
|
r bgrewriteaof
|
|
|
|
waitForBgrewriteaof r
|
|
|
|
r debug loadaof
|
|
|
|
set d2 [r debug digest]
|
|
|
|
if {$d1 ne $d2} {
|
|
|
|
error "assertion:$d1 is not equal to $d2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach d {string int} {
|
|
|
|
foreach e {ziplist skiplist} {
|
|
|
|
test "AOF rewrite of zset with $e encoding, $d data" {
|
|
|
|
r flushall
|
|
|
|
if {$e eq {ziplist}} {set len 10} else {set len 1000}
|
|
|
|
for {set j 0} {$j < $len} {incr j} {
|
|
|
|
if {$d eq {string}} {
|
|
|
|
set data [randstring 0 16 alpha]
|
|
|
|
} else {
|
|
|
|
set data [randomInt 4000000000]
|
|
|
|
}
|
|
|
|
r zadd key [expr rand()] $data
|
|
|
|
}
|
|
|
|
assert_equal [r object encoding key] $e
|
|
|
|
set d1 [r debug digest]
|
|
|
|
r bgrewriteaof
|
|
|
|
waitForBgrewriteaof r
|
|
|
|
r debug loadaof
|
|
|
|
set d2 [r debug digest]
|
|
|
|
if {$d1 ne $d2} {
|
|
|
|
error "assertion:$d1 is not equal to $d2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-04-06 17:52:53 -04:00
|
|
|
|
|
|
|
test {BGREWRITEAOF is delayed if BGSAVE is in progress} {
|
|
|
|
r multi
|
|
|
|
r bgsave
|
|
|
|
r bgrewriteaof
|
|
|
|
r info persistence
|
|
|
|
set res [r exec]
|
|
|
|
assert_match {*scheduled*} [lindex $res 1]
|
2012-05-25 09:20:59 -04:00
|
|
|
assert_match {*aof_rewrite_scheduled:1*} [lindex $res 2]
|
|
|
|
while {[string match {*aof_rewrite_scheduled:1*} [r info persistence]]} {
|
2012-04-06 17:52:53 -04:00
|
|
|
after 100
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
test {BGREWRITEAOF is refused if already in progress} {
|
|
|
|
catch {
|
|
|
|
r multi
|
|
|
|
r bgrewriteaof
|
|
|
|
r bgrewriteaof
|
|
|
|
r exec
|
|
|
|
} e
|
|
|
|
assert_match {*ERR*already*} $e
|
2012-05-25 09:20:59 -04:00
|
|
|
while {[string match {*aof_rewrite_scheduled:1*} [r info persistence]]} {
|
2012-04-06 17:52:53 -04:00
|
|
|
after 100
|
|
|
|
}
|
|
|
|
}
|
2011-12-12 09:34:00 -05:00
|
|
|
}
|