2021-06-09 08:13:24 -04:00
|
|
|
tags {"rdb external:skip"} {
|
2021-01-17 08:48:48 -05:00
|
|
|
|
2012-03-23 10:22:25 -04:00
|
|
|
set server_path [tmpdir "server.rdb-encoding-test"]
|
|
|
|
|
2012-03-23 15:20:43 -04:00
|
|
|
# Copy RDB with different encodings in server path
|
2012-03-23 10:22:25 -04:00
|
|
|
exec cp tests/assets/encodings.rdb $server_path
|
|
|
|
|
|
|
|
start_server [list overrides [list "dir" $server_path "dbfilename" "encodings.rdb"]] {
|
|
|
|
test "RDB encoding loading test" {
|
|
|
|
r select 0
|
|
|
|
csvdump r
|
2015-08-05 08:05:34 -04:00
|
|
|
} {"0","compressible","string","aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
|
|
|
"0","hash","hash","a","1","aa","10","aaa","100","b","2","bb","20","bbb","200","c","3","cc","30","ccc","300","ddd","400","eee","5000000000",
|
|
|
|
"0","hash_zipped","hash","a","1","b","2","c","3",
|
|
|
|
"0","list","list","1","2","3","a","b","c","100000","6000000000","1","2","3","a","b","c","100000","6000000000","1","2","3","a","b","c","100000","6000000000",
|
|
|
|
"0","list_zipped","list","1","2","3","a","b","c","100000","6000000000",
|
|
|
|
"0","number","string","10"
|
|
|
|
"0","set","set","1","100000","2","3","6000000000","a","b","c",
|
|
|
|
"0","set_zipped_1","set","1","2","3","4",
|
|
|
|
"0","set_zipped_2","set","100000","200000","300000","400000",
|
|
|
|
"0","set_zipped_3","set","1000000000","2000000000","3000000000","4000000000","5000000000","6000000000",
|
|
|
|
"0","string","string","Hello World"
|
|
|
|
"0","zset","zset","a","1","b","2","c","3","aa","10","bb","20","cc","30","aaa","100","bbb","200","ccc","300","aaaa","1000","cccc","123456789","bbbb","5000000000",
|
|
|
|
"0","zset_zipped","zset","a","1","b","2","c","3",
|
2012-03-23 10:22:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-12 14:55:33 -04:00
|
|
|
set server_path [tmpdir "server.rdb-startup-test"]
|
|
|
|
|
2020-08-31 03:44:43 -04:00
|
|
|
start_server [list overrides [list "dir" $server_path] keep_persistence true] {
|
2013-03-12 14:55:33 -04:00
|
|
|
test {Server started empty with non-existing RDB file} {
|
|
|
|
r debug digest
|
|
|
|
} {0000000000000000000000000000000000000000}
|
2013-03-13 05:04:33 -04:00
|
|
|
# Save an RDB file, needed for the next test.
|
|
|
|
r save
|
|
|
|
}
|
|
|
|
|
2020-08-31 03:44:43 -04:00
|
|
|
start_server [list overrides [list "dir" $server_path] keep_persistence true] {
|
2013-03-13 05:04:33 -04:00
|
|
|
test {Server started empty with empty RDB file} {
|
|
|
|
r debug digest
|
|
|
|
} {0000000000000000000000000000000000000000}
|
|
|
|
}
|
|
|
|
|
2020-08-31 03:44:43 -04:00
|
|
|
start_server [list overrides [list "dir" $server_path] keep_persistence true] {
|
2018-06-19 10:29:15 -04:00
|
|
|
test {Test RDB stream encoding} {
|
|
|
|
for {set j 0} {$j < 1000} {incr j} {
|
|
|
|
if {rand() < 0.9} {
|
|
|
|
r xadd stream * foo $j
|
|
|
|
} else {
|
|
|
|
r xadd stream * bar $j
|
|
|
|
}
|
|
|
|
}
|
2018-06-27 08:32:18 -04:00
|
|
|
r xgroup create stream mygroup 0
|
2020-11-22 13:58:33 -05:00
|
|
|
set records [r xreadgroup GROUP mygroup Alice COUNT 2 STREAMS stream >]
|
2021-03-01 10:23:29 -05:00
|
|
|
r xdel stream [lindex [lindex [lindex [lindex $records 0] 1] 1] 0]
|
2020-11-22 13:58:33 -05:00
|
|
|
r xack stream mygroup [lindex [lindex [lindex [lindex $records 0] 1] 0] 0]
|
2018-06-19 10:29:15 -04:00
|
|
|
set digest [r debug digest]
|
2020-11-22 13:58:33 -05:00
|
|
|
r config set sanitize-dump-payload no
|
2018-06-19 10:29:15 -04:00
|
|
|
r debug reload
|
|
|
|
set newdigest [r debug digest]
|
|
|
|
assert {$digest eq $newdigest}
|
|
|
|
}
|
2020-11-22 13:58:33 -05:00
|
|
|
test {Test RDB stream encoding - sanitize dump} {
|
|
|
|
r config set sanitize-dump-payload yes
|
|
|
|
r debug reload
|
|
|
|
set newdigest [r debug digest]
|
|
|
|
assert {$digest eq $newdigest}
|
|
|
|
}
|
|
|
|
# delete the stream, maybe valgrind will find something
|
|
|
|
r del stream
|
2018-06-19 10:29:15 -04:00
|
|
|
}
|
|
|
|
|
2013-03-13 05:04:33 -04:00
|
|
|
# Helper function to start a server and kill it, just to check the error
|
|
|
|
# logged.
|
|
|
|
set defaults {}
|
|
|
|
proc start_server_and_kill_it {overrides code} {
|
|
|
|
upvar defaults defaults srv srv server_path server_path
|
|
|
|
set config [concat $defaults $overrides]
|
2020-08-31 03:44:43 -04:00
|
|
|
set srv [start_server [list overrides $config keep_persistence true]]
|
2013-03-13 05:04:33 -04:00
|
|
|
uplevel 1 $code
|
|
|
|
kill_server $srv
|
|
|
|
}
|
|
|
|
|
|
|
|
# Make the RDB file unreadable
|
|
|
|
file attributes [file join $server_path dump.rdb] -permissions 0222
|
|
|
|
|
2013-04-23 08:08:42 -04:00
|
|
|
# Detect root account (it is able to read the file even with 002 perm)
|
|
|
|
set isroot 0
|
|
|
|
catch {
|
|
|
|
open [file join $server_path dump.rdb]
|
|
|
|
set isroot 1
|
|
|
|
}
|
|
|
|
|
2013-03-13 05:04:33 -04:00
|
|
|
# Now make sure the server aborted with an error
|
2013-04-23 08:08:42 -04:00
|
|
|
if {!$isroot} {
|
|
|
|
start_server_and_kill_it [list "dir" $server_path] {
|
|
|
|
test {Server should not start if RDB file can't be open} {
|
|
|
|
wait_for_condition 50 100 {
|
|
|
|
[string match {*Fatal error loading*} \
|
2017-02-22 07:08:21 -05:00
|
|
|
[exec tail -1 < [dict get $srv stdout]]]
|
2013-04-23 08:08:42 -04:00
|
|
|
} else {
|
|
|
|
fail "Server started even if RDB was unreadable!"
|
|
|
|
}
|
|
|
|
}
|
2013-03-13 05:04:33 -04:00
|
|
|
}
|
2013-03-12 14:55:33 -04:00
|
|
|
}
|
2013-03-13 06:12:45 -04:00
|
|
|
|
2013-04-22 05:25:44 -04:00
|
|
|
# Fix permissions of the RDB file.
|
2013-03-13 06:12:45 -04:00
|
|
|
file attributes [file join $server_path dump.rdb] -permissions 0666
|
2013-04-22 05:25:44 -04:00
|
|
|
|
|
|
|
# Corrupt its CRC64 checksum.
|
2013-03-13 06:12:45 -04:00
|
|
|
set filesize [file size [file join $server_path dump.rdb]]
|
|
|
|
set fd [open [file join $server_path dump.rdb] r+]
|
|
|
|
fconfigure $fd -translation binary
|
|
|
|
seek $fd -8 end
|
|
|
|
puts -nonewline $fd "foobar00"; # Corrupt the checksum
|
|
|
|
close $fd
|
|
|
|
|
|
|
|
# Now make sure the server aborted with an error
|
|
|
|
start_server_and_kill_it [list "dir" $server_path] {
|
2013-04-23 08:08:42 -04:00
|
|
|
test {Server should not start if RDB is corrupted} {
|
|
|
|
wait_for_condition 50 100 {
|
2016-07-04 06:41:25 -04:00
|
|
|
[string match {*CRC error*} \
|
2017-02-22 07:08:21 -05:00
|
|
|
[exec tail -10 < [dict get $srv stdout]]]
|
2013-04-23 08:08:42 -04:00
|
|
|
} else {
|
|
|
|
fail "Server started even if RDB was corrupted!"
|
|
|
|
}
|
2013-03-13 06:12:45 -04:00
|
|
|
}
|
|
|
|
}
|
2019-09-26 08:16:34 -04:00
|
|
|
|
|
|
|
start_server {} {
|
|
|
|
test {Test FLUSHALL aborts bgsave} {
|
2020-07-23 06:06:24 -04:00
|
|
|
# 1000 keys with 1ms sleep per key shuld take 1 second
|
2019-09-26 08:16:34 -04:00
|
|
|
r config set rdb-key-save-delay 1000
|
|
|
|
r debug populate 1000
|
|
|
|
r bgsave
|
|
|
|
assert_equal [s rdb_bgsave_in_progress] 1
|
|
|
|
r flushall
|
2020-07-23 06:06:24 -04:00
|
|
|
# wait half a second max
|
|
|
|
wait_for_condition 5 100 {
|
|
|
|
[s rdb_bgsave_in_progress] == 0
|
|
|
|
} else {
|
|
|
|
fail "bgsave not aborted"
|
|
|
|
}
|
|
|
|
# veirfy that bgsave failed, by checking that the change counter is still high
|
|
|
|
assert_lessthan 999 [s rdb_changes_since_last_save]
|
2019-09-26 08:16:34 -04:00
|
|
|
# make sure the server is still writable
|
|
|
|
r set x xx
|
|
|
|
}
|
2020-07-23 06:06:24 -04:00
|
|
|
|
|
|
|
test {bgsave resets the change counter} {
|
|
|
|
r config set rdb-key-save-delay 0
|
|
|
|
r bgsave
|
2020-08-04 01:53:50 -04:00
|
|
|
wait_for_condition 50 100 {
|
2020-07-23 06:06:24 -04:00
|
|
|
[s rdb_bgsave_in_progress] == 0
|
|
|
|
} else {
|
2020-08-04 01:53:50 -04:00
|
|
|
fail "bgsave not done"
|
2020-07-23 06:06:24 -04:00
|
|
|
}
|
|
|
|
assert_equal [s rdb_changes_since_last_save] 0
|
|
|
|
}
|
2020-05-10 12:13:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
test {client freed during loading} {
|
|
|
|
start_server [list overrides [list key-load-delay 10 rdbcompression no]] {
|
|
|
|
# create a big rdb that will take long to load. it is important
|
|
|
|
# for keys to be big since the server processes events only once in 2mb.
|
|
|
|
# 100mb of rdb, 100k keys will load in more than 1 second
|
|
|
|
r debug populate 100000 key 1000
|
|
|
|
|
2020-08-14 09:05:34 -04:00
|
|
|
restart_server 0 false false
|
2020-05-10 12:13:47 -04:00
|
|
|
|
|
|
|
# make sure it's still loading
|
|
|
|
assert_equal [s loading] 1
|
|
|
|
|
|
|
|
# connect and disconnect 10 clients
|
|
|
|
set clients {}
|
|
|
|
for {set j 0} {$j < 10} {incr j} {
|
|
|
|
lappend clients [redis_deferring_client]
|
|
|
|
}
|
|
|
|
foreach rd $clients {
|
|
|
|
$rd debug log bla
|
|
|
|
}
|
|
|
|
foreach rd $clients {
|
|
|
|
$rd read
|
|
|
|
}
|
|
|
|
foreach rd $clients {
|
|
|
|
$rd close
|
|
|
|
}
|
|
|
|
|
|
|
|
# make sure the server freed the clients
|
|
|
|
wait_for_condition 100 100 {
|
|
|
|
[s connected_clients] < 3
|
|
|
|
} else {
|
|
|
|
fail "clients didn't disconnect"
|
|
|
|
}
|
|
|
|
|
|
|
|
# make sure it's still loading
|
|
|
|
assert_equal [s loading] 1
|
|
|
|
|
|
|
|
# no need to keep waiting for loading to complete
|
|
|
|
exec kill [srv 0 pid]
|
|
|
|
}
|
tests/valgrind: don't use debug restart (#7404)
* tests/valgrind: don't use debug restart
DEBUG REATART causes two issues:
1. it uses execve which replaces the original process and valgrind doesn't
have a chance to check for errors, so leaks go unreported.
2. valgrind report invalid calls to close() which we're unable to resolve.
So now the tests use restart_server mechanism in the tests, that terminates
the old server and starts a new one, new PID, but same stdout, stderr.
since the stderr can contain two or more valgrind report, it is not enough
to just check for the absence of leaks, we also need to check for some known
errors, we do both, and fail if we either find an error, or can't find a
report saying there are no leaks.
other changes:
- when killing a server that was already terminated we check for leaks too.
- adding DEBUG LEAK which was used to test it.
- adding --trace-children to valgrind, although no longer needed.
- since the stdout contains two or more runs, we need slightly different way
of checking if the new process is up (explicitly looking for the new PID)
- move the code that handles --wait-server to happen earlier (before
watching the startup message in the log), and serve the restarted server too.
* squashme - CR fixes
2020-07-10 01:26:52 -04:00
|
|
|
}
|
2020-12-20 13:23:20 -05:00
|
|
|
|
2021-01-08 16:35:30 -05:00
|
|
|
# Our COW metrics (Private_Dirty) work only on Linux
|
|
|
|
set system_name [string tolower [exec uname -s]]
|
|
|
|
if {$system_name eq {linux}} {
|
|
|
|
|
2020-12-20 13:23:20 -05:00
|
|
|
start_server {overrides {save ""}} {
|
2021-02-16 09:06:51 -05:00
|
|
|
test {Test child sending info} {
|
2020-12-20 13:23:20 -05:00
|
|
|
# make sure that rdb_last_cow_size and current_cow_size are zero (the test using new server),
|
|
|
|
# so that the comparisons during the test will be valid
|
|
|
|
assert {[s current_cow_size] == 0}
|
2021-02-16 09:06:51 -05:00
|
|
|
assert {[s current_save_keys_processed] == 0}
|
|
|
|
assert {[s current_save_keys_total] == 0}
|
|
|
|
|
2020-12-20 13:23:20 -05:00
|
|
|
assert {[s rdb_last_cow_size] == 0}
|
|
|
|
|
|
|
|
# using a 200us delay, the bgsave is empirically taking about 10 seconds.
|
|
|
|
# we need it to take more than some 5 seconds, since redis only report COW once a second.
|
|
|
|
r config set rdb-key-save-delay 200
|
2021-01-08 16:35:30 -05:00
|
|
|
r config set loglevel debug
|
2020-12-20 13:23:20 -05:00
|
|
|
|
|
|
|
# populate the db with 10k keys of 4k each
|
|
|
|
set rd [redis_deferring_client 0]
|
|
|
|
set size 4096
|
|
|
|
set cmd_count 10000
|
|
|
|
for {set k 0} {$k < $cmd_count} {incr k} {
|
|
|
|
$rd set key$k [string repeat A $size]
|
|
|
|
}
|
|
|
|
|
|
|
|
for {set k 0} {$k < $cmd_count} {incr k} {
|
|
|
|
catch { $rd read }
|
|
|
|
}
|
|
|
|
|
|
|
|
$rd close
|
|
|
|
|
|
|
|
# start background rdb save
|
|
|
|
r bgsave
|
|
|
|
|
2021-02-16 09:06:51 -05:00
|
|
|
set current_save_keys_total [s current_save_keys_total]
|
|
|
|
if {$::verbose} {
|
|
|
|
puts "Keys before bgsave start: current_save_keys_total"
|
|
|
|
}
|
|
|
|
|
2020-12-20 13:23:20 -05:00
|
|
|
# on each iteration, we will write some key to the server to trigger copy-on-write, and
|
|
|
|
# wait to see that it reflected in INFO.
|
|
|
|
set iteration 1
|
|
|
|
while 1 {
|
2021-02-16 09:06:51 -05:00
|
|
|
# take samples before writing new data to the server
|
2020-12-20 13:23:20 -05:00
|
|
|
set cow_size [s current_cow_size]
|
|
|
|
if {$::verbose} {
|
|
|
|
puts "COW info before copy-on-write: $cow_size"
|
|
|
|
}
|
|
|
|
|
2021-02-16 09:06:51 -05:00
|
|
|
set keys_processed [s current_save_keys_processed]
|
|
|
|
if {$::verbose} {
|
|
|
|
puts "current_save_keys_processed info : $keys_processed"
|
|
|
|
}
|
|
|
|
|
2020-12-20 13:23:20 -05:00
|
|
|
# trigger copy-on-write
|
|
|
|
r setrange key$iteration 0 [string repeat B $size]
|
|
|
|
|
|
|
|
# wait to see that current_cow_size value updated (as long as the child is in progress)
|
|
|
|
wait_for_condition 80 100 {
|
|
|
|
[s rdb_bgsave_in_progress] == 0 ||
|
2021-02-16 09:06:51 -05:00
|
|
|
[s current_cow_size] >= $cow_size + $size &&
|
|
|
|
[s current_save_keys_processed] > $keys_processed &&
|
|
|
|
[s current_fork_perc] > 0
|
2020-12-20 13:23:20 -05:00
|
|
|
} else {
|
|
|
|
if {$::verbose} {
|
|
|
|
puts "COW info on fail: [s current_cow_size]"
|
2021-01-08 16:35:30 -05:00
|
|
|
puts [exec tail -n 100 < [srv 0 stdout]]
|
2020-12-20 13:23:20 -05:00
|
|
|
}
|
2021-01-08 16:35:30 -05:00
|
|
|
fail "COW info wasn't reported"
|
2020-12-20 13:23:20 -05:00
|
|
|
}
|
|
|
|
|
2021-02-16 09:06:51 -05:00
|
|
|
# assert that $keys_processed is not greater than total keys.
|
|
|
|
assert_morethan_equal $current_save_keys_total $keys_processed
|
|
|
|
|
2020-12-20 13:23:20 -05:00
|
|
|
# for no accurate, stop after 2 iterations
|
|
|
|
if {!$::accurate && $iteration == 2} {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
# stop iterating if the bgsave completed
|
|
|
|
if { [s rdb_bgsave_in_progress] == 0 } {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
incr iteration 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# make sure we saw report of current_cow_size
|
2021-01-08 16:35:30 -05:00
|
|
|
if {$iteration < 2 && $::verbose} {
|
|
|
|
puts [exec tail -n 100 < [srv 0 stdout]]
|
|
|
|
}
|
2020-12-20 13:23:20 -05:00
|
|
|
assert_morethan_equal $iteration 2
|
|
|
|
|
2021-01-08 16:35:30 -05:00
|
|
|
# if bgsave completed, check that rdb_last_cow_size (fork exit report)
|
|
|
|
# is at least 90% of last rdb_active_cow_size.
|
2020-12-20 13:23:20 -05:00
|
|
|
if { [s rdb_bgsave_in_progress] == 0 } {
|
2021-01-08 16:35:30 -05:00
|
|
|
set final_cow [s rdb_last_cow_size]
|
|
|
|
set cow_size [expr $cow_size * 0.9]
|
|
|
|
if {$final_cow < $cow_size && $::verbose} {
|
|
|
|
puts [exec tail -n 100 < [srv 0 stdout]]
|
|
|
|
}
|
|
|
|
assert_morethan_equal $final_cow $cow_size
|
2020-12-20 13:23:20 -05:00
|
|
|
}
|
|
|
|
}
|
2021-01-08 16:35:30 -05:00
|
|
|
}
|
|
|
|
} ;# system_name
|
2021-01-17 08:48:48 -05:00
|
|
|
|
|
|
|
} ;# tags
|