Skip to content

Commit

Permalink
Redis: Initial support for Redis Sentinel
Browse files Browse the repository at this point in the history
This adds basic support for using Redis Sentinel to mediate connections
to the primary Redis server used by the API functionality.

Setting `REDIS_SENTINEL_HOSTS` to a dict of "'host': port" key/values
will override any settings for `REDIS_DB_HOST` and `REDIS_DB_PORT` with
values provided by Sentinel.

Fixes #132
  • Loading branch information
sagepe authored and dracos committed May 13, 2022
1 parent 7b436b9 commit c07bbc2
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 6 deletions.
6 changes: 6 additions & 0 deletions api_keys/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,15 @@ def setUp(self):
mock_strict_redis_client
)
self.redis_patcher.start()
self.sentinel_patcher = patch(
'api_keys.utils.Sentinel',
**{'return_value.master_for.return_value':mock_strict_redis_client()}
)
self.sentinel_patcher.start()

def tearDown(self):
self.redis_patcher.stop()
self.sentinel_patcher.stop()


class SignalsTest(PatchedRedisTestCase):
Expand Down
28 changes: 22 additions & 6 deletions api_keys/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import redis
from redis.sentinel import Sentinel

from django.conf import settings

Expand All @@ -9,12 +10,27 @@
def redis_connection():
global _connection
if _connection is None:
_connection = redis.StrictRedis(
host=settings.REDIS_DB_HOST,
port=settings.REDIS_DB_PORT,
db=settings.REDIS_DB_NUMBER,
password=settings.REDIS_DB_PASSWORD
)
if settings.REDIS_SENTINEL_HOSTS is not None:
# If we have listed any sentinels, use those to manage the connection.
# REDIS_SENTINEL_HOSTS will be a dict, but this needs an array of tuples [('host', port)]
sentinel = Sentinel(
[(host, port) for host, port in settings.REDIS_SENTINEL_HOSTS.items()],
socket_timeout=0.1
)
_connection = sentinel.master_for(
settings.REDIS_SENTINEL_SET,
socket_timeout=0.1,
db=settings.REDIS_DB_NUMBER,
password=settings.REDIS_DB_PASSWORD
)
else:
# Otherwise fall back to a regular connection
_connection = redis.StrictRedis(
host=settings.REDIS_DB_HOST,
port=settings.REDIS_DB_PORT,
db=settings.REDIS_DB_NUMBER,
password=settings.REDIS_DB_PASSWORD
)
return _connection


Expand Down
14 changes: 14 additions & 0 deletions conf/general.yml-example
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,24 @@ MAPIT_DB_PORT: '5432'
MAPIT_DB_RO_HOST: 'replica'
MAPIT_DB_RO_PORT: '5433'

# Connection details for Redis.
# Note that REDIS_DB_HOST and REDIS_DB_PORT will be ignored
# if REDIS_SENTINEL_HOSTS is set as the connection to the
# Redis primary will be mediated by Sentinel.
# REDIS_DB_NUMBER and REDIS_DB_PASSWORD will be used in either
# case when making the connection to the primary.
REDIS_DB_HOST: 'localhost'
REDIS_DB_PORT: 6379
REDIS_DB_NUMBER: 0
REDIS_DB_PASSWORD: null
# REDIS_SENTINEL_HOSTS should be a dict of "'host': port" pairs.
# If you don't want to use Sentinel, set it to null.
REDIS_SENTINEL_HOSTS:
'localhost': 26379
# Note that this will not be used unless REDIS_SENTINEL_HOSTS is set.
# It refers to the set of Redis hosts Sentinel should return connection
# details for.
REDIS_SENTINEL_SET: data

# Country is currently one of GB, NO, or KE. Optional; country specific things won't happen if not set.
COUNTRY: 'GB'
Expand Down
2 changes: 2 additions & 0 deletions mapit_mysociety_org/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ def allow_migrate(self, db, app_label, model_name=None, **hints):
REDIS_DB_PORT = config.get('REDIS_DB_PORT')
REDIS_DB_NUMBER = config.get('REDIS_DB_NUMBER')
REDIS_DB_PASSWORD = config.get('REDIS_DB_PASSWORD')
REDIS_SENTINEL_HOSTS = config.get('REDIS_SENTINEL_HOSTS', None)
REDIS_SENTINEL_SET = config.get('REDIS_SENTINEL_SET')

EMAIL_BACKEND = "mailer.backend.DbBackend"
# Configurable email port, to make it easier to develop email sending
Expand Down

0 comments on commit c07bbc2

Please sign in to comment.