summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzhangjl <zhangjl@awcloud.com>2015-02-03 18:56:47 +0800
committerLi Ma <skywalker.nick@gmail.com>2015-04-09 13:04:15 +0000
commit671c60d3a5c21169978805ca4ed616941a3aeabf (patch)
tree33c1d07967637c8e2a75cee83b4f7641b4e4edae
parentd9c252088130a1d6d0ae87685fbf7bf07e63e583 (diff)
downloadoslo-messaging-671c60d3a5c21169978805ca4ed616941a3aeabf.tar.gz
Fix the bug redis do not delete the expired keys
When using redis as zmq backend, the keys in redis maybe like follows: "service" "service.host1" "service.host1.host1" "service.host2" "service.host2.host2" "service.host3" "service.host3.host3" If we stopped the service on host1, the key named service.host1 and service.host1.host1 shoule be delete. As the result, the topicexchange message would not sent to host1. But the fact is service.host1 still exsit, and topicexchange message may still sent to host1. To resolve this problem , change the comparison of ttl function from -1 to -2 according to http://redis.io/commands/ttl Change-Id: I5c0af97019fffed6e949eb58d7d60c85f5b08ea1 Closes-Bug:#1417464 (cherry picked from commit 1958f6e549d3769202960f5af93982afea74cd80)
-rw-r--r--oslo_messaging/_drivers/matchmaker_redis.py7
-rw-r--r--oslo_messaging/tests/drivers/test_matchmaker_redis.py8
2 files changed, 14 insertions, 1 deletions
diff --git a/oslo_messaging/_drivers/matchmaker_redis.py b/oslo_messaging/_drivers/matchmaker_redis.py
index 4f6e6f0..290b603 100644
--- a/oslo_messaging/_drivers/matchmaker_redis.py
+++ b/oslo_messaging/_drivers/matchmaker_redis.py
@@ -108,7 +108,12 @@ class MatchMakerRedis(mm_common.HeartbeatMatchMakerBase):
self.register(key, host)
def is_alive(self, topic, host):
- if self.redis.ttl(host) == -1:
+ # After redis 2.8, if the specialized key doesn't exist,
+ # TTL fuction would return -2. If key exists,
+ # but doesn't have expiration associated,
+ # TTL func would return -1. For more information,
+ # please visit http://redis.io/commands/ttl
+ if self.redis.ttl(host) == -2:
self.expire(topic, host)
return False
return True
diff --git a/oslo_messaging/tests/drivers/test_matchmaker_redis.py b/oslo_messaging/tests/drivers/test_matchmaker_redis.py
index 097029d..7760404 100644
--- a/oslo_messaging/tests/drivers/test_matchmaker_redis.py
+++ b/oslo_messaging/tests/drivers/test_matchmaker_redis.py
@@ -87,3 +87,11 @@ class RedisMatchMakerTest(test_utils.BaseTestCase):
self.assertEqual(
sorted(self.matcher.redis.smembers('ack_alive')),
['ack_alive.controller1'])
+
+ def test_is_alive(self):
+ self.assertEqual(
+ self.matcher.is_alive('conductor', 'conductor.controller1'),
+ True)
+ self.assertEqual(
+ self.matcher.is_alive('conductor', 'conductor.controller2'),
+ False)