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
|
2021-12-19 10:41:51 -05:00
|
|
|
set d1 [debug_digest]
|
2014-07-10 05:24:59 -04:00
|
|
|
|
2016-08-24 09:39:39 -04:00
|
|
|
# Load the AOF
|
|
|
|
r debug loadaof
|
2021-12-19 10:41:51 -05:00
|
|
|
set d2 [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
|
2022-01-04 06:37:47 -05:00
|
|
|
|
|
|
|
# start a slow AOFRW
|
2022-01-13 05:38:41 -05:00
|
|
|
r set k v
|
2022-01-04 06:37:47 -05:00
|
|
|
r config set rdb-key-save-delay 10000000
|
2012-04-07 07:22:04 -04:00
|
|
|
r bgrewriteaof
|
2022-01-04 06:37:47 -05:00
|
|
|
|
|
|
|
# disable AOF and wait for the child to be killed
|
2012-04-07 07:22:04 -04:00
|
|
|
r config set appendonly no
|
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"
|
|
|
|
}
|
2022-01-19 14:21:42 -05:00
|
|
|
r config set rdb-key-save-delay 0
|
2012-05-02 05:40:46 -04:00
|
|
|
}
|
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
|
2021-12-19 10:41:51 -05:00
|
|
|
set d1 [debug_digest]
|
2011-12-12 09:34:00 -05:00
|
|
|
r bgrewriteaof
|
|
|
|
waitForBgrewriteaof r
|
|
|
|
r debug loadaof
|
2021-12-19 10:41:51 -05:00
|
|
|
set d2 [debug_digest]
|
2011-12-12 09:34:00 -05:00
|
|
|
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
|
|
|
|
}
|
2021-12-19 10:41:51 -05:00
|
|
|
set d1 [debug_digest]
|
2011-12-12 09:34:00 -05:00
|
|
|
r bgrewriteaof
|
|
|
|
waitForBgrewriteaof r
|
|
|
|
r debug loadaof
|
2021-12-19 10:41:51 -05:00
|
|
|
set d2 [debug_digest]
|
2011-12-12 09:34:00 -05:00
|
|
|
if {$d1 ne $d2} {
|
|
|
|
error "assertion:$d1 is not equal to $d2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach d {string int} {
|
2021-08-10 02:18:49 -04:00
|
|
|
foreach e {listpack hashtable} {
|
2011-12-12 09:34:00 -05:00
|
|
|
test "AOF rewrite of hash with $e encoding, $d data" {
|
|
|
|
r flushall
|
2021-08-10 02:18:49 -04:00
|
|
|
if {$e eq {listpack}} {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
|
2021-12-19 10:41:51 -05:00
|
|
|
set d1 [debug_digest]
|
2011-12-12 09:34:00 -05:00
|
|
|
r bgrewriteaof
|
|
|
|
waitForBgrewriteaof r
|
|
|
|
r debug loadaof
|
2021-12-19 10:41:51 -05:00
|
|
|
set d2 [debug_digest]
|
2011-12-12 09:34:00 -05:00
|
|
|
if {$d1 ne $d2} {
|
|
|
|
error "assertion:$d1 is not equal to $d2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach d {string int} {
|
2021-09-09 11:18:53 -04:00
|
|
|
foreach e {listpack skiplist} {
|
2011-12-12 09:34:00 -05:00
|
|
|
test "AOF rewrite of zset with $e encoding, $d data" {
|
|
|
|
r flushall
|
2021-09-09 11:18:53 -04:00
|
|
|
if {$e eq {listpack}} {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 zadd key [expr rand()] $data
|
|
|
|
}
|
|
|
|
assert_equal [r object encoding key] $e
|
2021-12-19 10:41:51 -05:00
|
|
|
set d1 [debug_digest]
|
2011-12-12 09:34:00 -05:00
|
|
|
r bgrewriteaof
|
|
|
|
waitForBgrewriteaof r
|
|
|
|
r debug loadaof
|
2021-12-19 10:41:51 -05:00
|
|
|
set d2 [debug_digest]
|
2011-12-12 09:34:00 -05:00
|
|
|
if {$d1 ne $d2} {
|
|
|
|
error "assertion:$d1 is not equal to $d2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-04-06 17:52:53 -04:00
|
|
|
|
2022-01-19 14:21:42 -05:00
|
|
|
test "AOF rewrite functions" {
|
|
|
|
r flushall
|
2022-04-05 03:27:24 -04:00
|
|
|
r FUNCTION LOAD {#!lua name=test
|
2022-01-19 14:21:42 -05:00
|
|
|
redis.register_function('test', function() return 1 end)
|
|
|
|
}
|
|
|
|
r bgrewriteaof
|
|
|
|
waitForBgrewriteaof r
|
|
|
|
r function flush
|
|
|
|
r debug loadaof
|
|
|
|
assert_equal [r fcall test 0] 1
|
|
|
|
r FUNCTION LIST
|
2022-04-05 03:27:24 -04:00
|
|
|
} {{library_name test engine LUA functions {{name test description {} flags {}}}}}
|
2022-01-19 14:21:42 -05:00
|
|
|
|
2012-04-06 17:52:53 -04:00
|
|
|
test {BGREWRITEAOF is delayed if BGSAVE is in progress} {
|
2021-12-27 08:18:17 -05:00
|
|
|
r flushall
|
|
|
|
r set k v
|
|
|
|
r config set rdb-key-save-delay 10000000
|
2012-04-06 17:52:53 -04:00
|
|
|
r bgsave
|
2021-12-27 08:18:17 -05:00
|
|
|
assert_match {*scheduled*} [r bgrewriteaof]
|
|
|
|
assert_equal [s aof_rewrite_scheduled] 1
|
|
|
|
r config set rdb-key-save-delay 0
|
|
|
|
catch {exec kill -9 [get_child_pid 0]}
|
|
|
|
while {[s aof_rewrite_scheduled] eq 1} {
|
2012-04-06 17:52:53 -04:00
|
|
|
after 100
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
test {BGREWRITEAOF is refused if already in progress} {
|
2021-12-27 08:18:17 -05:00
|
|
|
r config set aof-use-rdb-preamble yes
|
|
|
|
r config set rdb-key-save-delay 10000000
|
2012-04-06 17:52:53 -04:00
|
|
|
catch {
|
|
|
|
r bgrewriteaof
|
|
|
|
r bgrewriteaof
|
|
|
|
} e
|
|
|
|
assert_match {*ERR*already*} $e
|
2021-12-27 08:18:17 -05:00
|
|
|
r config set rdb-key-save-delay 0
|
|
|
|
catch {exec kill -9 [get_child_pid 0]}
|
2012-04-06 17:52:53 -04:00
|
|
|
}
|
2011-12-12 09:34:00 -05:00
|
|
|
}
|