forked from ServiceStack/ServiceStack.Redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRedisSentinel.cs
More file actions
386 lines (321 loc) · 13.5 KB
/
RedisSentinel.cs
File metadata and controls
386 lines (321 loc) · 13.5 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
//
// 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 ServiceStack;
using ServiceStack.Logging;
namespace ServiceStack.Redis
{
public class RedisSentinel : IRedisSentinel
{
protected static readonly ILog Log = LogManager.GetLogger(typeof(RedisSentinel));
public Func<string[], string[], IRedisClientsManager> RedisManagerFactory { get; set; }
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;
public IRedisClientsManager RedisManager { get; set; }
public Action<IRedisClientsManager> OnFailover { get; set; }
public Action<Exception> OnWorkerError { get; set; }
public Action<string, string> OnSentinelMessageReceived { get; set; }
public Dictionary<string, string> IpAddressMap { get; set; }
public bool ScanForOtherSentinels { get; set; }
private DateTime lastSentinelsRefresh;
public TimeSpan RefreshSentinelHostsAfter { get; set; }
public TimeSpan WaitBetweenSentinelLookups { get; set; }
public TimeSpan MaxWaitBetweenSentinelLookups { get; set; }
public TimeSpan WaitBeforeForcingMasterFailover { get; set; }
public int SentinelWorkerConnectTimeoutMs { get; set; }
public int SentinelWorkerReceiveTimeoutMs { get; set; }
public int SentinelWorkerSendTimeoutMs { get; set; }
public bool ResetWhenSubjectivelyDown { get; set; }
public bool ResetWhenObjectivelyDown { get; set; }
public bool ResetSentinelsWhenObjectivelyDown { 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;
ResetSentinelsWhenObjectivelyDown = true;
SentinelWorkerConnectTimeoutMs = 100;
SentinelWorkerReceiveTimeoutMs = 100;
SentinelWorkerSendTimeoutMs = 100;
WaitBetweenSentinelLookups = TimeSpan.FromMilliseconds(250);
MaxWaitBetweenSentinelLookups = 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 ApplicationException("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
{
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);
}
}
}
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();
}
}
public Func<string, string> HostFilter { get; set; }
internal string[] ConfigureHosts(IEnumerable<string> hosts)
{
if (hosts == null)
return new string[0];
return HostFilter == null
? hosts.ToArray()
: hosts.Map(HostFilter).ToArray();
}
public SentinelInfo ResetClients()
{
var sentinelInfo = GetSentinelInfo();
if (RedisManager == null)
{
Log.Info("Configuring initial Redis Clients: {0}".Fmt(sentinelInfo));
RedisManager = CreateRedisManager(sentinelInfo);
}
else
{
Log.Info("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();
return this.worker;
}
catch (RedisException ex)
{
if (OnWorkerError != null)
OnWorkerError(ex);
lastEx = ex;
this.failures++;
Interlocked.Increment(ref RedisState.TotalFailedSentinelWorkers);
}
}
this.failures = 0; //reset
Thread.Sleep(WaitBetweenSentinelLookups);
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 string ForceMasterFailover()
{
var sentinelWorker = GetValidSentinelWorker();
lock (sentinelWorker)
{
return 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() : new string[0];
RedisSlaves = redisSlaves != null ? redisSlaves.ToArray() : new string[0];
}
public override string ToString()
{
return "{0} masters: {1}, slaves: {2}".Fmt(
MasterName,
string.Join(", ", RedisMasters),
string.Join(", ", RedisSlaves));
}
}