-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathNatsKVWatcher.cs
425 lines (365 loc) · 15.4 KB
/
NatsKVWatcher.cs
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
using System.Threading.Channels;
using Microsoft.Extensions.Logging;
using NATS.Client.Core;
using NATS.Client.Core.Internal;
using NATS.Client.JetStream;
using NATS.Client.JetStream.Models;
namespace NATS.Client.KeyValueStore.Internal;
internal enum NatsKVWatchCommand
{
Msg,
Ready,
}
internal readonly struct NatsKVWatchCommandMsg<T>
{
public NatsKVWatchCommandMsg()
{
}
public NatsKVWatchCommand Command { get; init; } = default;
public NatsJSMsg<T> Msg { get; init; } = default;
}
internal class NatsKVWatcher<T> : IAsyncDisposable
{
private readonly ILogger _logger;
private readonly bool _debug;
private readonly NatsJSContext _context;
private readonly string _bucket;
private readonly INatsDeserialize<T> _serializer;
private readonly NatsKVWatchOpts _opts;
private readonly NatsSubOpts? _subOpts;
private readonly CancellationToken _cancellationToken;
private readonly string _keyBase;
private readonly string _filter;
private readonly NatsConnection _nats;
private readonly Channel<NatsKVWatchCommandMsg<T>> _commandChannel;
private readonly Channel<NatsKVEntry<T>> _entryChannel;
private readonly Channel<string> _consumerCreateChannel;
private readonly Timer _timer;
private readonly int _hbTimeout;
private readonly Task _consumerCreateTask;
private readonly string _stream;
private readonly Task _commandTask;
private ulong _sequenceStream;
private ulong _sequenceConsumer;
private string _consumer;
private volatile NatsKVWatchSub<T>? _sub;
private INatsJSConsumer? _initialConsumer;
public NatsKVWatcher(
NatsJSContext context,
string bucket,
string key,
INatsDeserialize<T> serializer,
NatsKVWatchOpts opts,
NatsSubOpts? subOpts,
CancellationToken cancellationToken)
{
_logger = context.Connection.Opts.LoggerFactory.CreateLogger<NatsKVWatcher<T>>();
_debug = _logger.IsEnabled(LogLevel.Debug);
_context = context;
_bucket = bucket;
_serializer = serializer;
_opts = opts;
_subOpts = subOpts;
_keyBase = $"$KV.{_bucket}.";
_filter = $"{_keyBase}{key}";
_cancellationToken = cancellationToken;
_nats = context.Connection;
_stream = $"KV_{_bucket}";
_hbTimeout = (int)(opts.IdleHeartbeat * 2).TotalMilliseconds;
_consumer = NewNuid();
_nats.ConnectionDisconnected += OnDisconnected;
_timer = new Timer(
static state =>
{
var self = (NatsKVWatcher<T>)state!;
self.CreateSub("idle-heartbeat-timeout");
if (self._debug)
{
self._logger.LogDebug(
NatsKVLogEvents.IdleTimeout,
"Idle heartbeat timeout after {Timeout}ns",
self._opts.IdleHeartbeat);
}
},
this,
Timeout.Infinite,
Timeout.Infinite);
// Keep the channel size large enough to avoid blocking the connection
// TCP receiver thread in case other operations are in-flight.
_commandChannel = Channel.CreateBounded<NatsKVWatchCommandMsg<T>>(1000);
_entryChannel = Channel.CreateBounded<NatsKVEntry<T>>(1000);
// A single request to create the consumer is enough because we don't want to create a new consumer
// back to back in case the consumer is being recreated due to a timeout and a mismatch in consumer
// sequence for example; creating the consumer once would solve both the issues.
_consumerCreateChannel = Channel.CreateBounded<string>(new BoundedChannelOptions(1)
{
AllowSynchronousContinuations = false,
FullMode = BoundedChannelFullMode.DropOldest,
});
_consumerCreateTask = Task.Run(ConsumerCreateLoop);
_commandTask = Task.Run(CommandLoop);
}
public ChannelReader<NatsKVEntry<T>> Entries => _entryChannel.Reader;
internal INatsJSConsumer InitialConsumer
{
get => _initialConsumer ?? throw new InvalidOperationException("Consumer not initialized");
private set => _initialConsumer = value;
}
internal string Consumer
{
get => Volatile.Read(ref _consumer);
private set => Volatile.Write(ref _consumer, value);
}
public async ValueTask DisposeAsync()
{
_nats.ConnectionDisconnected -= OnDisconnected;
if (_sub != null)
{
await _sub.DisposeAsync();
}
_consumerCreateChannel.Writer.TryComplete();
_commandChannel.Writer.TryComplete();
_entryChannel.Writer.TryComplete();
await _consumerCreateTask;
await _commandTask;
}
internal async ValueTask InitAsync()
{
Consumer = NewNuid();
InitialConsumer = await CreatePushConsumer("init");
}
private ValueTask OnDisconnected(object? sender, NatsEventArgs args)
{
StopHeartbeatTimer();
return default;
}
private async Task CommandLoop()
{
try
{
while (await _commandChannel.Reader.WaitToReadAsync(_cancellationToken))
{
while (_commandChannel.Reader.TryRead(out var command))
{
try
{
var subCommand = command.Command;
if (subCommand == NatsKVWatchCommand.Msg)
{
ResetHeartbeatTimer();
var msg = command.Msg;
var operation = NatsKVOperation.Put;
if (msg.Headers is { } headers)
{
if (headers.TryGetValue("KV-Operation", out var operationValues))
{
if (operationValues.Count != 1)
{
var exception = new NatsKVException("Message metadata is missing");
_entryChannel.Writer.TryComplete(exception);
_logger.LogError(NatsKVLogEvents.Protocol, "Protocol error: unexpected number ({Count}) of KV-Operation headers", operationValues.Count);
return;
}
operation = operationValues[0] switch
{
"DEL" => NatsKVOperation.Del,
"PURGE" => NatsKVOperation.Purge,
_ => operation,
};
}
if (headers is { Code: 100, MessageText: "FlowControl Request" })
{
await msg.ReplyAsync(cancellationToken: _cancellationToken);
continue;
}
}
var subSubject = _sub?.Subject;
if (subSubject == null)
continue;
if (string.Equals(msg.Subject, subSubject))
{
// Control message: e.g. heartbeat
}
else
{
if (msg.Subject.Length <= _keyBase.Length)
{
_logger.LogWarning(NatsKVLogEvents.Protocol, "Protocol error: unexpected message subject {Subject}", msg.Subject);
continue;
}
var key = msg.Subject.Substring(_keyBase.Length);
if (msg.Metadata is { } metadata)
{
if (!metadata.Consumer.Equals(Consumer))
{
// Ignore messages from other consumers
// This might happen if the consumer is recreated
// and the old consumer somehow still receives messages
continue;
}
var sequence = Interlocked.Increment(ref _sequenceConsumer);
if (sequence != metadata.Sequence.Consumer)
{
CreateSub("sequence-mismatch");
_logger.LogWarning(NatsKVLogEvents.RecreateConsumer, "Missed messages, recreating consumer");
continue;
}
if (_opts.IgnoreDeletes && operation is NatsKVOperation.Del or NatsKVOperation.Purge)
{
continue;
}
var delta = metadata.NumPending;
var entry = new NatsKVEntry<T>(_bucket, key)
{
Value = msg.Data,
Revision = metadata.Sequence.Stream,
Operation = operation,
Created = metadata.Timestamp,
Delta = delta,
Error = msg.Error,
};
// Increment the sequence before writing to the channel in case the channel is full
// and the writer is waiting for the reader to read the message. This way the sequence
// will be correctly incremented in case the timeout kicks in and recreated the consumer.
Interlocked.Exchange(ref _sequenceStream, metadata.Sequence.Stream);
await _entryChannel.Writer.WriteAsync(entry, _cancellationToken);
}
else
{
_logger.LogWarning(NatsKVLogEvents.Protocol, "Protocol error: Message metadata is missing");
}
}
}
else if (subCommand == NatsKVWatchCommand.Ready)
{
ResetHeartbeatTimer();
}
else
{
_logger.LogError(NatsKVLogEvents.Internal, "Internal error: unexpected command {Command}", subCommand);
}
}
catch (Exception e)
{
_logger.LogWarning(NatsKVLogEvents.Internal, e, "Command error");
}
}
}
}
catch (OperationCanceledException)
{
}
catch (Exception e)
{
_logger.LogError(NatsKVLogEvents.Internal, e, "Unexpected command loop error");
}
}
private async Task ConsumerCreateLoop()
{
try
{
while (await _consumerCreateChannel.Reader.WaitToReadAsync(_cancellationToken))
{
while (_consumerCreateChannel.Reader.TryRead(out var origin))
{
try
{
await CreatePushConsumer(origin);
}
catch (Exception e)
{
_logger.LogWarning(NatsKVLogEvents.NewConsumer, e, "Consumer create error");
}
}
}
}
catch (OperationCanceledException)
{
}
catch (Exception e)
{
_logger.LogError(NatsKVLogEvents.Internal, e, "Unexpected consumer create loop error");
}
}
private async ValueTask<INatsJSConsumer> CreatePushConsumer(string origin)
{
if (_debug)
{
_logger.LogDebug(NatsKVLogEvents.NewConsumer, "Creating new consumer {Consumer} from {Origin}", Consumer, origin);
}
if (_sub != null)
{
if (_debug)
{
_logger.LogDebug(NatsKVLogEvents.DeleteOldDeliverySubject, "Deleting old delivery subject {Subject}", _sub.Subject);
}
await _sub.UnsubscribeAsync();
await _sub.DisposeAsync();
}
_sub = new NatsKVWatchSub<T>(_context, _commandChannel, _serializer, _subOpts, _cancellationToken);
await _context.Connection.SubAsync(_sub, _cancellationToken).ConfigureAwait(false);
if (_debug)
{
_logger.LogDebug(NatsKVLogEvents.NewDeliverySubject, "New delivery subject {Subject}", _sub.Subject);
}
Interlocked.Exchange(ref _sequenceConsumer, 0);
var sequence = Volatile.Read(ref _sequenceStream);
var config = new ConsumerConfig
{
Name = Consumer,
DeliverPolicy = ConsumerConfigDeliverPolicy.All,
AckPolicy = ConsumerConfigAckPolicy.None,
DeliverSubject = _sub.Subject,
FilterSubject = _filter,
FlowControl = true,
IdleHeartbeat = _opts.IdleHeartbeat,
AckWait = TimeSpan.FromHours(22),
MaxDeliver = 1,
MemStorage = true,
NumReplicas = 1,
ReplayPolicy = ConsumerConfigReplayPolicy.Instant,
};
if (!_opts.IncludeHistory)
{
config.DeliverPolicy = ConsumerConfigDeliverPolicy.LastPerSubject;
}
if (_opts.UpdatesOnly)
{
config.DeliverPolicy = ConsumerConfigDeliverPolicy.New;
}
if (_opts.MetaOnly)
{
config.HeadersOnly = true;
}
if (sequence > 0)
{
config.DeliverPolicy = ConsumerConfigDeliverPolicy.ByStartSequence;
config.OptStartSeq = sequence + 1;
}
var consumer = await _context.CreateOrUpdateConsumerAsync(
_stream,
config,
cancellationToken: _cancellationToken);
if (_debug)
{
_logger.LogDebug(NatsKVLogEvents.NewConsumerCreated, "Created new consumer {Consumer} from {Origin}", Consumer, origin);
}
return consumer;
}
private string NewNuid()
{
Span<char> buffer = stackalloc char[22];
if (NuidWriter.TryWriteNuid(buffer))
{
return new string(buffer);
}
throw new InvalidOperationException("Internal error: can't generate nuid");
}
private void ResetHeartbeatTimer() => _timer.Change(_hbTimeout, Timeout.Infinite);
private void StopHeartbeatTimer() => _timer.Change(Timeout.Infinite, Timeout.Infinite);
private void CreateSub(string origin)
{
Consumer = NewNuid();
_consumerCreateChannel.Writer.TryWrite(origin);
}
}