This repository was archived by the owner on Dec 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 861
Expand file tree
/
Copy pathRedisSentinel.cs
More file actions
459 lines (381 loc) · 16.1 KB
/
RedisSentinel.cs
File metadata and controls
459 lines (381 loc) · 16.1 KB
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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
//
// Redis Sentinel will connect to a Redis Sentinel Instance and create an IRedisClientsManager based off of the first sentinel that returns data
//
// Upon failure of a sentinel, other sentinels will be attempted to be connected to
// Upon a s_down event, the RedisClientsManager will be failed over to the new set of slaves/masters
//
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using ServiceStack;
using ServiceStack.Logging;
using ServiceStack.Text;
namespace ServiceStack.Redis
{
public class RedisSentinel : IRedisSentinel
{
protected static readonly ILog Log = LogManager.GetLogger(typeof(RedisSentinel));
public static string DefaultMasterName = "mymaster";
public static string DefaultAddress = "127.0.0.1:26379";
private object oLock = new object();
private bool isDisposed = false;
private readonly string masterName;
public string MasterName
{
get { return masterName; }
}
private int failures = 0;
private int sentinelIndex = -1;
public List<string> SentinelHosts { get; private set; }
internal RedisEndpoint[] SentinelEndpoints { get; private set; }
private RedisSentinelWorker worker;
private static int MaxFailures = 5;
/// <summary>
/// Change to use a different IRedisClientsManager
/// </summary>
public Func<string[], string[], IRedisClientsManager> RedisManagerFactory { get; set; }
/// <summary>
/// Configure the Redis Connection String to use for a Redis Client Host
/// </summary>
public Func<string, string> HostFilter { get; set; }
/// <summary>
/// The configured Redis Client Manager this Sentinel managers
/// </summary>
public IRedisClientsManager RedisManager { get; set; }
/// <summary>
/// Fired when Sentinel fails over the Redis Client Manager to a new master
/// </summary>
public Action<IRedisClientsManager> OnFailover { get; set; }
/// <summary>
/// Fired when the Redis Sentinel Worker connection fails
/// </summary>
public Action<Exception> OnWorkerError { get; set; }
/// <summary>
/// Fired when the Sentinel worker receives a message from the Sentinel Subscription
/// </summary>
public Action<string, string> OnSentinelMessageReceived { get; set; }
/// <summary>
/// Map the internal IP's returned by Sentinels to its external IP
/// </summary>
public Dictionary<string, string> IpAddressMap { get; set; }
/// <summary>
/// Whether to routinely scan for other sentinel hosts (default true)
/// </summary>
public bool ScanForOtherSentinels { get; set; }
/// <summary>
/// What interval to scan for other sentinel hosts (default 10 mins)
/// </summary>
public TimeSpan RefreshSentinelHostsAfter { get; set; }
private DateTime lastSentinelsRefresh;
/// <summary>
/// How long to wait after failing before connecting to next redis instance (default 250ms)
/// </summary>
public TimeSpan WaitBetweenFailedHosts { get; set; }
/// <summary>
/// How long to retry connecting to hosts before throwing (default 60 secs)
/// </summary>
public TimeSpan MaxWaitBetweenFailedHosts { get; set; }
/// <summary>
/// How long to wait after consecutive failed connection attempts to master before forcing
/// a Sentinel to failover the current master (default 60 secs)
/// </summary>
public TimeSpan WaitBeforeForcingMasterFailover { get; set; }
/// <summary>
/// The Max Connection time for Sentinel Worker (default 100ms)
/// </summary>
public int SentinelWorkerConnectTimeoutMs { get; set; }
/// <summary>
/// The Max TCP Socket Receive time for Sentinel Worker (default 100ms)
/// </summary>
public int SentinelWorkerReceiveTimeoutMs { get; set; }
/// <summary>
/// The Max TCP Socket Send time for Sentinel Worker (default 100ms)
/// </summary>
public int SentinelWorkerSendTimeoutMs { get; set; }
/// <summary>
/// Reset client connections when Sentinel reports redis instance is subjectively down (default true)
/// </summary>
public bool ResetWhenSubjectivelyDown { get; set; }
/// <summary>
/// Reset client connections when Sentinel reports redis instance is objectively down (default true)
/// </summary>
public bool ResetWhenObjectivelyDown { get; set; }
public RedisSentinel(string sentinelHost = null, string masterName = null)
: this(new[] { sentinelHost ?? DefaultAddress }, masterName ?? DefaultMasterName) { }
public RedisSentinel(IEnumerable<string> sentinelHosts, string masterName = null)
{
this.SentinelHosts = sentinelHosts != null
? sentinelHosts.ToList()
: null;
if (SentinelHosts == null || SentinelHosts.Count == 0)
throw new ArgumentException("sentinels must have at least one entry");
this.masterName = masterName ?? DefaultMasterName;
IpAddressMap = new Dictionary<string, string>();
RedisManagerFactory = (masters, slaves) => new PooledRedisClientManager(masters, slaves);
ScanForOtherSentinels = true;
RefreshSentinelHostsAfter = TimeSpan.FromMinutes(10);
ResetWhenObjectivelyDown = true;
ResetWhenSubjectivelyDown = true;
SentinelWorkerConnectTimeoutMs = 100;
SentinelWorkerReceiveTimeoutMs = 100;
SentinelWorkerSendTimeoutMs = 100;
WaitBetweenFailedHosts = TimeSpan.FromMilliseconds(250);
MaxWaitBetweenFailedHosts = TimeSpan.FromSeconds(60);
WaitBeforeForcingMasterFailover = TimeSpan.FromSeconds(60);
}
/// <summary>
/// Initialize Sentinel Subscription and Configure Redis ClientsManager
/// </summary>
public IRedisClientsManager Start()
{
lock (oLock)
{
for (int i = 0; i < SentinelHosts.Count; i++)
{
var parts = SentinelHosts[i].SplitOnLast(':');
if (parts.Length == 1)
{
SentinelHosts[i] = parts[0] + ":{0}".Fmt(RedisConfig.DefaultPortSentinel);
}
}
if (ScanForOtherSentinels)
RefreshActiveSentinels();
SentinelEndpoints = SentinelHosts
.Map(x => x.ToRedisEndpoint(defaultPort: RedisConfig.DefaultPortSentinel))
.ToArray();
var sentinelWorker = GetValidSentinelWorker();
if (this.RedisManager == null || sentinelWorker == null)
throw new Exception("Unable to resolve sentinels!");
return this.RedisManager;
}
}
public List<string> GetActiveSentinelHosts(IEnumerable<string> sentinelHosts)
{
var activeSentinelHosts = new List<string>();
foreach (var sentinelHost in sentinelHosts.ToArray())
{
try
{
if (Log.IsDebugEnabled)
Log.Debug("Connecting to all available Sentinels to discover Active Sentinel Hosts...");
var endpoint = sentinelHost.ToRedisEndpoint(defaultPort: RedisConfig.DefaultPortSentinel);
using (var sentinelWorker = new RedisSentinelWorker(this, endpoint))
{
var activeHosts = sentinelWorker.GetSentinelHosts(MasterName);
if (!activeSentinelHosts.Contains(sentinelHost))
activeSentinelHosts.Add(sentinelHost);
foreach (var activeHost in activeHosts)
{
if (!activeSentinelHosts.Contains(activeHost))
activeSentinelHosts.Add(activeHost);
}
}
if (Log.IsDebugEnabled)
Log.Debug("All active Sentinels Found: " + string.Join(", ", activeSentinelHosts));
}
catch (Exception ex)
{
Log.Error("Could not get active Sentinels from: {0}".Fmt(sentinelHost), ex);
}
}
return activeSentinelHosts;
}
public void RefreshActiveSentinels()
{
var activeHosts = GetActiveSentinelHosts(SentinelHosts);
if (activeHosts.Count == 0) return;
lock (SentinelHosts)
{
lastSentinelsRefresh = DateTime.UtcNow;
activeHosts.Each(x =>
{
if (!SentinelHosts.Contains(x))
SentinelHosts.Add(x);
});
SentinelEndpoints = SentinelHosts
.Map(x => x.ToRedisEndpoint(defaultPort: RedisConfig.DefaultPortSentinel))
.ToArray();
}
}
internal string[] ConfigureHosts(IEnumerable<string> hosts)
{
if (hosts == null)
return TypeConstants.EmptyStringArray;
return HostFilter == null
? hosts.ToArray()
: hosts.Map(HostFilter).ToArray();
}
public SentinelInfo ResetClients()
{
var sentinelInfo = GetSentinelInfo();
if (RedisManager == null)
{
if (Log.IsDebugEnabled)
Log.Debug("Configuring initial Redis Clients: {0}".Fmt(sentinelInfo));
RedisManager = CreateRedisManager(sentinelInfo);
}
else
{
if (Log.IsDebugEnabled)
Log.Debug("Failing over to Redis Clients: {0}".Fmt(sentinelInfo));
((IRedisFailover)RedisManager).FailoverTo(
ConfigureHosts(sentinelInfo.RedisMasters),
ConfigureHosts(sentinelInfo.RedisSlaves));
}
return sentinelInfo;
}
private IRedisClientsManager CreateRedisManager(SentinelInfo sentinelInfo)
{
var masters = ConfigureHosts(sentinelInfo.RedisMasters);
var slaves = ConfigureHosts(sentinelInfo.RedisSlaves);
var redisManager = RedisManagerFactory(masters, slaves);
var hasRedisResolver = (IHasRedisResolver)redisManager;
hasRedisResolver.RedisResolver = new RedisSentinelResolver(this, masters, slaves);
var canFailover = redisManager as IRedisFailover;
if (canFailover != null && this.OnFailover != null)
{
canFailover.OnFailover.Add(this.OnFailover);
}
return redisManager;
}
public IRedisClientsManager GetRedisManager()
{
return RedisManager ?? (RedisManager = CreateRedisManager(GetSentinelInfo()));
}
private RedisSentinelWorker GetValidSentinelWorker()
{
if (isDisposed)
throw new ObjectDisposedException(GetType().Name);
if (this.worker != null)
return this.worker;
RedisException lastEx = null;
while (this.worker == null && ShouldRetry())
{
try
{
this.worker = GetNextSentinel();
GetRedisManager();
this.worker.BeginListeningForConfigurationChanges();
this.failures = 0; //reset
return this.worker;
}
catch (RedisException ex)
{
if (OnWorkerError != null)
OnWorkerError(ex);
lastEx = ex;
this.worker = null;
this.failures++;
Interlocked.Increment(ref RedisState.TotalFailedSentinelWorkers);
}
}
this.failures = 0; //reset
TaskUtils.Sleep(WaitBetweenFailedHosts);
throw new RedisException("No Redis Sentinels were available", lastEx);
}
public RedisEndpoint GetMaster()
{
var sentinelWorker = GetValidSentinelWorker();
lock (sentinelWorker)
{
var host = sentinelWorker.GetMasterHost(masterName);
if (ScanForOtherSentinels && DateTime.UtcNow - lastSentinelsRefresh > RefreshSentinelHostsAfter)
{
RefreshActiveSentinels();
}
return host != null
? (HostFilter != null ? HostFilter(host) : host).ToRedisEndpoint()
: null;
}
}
public List<RedisEndpoint> GetSlaves()
{
var sentinelWorker = GetValidSentinelWorker();
lock (sentinelWorker)
{
var hosts = sentinelWorker.GetSlaveHosts(masterName);
return ConfigureHosts(hosts).Map(x => x.ToRedisEndpoint());
}
}
/// <summary>
/// Check if GetValidSentinel should try the next sentinel server
/// </summary>
/// <returns></returns>
/// <remarks>This will be true if the failures is less than either RedisSentinel.MaxFailures or the # of sentinels, whatever is greater</remarks>
private bool ShouldRetry()
{
return this.failures < Math.Max(MaxFailures, this.SentinelEndpoints.Length);
}
private RedisSentinelWorker GetNextSentinel()
{
lock (oLock)
{
if (this.worker != null)
{
this.worker.Dispose();
this.worker = null;
}
if (++sentinelIndex >= SentinelEndpoints.Length)
sentinelIndex = 0;
var sentinelWorker = new RedisSentinelWorker(this, SentinelEndpoints[sentinelIndex])
{
OnSentinelError = OnSentinelError
};
return sentinelWorker;
}
}
private void OnSentinelError(Exception ex)
{
if (this.worker != null)
{
Log.Error("Error on existing SentinelWorker, reconnecting...");
if (OnWorkerError != null)
OnWorkerError(ex);
this.worker = GetNextSentinel();
this.worker.BeginListeningForConfigurationChanges();
}
}
public void ForceMasterFailover()
{
var sentinelWorker = GetValidSentinelWorker();
lock (sentinelWorker)
{
sentinelWorker.ForceMasterFailover(masterName);
}
}
public SentinelInfo GetSentinelInfo()
{
var sentinelWorker = GetValidSentinelWorker();
lock (sentinelWorker)
{
return sentinelWorker.GetSentinelInfo();
}
}
public void Dispose()
{
this.isDisposed = true;
new IDisposable[] { RedisManager, worker }.Dispose();
}
}
}
public class SentinelInfo
{
public string MasterName { get; set; }
public string[] RedisMasters { get; set; }
public string[] RedisSlaves { get; set; }
public SentinelInfo(string masterName, IEnumerable<string> redisMasters, IEnumerable<string> redisSlaves)
{
MasterName = masterName;
RedisMasters = redisMasters != null ? redisMasters.ToArray() : TypeConstants.EmptyStringArray;
RedisSlaves = redisSlaves != null ? redisSlaves.ToArray() : TypeConstants.EmptyStringArray;
}
public override string ToString()
{
return "{0} masters: {1}, slaves: {2}".Fmt(
MasterName,
string.Join(", ", RedisMasters),
string.Join(", ", RedisSlaves));
}
}