File: extstore.t

package info (click to toggle)
memcached 1.6.41-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,232 kB
  • sloc: ansic: 61,198; perl: 12,716; sh: 5,049; makefile: 471; python: 402; xml: 59
file content (309 lines) | stat: -rw-r--r-- 10,252 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
#!/usr/bin/env perl

use strict;
use warnings;
use Test::More;
use FindBin qw($Bin);
use lib "$Bin/lib";
use MemcachedTest;
use Data::Dumper qw/Dumper/;

my $ext_path;

if (!supports_extstore()) {
    plan skip_all => 'extstore not enabled';
    exit 0;
}

$ext_path = "/tmp/extstore.$$";

my $server = new_memcached("-m 64 -U 0 -o ext_page_size=8,ext_wbuf_size=2,ext_threads=1,ext_io_depth=2,ext_item_size=512,ext_item_age=2,ext_recache_rate=10000,ext_max_frag=0.9,ext_path=$ext_path:64m,slab_automove=0,ext_compact_under=1,ext_max_sleep=100000");
my $sock = $server->sock;

# Wait until all items have flushed
sub wait_for_ext {
    my $target = shift || 0;
    my $sum = $target + 1;
    while ($sum > $target) {
        my $s = mem_stats($sock, "items");
        $sum = 0;
        for my $key (keys %$s) {
            if ($key =~ m/items:(\d+):number/) {
                # Ignore classes which can contain extstore items
                next if $1 < 3;
                $sum += $s->{$key};
            }
        }
        sleep 1 if $sum > $target;
    }
}

sub watch_compact {
    my $watcher = $server->new_sock;

    print $watcher "watch sysevents\n";
    my $res = <$watcher>;
    is($res, "OK\r\n", "watcher enabled");

    my $fragcount = 20;
    my $read_end = '';
    while (my $log = <$watcher>) {
        chomp $log;
        if ($log =~ m/type=compact_fraginfo/) {
            $fragcount--;
        } else {
            $fragcount = 20;
        }
        last if $fragcount < 1;
    }
}

my $value;
{
    my @chars = ("C".."Z");
    for (1 .. 20000) {
        $value .= $chars[rand @chars];
    }
}

subtest 'basics' => sub {
    # fill a small object
    print $sock "set foo 0 0 2\r\nhi\r\n";
    is(scalar <$sock>, "STORED\r\n", "stored small value");
    # fetch
    mem_get_is($sock, "foo", "hi");

    # check extstore counters
    {
        my $stats = mem_stats($sock);
        is($stats->{extstore_objects_written}, 0);
    }

    # fill some larger objects
    {
        # set one canary value for later
        print $sock "set canary 0 0 20000 noreply\r\n$value\r\n";
        my $keycount = 1000;
        for (1 .. $keycount) {
            print $sock "set nfoo$_ 0 0 20000 noreply\r\n$value\r\n";
        }
        # wait for a flush
        wait_for_ext();
        # fetch
        # TODO: Fetch back all values
        mem_get_is($sock, "nfoo1", $value);
        # check extstore counters
        my $stats = mem_stats($sock);
        cmp_ok($stats->{extstore_page_allocs}, '>', 0, 'at least one page allocated');
        cmp_ok($stats->{extstore_objects_written}, '>', $keycount / 2, 'some objects written');
        cmp_ok($stats->{extstore_bytes_written}, '>', length($value) * 2, 'some bytes written');
        cmp_ok($stats->{get_extstore}, '>', 0, 'one object was fetched');
        cmp_ok($stats->{extstore_objects_read}, '>', 0, 'one object read');
        cmp_ok($stats->{extstore_bytes_read}, '>', length($value), 'some bytes read');

        # Remove half of the keys for the next test.
        for (1 .. $keycount) {
            next unless $_ % 2 == 0;
            print $sock "delete nfoo$_ noreply\r\n";
        }

        my $stats2 = mem_stats($sock);
        cmp_ok($stats->{extstore_bytes_used}, '>', $stats2->{extstore_bytes_used},
            'bytes used dropped after deletions');
        cmp_ok($stats->{extstore_objects_used}, '>', $stats2->{extstore_objects_used},
            'objects used dropped after deletions');
        is($stats2->{badcrc_from_extstore}, 0, 'CRC checks successful');
        is($stats2->{miss_from_extstore}, 0, 'no misses');

        # delete the rest
        for (1 .. $keycount) {
            next unless $_ % 2 == 1;
            print $sock "delete nfoo$_ noreply\r\n";
        }
    }
};

subtest 'check item flag survival after write to disk' => sub {
    print $sock "ms itflagtest 20000\r\n$value\r\n";
    is(scalar <$sock>, "HD\r\n", "prepped flag test value");
    print $sock "mg itflagtest\r\n";
    is(scalar <$sock>, "HD\r\n", "fetch once to seed FETCHED");
    print $sock "md itflagtest I\r\n";
    is(scalar <$sock>, "HD\r\n", "invalidated item to set STALE");

    wait_for_ext();

    print $sock "mg itflagtest h\r\n";
    is(scalar <$sock>, "HD h1 X W\r\n", "flags came back as expected");
};

subtest 'compaction and rescues' => sub {
    my $keycount = 2500;

    print $sock "set refcanary 5 0 20000 noreply\r\n$value\r\n";

    # Ensure our canary goes to disk.
    wait_for_ext();
    print $sock "touch refcanary 0 noreply\r\n";
    print $sock "touch refcanary 0 noreply\r\n";
    # Set some extra flags
    print $sock "md refcanary I\r\n";
    is(scalar <$sock>, "HD\r\n", "invalidated item to set STALE");

    # reflock one key to test realloc rescues
    # important: reflock _after_ it goes to disk so we lock the header item.
    print $sock "debugitem ref refcanary\r\n";
    my $res = <$sock>;

    # Need to ensure we catch all compaction log events.
    my $watcher = $server->new_sock;
    print $watcher "watch sysevents\n";
    $res = <$watcher>;
    is($res, "OK\r\n", "watcher enabled");

    for (1 .. $keycount) {
        print $sock "set cfoo$_ 0 0 20000 noreply\r\n$value\r\n";
        # wait to avoid evictions
        wait_for_ext(500) if ($_ % 2000 == 0);
    }
    # because item_age is set to 2s
    wait_for_ext();
    my $stats = mem_stats($sock);
    is($stats->{evictions}, 0, 'no evictions');

    # check counters
    cmp_ok($stats->{extstore_page_evictions}, '==', 0, 'no pages evicted');
    cmp_ok($stats->{extstore_objects_evicted}, '==', 0, 'no objects evicted');
    cmp_ok($stats->{extstore_bytes_evicted}, '==', 0, 'no bytes evicted');
    cmp_ok($stats->{extstore_pages_free}, '<', 2, 'few pages are free');

    for (1 .. $keycount) {
        next unless $_ % 2 == 0;
        print $sock "delete cfoo$_ noreply\r\n";
    }

    my %h = ();
    my $tries = 250;
    while (my $log = <$watcher>) {
        #diag "WATCHER LOG: $log";
        chomp $log;
        if ($log =~ m/type=compact_read_end/) {
            # FIXME: I forget the better method for this.
            my @p = split(/\s+/, $log);
            for (@p) {
                my @hp = split(/=/, $_);
                $h{$hp[0]} = $hp[1];
            }
            if ($h{rescues_realloc} != 0) {
                ok("saw a rescue realloc");
                last;
            }
        }
        if ($tries-- == 0) {
            fail("never saw a rescue realloc");
            last;
        }
    }

    $stats = mem_stats($sock);
    cmp_ok($stats->{extstore_pages_free}, '>', 0, 'some pages now free');
    cmp_ok($stats->{extstore_compact_rescues}, '>', 0, 'some compaction rescues happened');
    cmp_ok($stats->{extstore_compact_skipped}, '==', 0, 'no compaction skips happened');
    print $sock "extstore drop_unread 0\r\n";
    $res = <$sock>;

    # release our leaked item
    print $sock "debugitem unref reffed\r\n";
    $res = <$sock>;
    # Ensure various flag bits and header memory survived.
    print $sock "mg refcanary f h\r\n";
    is(scalar <$sock>, "HD f5 h1 X W\r\n", "reffed item flags came back as expected");

    mem_get_is({ sock => $sock, flags => 5 }, "refcanary", $value);

    # remove all data and wait for extstore to settle.
    print $sock "flush_all\r\n";
    $res = <$sock>;

    watch_compact();
};

subtest 'eviction and compaction' => sub {
    my $keycount = 4000;

    for (1 .. $keycount) {
        print $sock "set mfoo$_ 0 0 20000 noreply\r\n$value\r\n";
        # wait to avoid evictions
        wait_for_ext(500) if ($_ % 2000 == 0);
    }
    # because item_age is set to 2s
    wait_for_ext();
    my $stats = mem_stats($sock);
    is($stats->{evictions}, 0, 'no evictions');
    is($stats->{miss_from_extstore}, 0, 'no misses');
    # FIXME: test is flaky; something can rescue the canary because of a race
    # condition. might need to roundtrip twice or disable compaction?
    #mem_get_is($sock, "canary", undef);

    # check counters
    $stats = mem_stats($sock);
    cmp_ok($stats->{extstore_page_evictions}, '>', 0, 'at least one page evicted');
    cmp_ok($stats->{extstore_objects_evicted}, '>', 0, 'at least one object evicted');
    cmp_ok($stats->{extstore_bytes_evicted}, '>', 0, 'some bytes evicted');
    cmp_ok($stats->{extstore_pages_free}, '<', 2, 'few pages are free');
    #is($stats->{miss_from_extstore}, 1, 'exactly one miss');

    # refresh some keys so rescues happen while drop_unread == 1.
    for (1 .. $keycount / 2) {
        next unless $_ % 2 == 1;
        # Need to be fetched twice in order to bump
        print $sock "touch mfoo$_ 0 noreply\r\n";
        print $sock "touch mfoo$_ 0 noreply\r\n";
    }
    print $sock "extstore drop_unread 1\r\n";
    my $res = <$sock>;
    print $sock "extstore max_frag 0\r\n";
    $res = <$sock>;
    print $sock "extstore compact_under 4\r\n";
    $res = <$sock>;
    print $sock "extstore drop_under 3\r\n";
    $res = <$sock>;
    for (1 .. $keycount) {
        next unless $_ % 2 == 0;
        print $sock "delete mfoo$_ noreply\r\n";
    }

    watch_compact();

    $stats = mem_stats($sock);
    cmp_ok($stats->{extstore_pages_free}, '>', 0, 'some pages now free');
    cmp_ok($stats->{extstore_compact_rescues}, '>', 0, 'some compaction rescues happened');
    cmp_ok($stats->{extstore_compact_skipped}, '>', 0, 'some compaction skips happened');
    print $sock "extstore drop_unread 0\r\n";
    $res = <$sock>;
};

# attempt to incr/decr/append/prepend or chunk objects that were sent to disk.
subtest 'invalid operations' => sub {
    my $keycount = 100;
    for (1 .. $keycount) {
        print $sock "set bfoo$_ 0 0 20000 noreply\r\n$value\r\n";
    }
    wait_for_ext();

    # incr should be blocked.
    print $sock "incr bfoo1 1\r\n";
    is(scalar <$sock>, "CLIENT_ERROR cannot increment or decrement non-numeric value\r\n", 'incr fails');

    # append/prepend *could* work, but it would require pulling the item back in.
    print $sock "append bfoo1 0 0 2\r\nhi\r\n";
    is(scalar <$sock>, "NOT_STORED\r\n", 'append fails');
    print $sock "prepend bfoo1 0 0 2\r\nhi\r\n";
    is(scalar <$sock>, "NOT_STORED\r\n", 'prepend fails');
};

done_testing();

END {
    unlink $ext_path if $ext_path;
}