summaryrefslogtreecommitdiff
path: root/t/slabhang.t
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2017-06-15 22:15:57 -0700
committerdormando <dormando@rydia.net>2017-06-23 01:12:53 -0700
commitd67d18791f07cb69a4a4cdcdb904a106dae97750 (patch)
tree36d442c61b2451946246beeab1453a64e77d67f6 /t/slabhang.t
parent5a26aca5ecce67234a4277a7e7caf8aa26cc7fd3 (diff)
downloadmemcached-d67d18791f07cb69a4a4cdcdb904a106dae97750.tar.gz
slab_rebal: delete busy items if stuck
if we loop through a slab too many times without freeing everything, delete items stuck with high refcounts. they should bleed off so long as the connections aren't jammed holding them. should be possible to force rescues in this case as well, but that's more code so will follow up later. Need a big-ish refactor.
Diffstat (limited to 't/slabhang.t')
-rw-r--r--t/slabhang.t77
1 files changed, 77 insertions, 0 deletions
diff --git a/t/slabhang.t b/t/slabhang.t
new file mode 100644
index 0000000..4a4ffd8
--- /dev/null
+++ b/t/slabhang.t
@@ -0,0 +1,77 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+use Test::More;
+
+use FindBin qw($Bin);
+use lib "$Bin/lib";
+use MemcachedTest;
+
+plan skip_all => 'Test is flaky. Needs special hooks.';
+
+plan tests => 74;
+
+# start up a server with 10 maximum connections
+my $server = new_memcached("-m 16 -o modern");
+my $sock = $server->sock;
+my $hangsock = $server->new_sock;
+my $value = "B"x260144;
+my $key = 0;
+
+# disable the normal automover.
+print $sock "slabs automove 0\r\n";
+is(scalar <$sock>, "OK\r\n", "automover disabled");
+
+# These aren't set to expire.
+my $mget = '';
+for ($key = 0; $key < 70; $key++) {
+ $mget .= "key$key ";
+ print $sock "set key$key 0 0 260144\r\n$value\r\n";
+ is(scalar <$sock>, "STORED\r\n", "stored key$key");
+}
+chop $mget;
+
+# Don't intend to read the results, need to fill the socket.
+print $hangsock "get $mget\r\n";
+#sleep 8;
+my $stats = mem_stats($sock, "slabs");
+my $source = 0;
+for my $key (keys %$stats) {
+ if ($key =~ m/^(\d+):total_pages/) {
+ my $sid = $1;
+ if ($stats->{$key} > 10) {
+ $source = $sid;
+ last;
+ }
+ }
+}
+isnt($source, 0, "found the source slab: $source");
+
+my $busy;
+my $tomove = 4;
+my $reassign = "slabs reassign $source 1\r\n";
+while ($tomove) {
+ $busy = 0;
+ print $sock $reassign;
+ my $res = scalar <$sock>;
+ while ($res =~ m/^BUSY/) {
+ if ($hangsock && $busy > 5) {
+ # unjam the pipeline
+ $hangsock->close;
+ }
+ last if ($busy > 10);
+ sleep 1;
+ $busy++;
+ print $sock $reassign;
+ $res = scalar <$sock>;
+ }
+ last if ($busy > 10);
+ $tomove--;
+}
+
+ok($busy <= 10, "didn't time out moving pages");
+
+$stats = mem_stats($sock);
+isnt($stats->{"slab_reassign_busy_deletes"}, "0", "deleted some busy items");