replication-psync.tcl 4.2 KB
Newer Older
1 2 3 4 5 6 7 8 9
proc start_bg_complex_data {host port db ops} {
    set tclsh [info nameofexecutable]
    exec $tclsh tests/helpers/bg_complex_data.tcl $host $port $db $ops &
}

proc stop_bg_complex_data {handle} {
    catch {exec /bin/kill -9 $handle}
}

A
antirez 已提交
10 11 12 13 14 15 16
# Creates a master-slave pair and breaks the link continuously to force
# partial resyncs attempts, all this while flooding the master with
# write queries.
#
# You can specifiy backlog size, ttl, delay before reconnection, test duration
# in seconds, and an additional condition to verify at the end.
proc test_psync {descr duration backlog_size backlog_ttl delay cond} {
17 18 19 20 21 22 23 24
    start_server {tags {"repl"}} {
        start_server {} {

            set master [srv -1 client]
            set master_host [srv -1 host]
            set master_port [srv -1 port]
            set slave [srv 0 client]

A
antirez 已提交
25 26
            $master config set repl-backlog-size $backlog_size
            $master config set repl-backlog-ttl $backlog_ttl
27 28 29 30 31

            set load_handle0 [start_bg_complex_data $master_host $master_port 9 100000]
            set load_handle1 [start_bg_complex_data $master_host $master_port 11 100000]
            set load_handle2 [start_bg_complex_data $master_host $master_port 12 100000]

32
            test {Slave should be able to synchronize with the master} {
33
                $slave slaveof $master_host $master_port
A
antirez 已提交
34
                wait_for_condition 50 100 {
35 36
                    [lindex [r role] 0] eq {slave} &&
                    [lindex [r role] 3] eq {connected}
A
antirez 已提交
37 38 39 40
                } else {
                    fail "Replication not started."
                }
            }
41

42 43 44 45 46 47 48 49 50
            # Check that the background clients are actually writing.
            test {Detect write load to master} {
                wait_for_condition 50 100 {
                    [$master dbsize] > 100
                } else {
                    fail "Can't detect write load from background clients."
                }
            }

A
antirez 已提交
51
            test "Test replication partial resync: $descr" {
52 53
                # Now while the clients are writing data, break the maste-slave
                # link multiple times.
A
antirez 已提交
54 55
                for {set j 0} {$j < $duration*10} {incr j} {
                    after 100
56 57 58 59
                    # catch {puts "MASTER [$master dbsize] keys, SLAVE [$slave dbsize] keys"}

                    if {($j % 20) == 0} {
                        catch {
A
antirez 已提交
60 61 62 63 64 65 66 67
                            if {$delay} {
                                $slave multi
                                $slave client kill $master_host:$master_port
                                $slave debug sleep $delay
                                $slave exec
                            } else {
                                $slave client kill $master_host:$master_port
                            }
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
                        }
                    }
                }
                stop_bg_complex_data $load_handle0
                stop_bg_complex_data $load_handle1
                stop_bg_complex_data $load_handle2
                set retry 10
                while {$retry && ([$master debug digest] ne [$slave debug digest])}\
                {
                    after 1000
                    incr retry -1
                }
                assert {[$master dbsize] > 0}

                if {[$master debug digest] ne [$slave debug digest]} {
                    set csv1 [csvdump r]
                    set csv2 [csvdump {r -1}]
                    set fd [open /tmp/repldump1.txt w]
                    puts -nonewline $fd $csv1
                    close $fd
                    set fd [open /tmp/repldump2.txt w]
                    puts -nonewline $fd $csv2
                    close $fd
                    puts "Master - Slave inconsistency"
                    puts "Run diff -u against /tmp/repldump*.txt for more info"
                }
                assert_equal [r debug digest] [r -1 debug digest]
                eval $cond
            }
        }
    }
}

A
antirez 已提交
101
test_psync {ok psync} 6 1000000 3600 0 {
102 103
    assert {[s -1 sync_partial_ok] > 0}
}
A
antirez 已提交
104

A
antirez 已提交
105 106
test_psync {no backlog} 6 100 3600 0.5 {
    assert {[s -1 sync_partial_err] > 0}
A
antirez 已提交
107 108 109 110 111 112 113
}

test_psync {ok after delay} 3 100000000 3600 3 {
    assert {[s -1 sync_partial_ok] > 0}
}

test_psync {backlog expired} 3 100000000 1 3 {
114 115
    assert {[s -1 sync_partial_err] > 0}
}