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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
|
#include <ydb/core/base/tablet_pipe.h>
#include <ydb/core/base/tabletid.h>
#include <library/cpp/actors/core/actor_bootstrapped.h>
#include <library/cpp/actors/core/hfunc.h>
#include <library/cpp/actors/core/interconnect.h>
#include <library/cpp/actors/core/log.h>
#include <ydb/core/protos/services.pb.h>
#include <ydb/core/base/tablet_resolver.h>
#include <ydb/core/base/hive.h>
#include <ydb/core/base/appdata.h>
#include <library/cpp/actors/util/queue_oneone_inplace.h>
#if defined BLOG_D || defined BLOG_I || defined BLOG_ERROR
#error log macro definition clash
#endif
#define BLOG_D(stream) LOG_DEBUG_S(ctx, NKikimrServices::PIPE_CLIENT, "TClient[" << TabletId << "] " << stream << " " << ctx.SelfID)
#define BLOG_I(stream) LOG_INFO_S(ctx, NKikimrServices::PIPE_CLIENT, "TClient[" << TabletId << "] " << stream << " " << ctx.SelfID)
#define BLOG_ERROR(stream) LOG_ERROR_S(ctx, NKikimrServices::PIPE_CLIENT, "TClient[" << TabletId << "] " << stream << " " << ctx.SelfID)
#define BLOG_TRACE(stream) LOG_TRACE_S(ctx, NKikimrServices::PIPE_CLIENT, "TClient[" << TabletId << "] " << stream << " " << ctx.SelfID)
namespace NKikimr {
namespace NTabletPipe {
class TClient : public TActorBootstrapped<TClient> {
public:
static constexpr NKikimrServices::TActivity::EType ActorActivityType() {
return NKikimrServices::TActivity::TABLET_PIPE_CLIENT;
}
TClient(const TActorId& owner, ui64 tabletId, const TClientConfig& config)
: Owner(owner)
, TabletId(tabletId)
, Config(config)
, IsShutdown(false)
, PayloadQueue(new TPayloadQueue())
, Leader(true)
{
Y_VERIFY(tabletId != 0);
}
void Bootstrap(const TActorContext& ctx) {
BLOG_D("::Bootstrap");
Lookup(ctx);
}
private:
void StateLookup(STFUNC_SIG) {
switch (ev->GetTypeRewrite()) {
FFunc(TEvTabletPipe::EvSend, HandleSendQueued);
FFunc(TEvTabletPipe::EvMessage, HandleSendQueued);
HFunc(TEvTabletPipe::TEvShutdown, HandleConnect);
HFunc(TEvents::TEvPoisonPill, HandleConnect);
HFunc(TEvTabletResolver::TEvForwardResult, HandleLookup);
HFunc(TEvInterconnect::TEvNodeDisconnected, HandleRelaxed);
HFunc(TEvTabletPipe::TEvConnectResult, HandleOutdated);
}
}
void StateConnectNode(STFUNC_SIG) {
switch (ev->GetTypeRewrite()) {
FFunc(TEvTabletPipe::EvSend, HandleSendQueued);
FFunc(TEvTabletPipe::EvMessage, HandleSendQueued);
HFunc(TEvTabletPipe::TEvShutdown, HandleConnect);
HFunc(TEvents::TEvPoisonPill, HandleConnect);
HFunc(TEvInterconnect::TEvNodeConnected, HandleConnectNode);
HFunc(TEvInterconnect::TEvNodeDisconnected, HandleConnect);
HFunc(TEvTabletPipe::TEvConnectResult, HandleOutdated);
}
}
void StateConnect(STFUNC_SIG) {
switch (ev->GetTypeRewrite()) {
FFunc(TEvTabletPipe::EvSend, HandleSendQueued);
FFunc(TEvTabletPipe::EvMessage, HandleSendQueued);
HFunc(TEvTabletPipe::TEvShutdown, HandleConnect);
HFunc(TEvents::TEvPoisonPill, HandleConnect);
HFunc(TEvents::TEvUndelivered, HandleConnect);
HFunc(TEvTabletPipe::TEvPeerClosed, HandleConnect);
HFunc(TEvTabletPipe::TEvConnectResult, HandleConnect);
HFunc(TEvInterconnect::TEvNodeDisconnected, HandleConnect);
}
}
void StateWait(STFUNC_SIG) {
switch (ev->GetTypeRewrite()) {
FFunc(TEvTabletPipe::EvSend, HandleSendQueued);
FFunc(TEvTabletPipe::EvMessage, HandleSendQueued);
HFunc(TEvTabletPipe::TEvShutdown, HandleConnect);
HFunc(TEvents::TEvPoisonPill, HandleConnect);
HFunc(TEvTabletPipe::TEvClientRetry, HandleWait);
HFunc(TEvInterconnect::TEvNodeDisconnected, HandleRelaxed);
HFunc(TEvTabletPipe::TEvConnectResult, HandleOutdated);
}
}
void StateCheckDead(STFUNC_SIG) {
switch (ev->GetTypeRewrite()) {
HFunc(TEvents::TEvPoisonPill, Handle);
HFunc(TEvTabletPipe::TEvClientCheckDelay, Handle);
HFunc(TEvTabletPipe::TEvClientConnected, Handle);
HFunc(TEvTabletPipe::TEvClientDestroyed, Handle);
HFunc(TEvHive::TEvResponseHiveInfo, Handle);
HFunc(TEvInterconnect::TEvNodeDisconnected, HandleRelaxed);
HFunc(TEvTabletPipe::TEvConnectResult, HandleOutdated);
// ignore everything else
}
}
void StateWork(STFUNC_SIG) {
switch (ev->GetTypeRewrite()) {
FFunc(TEvTabletPipe::EvSend, HandleSend);
FFunc(TEvTabletPipe::EvMessage, HandleSend);
HFunc(TEvTabletPipe::TEvShutdown, Handle);
HFunc(TEvents::TEvPoisonPill, Handle);
HFunc(TEvents::TEvUndelivered, Handle);
HFunc(TEvTabletPipe::TEvPeerClosed, Handle);
HFunc(TEvTabletPipe::TEvPeerShutdown, Handle);
HFunc(TEvInterconnect::TEvNodeDisconnected, Handle);
HFunc(TEvTabletPipe::TEvConnectResult, HandleOutdated);
}
}
bool IsLocalNode(const TActorContext& ctx) const {
auto leader = GetTabletLeader();
return leader.NodeId() == 0 || ctx.ExecutorThread.ActorSystem->NodeId == leader.NodeId();
}
TActorId GetTabletLeader() const {
return Config.ConnectToUserTablet ? LastKnownLeaderTablet : LastKnownLeader;
}
void HandleSendQueued(TAutoPtr<IEventHandle>& ev, const TActorContext& ctx) {
BLOG_D("queue send");
Y_VERIFY(!IsShutdown);
PayloadQueue->Push(ev.Release());
}
void HandleSend(TAutoPtr<IEventHandle>& ev, const TActorContext& ctx) {
BLOG_D("send");
Y_VERIFY(!IsShutdown);
Push(ctx, ev);
}
ui32 GenerateConnectFeatures() const {
ui32 features = 0;
if (Config.ExpectShutdown) {
features |= NKikimrTabletPipe::FEATURE_GRACEFUL_SHUTDOWN;
}
return features;
}
void HandleLookup(TEvTabletResolver::TEvForwardResult::TPtr& ev, const TActorContext &ctx) {
Y_VERIFY(ev->Get()->TabletID == TabletId);
if (ev->Get()->Status != NKikimrProto::OK || (Config.ConnectToUserTablet && !ev->Get()->TabletActor)) {
BLOG_D("forward result error, check reconnect");
return TryToReconnect(ctx);
}
LastKnownLeaderTablet = ev->Get()->TabletActor;
LastKnownLeader = ev->Get()->Tablet;
LastCacheEpoch = ev->Get()->CacheEpoch;
if (IsLocalNode(ctx)) {
BLOG_D("forward result local node, try to connect");
UnsubscribeNetworkSession(ctx);
Connect(ctx);
} else {
const ui32 nodeId = GetTabletLeader().NodeId();
BLOG_D("forward result remote node " << nodeId);
if (InterconnectNodeId == nodeId) {
// Already connected to correct remote node
Y_VERIFY(InterconnectSessionId);
Connect(ctx);
} else {
// Connect to a new remote node
ConnectNode(nodeId, ctx);
}
}
}
void ConnectNode(ui32 nodeId, const TActorContext &ctx) {
UnsubscribeNetworkSession(ctx);
TActorId proxy = TActivationContext::InterconnectProxy(nodeId);
if (!proxy) {
BLOG_ERROR("remote node on broken proxy");
return NotifyConnectFail(ctx);
}
InterconnectNodeId = nodeId;
InterconnectProxyId = proxy;
ctx.Send(proxy, new TEvInterconnect::TEvConnectNode(), 0, ++InterconnectCookie);
Become(&TThis::StateConnectNode);
}
void HandleConnectNode(TEvInterconnect::TEvNodeConnected::TPtr& ev, const TActorContext &ctx) {
if (ev->Cookie != InterconnectCookie) {
BLOG_D("ignored outdated TEvNodeConnected");
return;
}
BLOG_D("remote node connected");
Y_VERIFY(!InterconnectSessionId);
InterconnectSessionId = ev->Sender;
Connect(ctx);
}
void HandleRelaxed(TEvInterconnect::TEvNodeDisconnected::TPtr& ev, const TActorContext &ctx) {
if (ev->Cookie != InterconnectCookie) {
BLOG_D("ignored outdated TEvNodeDisconnected");
return;
}
BLOG_D("remote node disonnected while connecting, check retry");
if (InterconnectSessionId) {
Y_VERIFY(ev->Sender == InterconnectSessionId);
}
NotifyNodeProblem(ctx);
ForgetNetworkSession();
}
void HandleConnect(TEvInterconnect::TEvNodeDisconnected::TPtr& ev, const TActorContext &ctx) {
if (ev->Cookie != InterconnectCookie) {
BLOG_D("ignored outdated TEvNodeDisconnected");
return;
}
BLOG_D("remote node disonnected while connecting, check retry");
if (InterconnectSessionId) {
Y_VERIFY(ev->Sender == InterconnectSessionId);
}
NotifyNodeProblem(ctx);
ForgetNetworkSession();
TryToReconnect(ctx);
}
void Handle(TEvInterconnect::TEvNodeDisconnected::TPtr& ev, const TActorContext &ctx) {
if (ev->Cookie != InterconnectCookie) {
BLOG_D("ignored outdated TEvNodeDisconnected");
return;
}
BLOG_D("remote node disconnected while working, drop pipe");
NotifyNodeProblem(ctx);
ForgetNetworkSession();
NotifyDisconnect(ctx);
}
void Connect(const TActorContext &ctx) {
SendEvent(new IEventHandle(GetTabletLeader(), ctx.SelfID, new TEvTabletPipe::TEvConnect(TabletId, ctx.SelfID, GenerateConnectFeatures()),
IEventHandle::FlagTrackDelivery, ++ConnectCookie), ctx);
Become(&TThis::StateConnect);
}
void HandleConnect(TEvTabletPipe::TEvPeerClosed::TPtr& ev, const TActorContext &ctx) {
if (ev->InterconnectSession != InterconnectSessionId) {
// Ingnore TEvPeerClosed from an unexpected interconnect session
BLOG_D("ignore outdated peer closed from " << ev->Sender);
return;
}
BLOG_D("peer closed while connecting, check reconnect");
return TryToReconnect(ctx);
}
void HandleConnect(TEvTabletPipe::TEvConnectResult::TPtr& ev, const TActorContext &ctx) {
if (ev->InterconnectSession != InterconnectSessionId || ev->Cookie != 0 && ev->Cookie != ConnectCookie) {
// Ignore TEvConnectResult from an unexpected interconnect session or retry attempt
BLOG_D("ignored outdated connection result from " << ev->Sender);
ctx.Send(ev->Sender, new TEvTabletPipe::TEvPeerClosed(TabletId, ctx.SelfID, ev->Sender));
return;
}
const auto &record = ev->Get()->Record;
Y_VERIFY(record.GetTabletId() == TabletId);
ServerId = ActorIdFromProto(record.GetServerId());
Leader = record.GetLeader();
Y_VERIFY(!ServerId || record.GetStatus() == NKikimrProto::OK);
BLOG_D("connected with status " << record.GetStatus() << " role: " << (Leader ? "Leader" : "Follower"));
if (!ServerId) {
return TryToReconnect(ctx);
}
Become(&TThis::StateWork);
BLOG_D("send queued");
while (TAutoPtr<IEventHandle> x = PayloadQueue->Pop())
Push(ctx, x);
PayloadQueue.Destroy();
ctx.Send(Owner, new TEvTabletPipe::TEvClientConnected(TabletId, NKikimrProto::OK, ctx.SelfID, ServerId, Leader, false));
if (IsShutdown) {
BLOG_D("shutdown pipe due to pending shutdown request");
return NotifyDisconnect(ctx);
}
}
void HandleOutdated(TEvTabletPipe::TEvConnectResult::TPtr& ev, const TActorContext &ctx) {
BLOG_D("ignored outdated connection result from " << ev->Sender);
ctx.Send(ev->Sender, new TEvTabletPipe::TEvPeerClosed(TabletId, ctx.SelfID, ev->Sender));
}
void HandleConnect(TEvents::TEvUndelivered::TPtr& ev, const TActorContext &ctx) {
const auto* msg = ev->Get();
if (msg->SourceType != TEvTabletPipe::TEvConnect::EventType || ev->Cookie != ConnectCookie) {
BLOG_D("ignored unexpected TEvUndelivered of event " << msg->SourceType << " with cookie " << ev->Cookie);
return;
}
BLOG_D("connect request undelivered");
TryToReconnect(ctx);
}
void Handle(TEvents::TEvUndelivered::TPtr& ev, const TActorContext& ctx) {
Y_UNUSED(ev);
BLOG_D("pipe event not delivered, drop pipe");
return NotifyDisconnect(ctx);
}
void Handle(TEvTabletPipe::TEvPeerClosed::TPtr& ev, const TActorContext& ctx) {
if (ev->InterconnectSession != InterconnectSessionId) {
// Ingnore TEvPeerClosed from an unexpected interconnect session
BLOG_D("ignore outdated peer closed from " << ev->Sender);
return;
}
Y_VERIFY(ev->Get()->Record.GetTabletId() == TabletId);
BLOG_D("peer closed");
return NotifyDisconnect(ctx);
}
void Handle(TEvTabletPipe::TEvPeerShutdown::TPtr& ev, const TActorContext& ctx) {
Y_VERIFY(ev->Get()->Record.GetTabletId() == TabletId);
BLOG_D("peer shutdown");
if (Y_LIKELY(Config.ExpectShutdown)) {
ctx.Send(Owner, new TEvTabletPipe::TEvClientShuttingDown(
TabletId, ctx.SelfID, ServerId, ev->Get()->GetMaxForwardedSeqNo()));
}
}
void HandleConnect(TEvents::TEvPoisonPill::TPtr& ev, const TActorContext& ctx) {
BLOG_D("poison pill while connecting");
Y_UNUSED(ev);
if (ServerId)
ctx.Send(ServerId, new TEvTabletPipe::TEvPeerClosed(TabletId, ctx.SelfID, ServerId));
return NotifyConnectFail(ctx);
}
void Handle(TEvents::TEvPoisonPill::TPtr& ev, const TActorContext& ctx) {
Y_UNUSED(ev);
BLOG_D("received poison pill");
ctx.Send(ServerId, new TEvTabletPipe::TEvPeerClosed(TabletId, ctx.SelfID, ServerId));
return NotifyDisconnect(ctx);
}
void Handle(TEvTabletPipe::TEvShutdown::TPtr& ev, const TActorContext& ctx) {
Y_UNUSED(ev);
BLOG_D("received shutdown");
ctx.Send(ServerId, new TEvTabletPipe::TEvPeerClosed(TabletId, SelfId(), ServerId));
return NotifyDisconnect(ctx);
}
void HandleConnect(TEvTabletPipe::TEvShutdown::TPtr& ev, const TActorContext& ctx) {
Y_UNUSED(ev);
BLOG_D("received pending shutdown");
IsShutdown = true;
}
void HandleWait(TEvTabletPipe::TEvClientRetry::TPtr& ev, const TActorContext& ctx) {
Y_UNUSED(ev);
BLOG_D("client retry");
LastKnownLeaderTablet = TActorId();
LastKnownLeader = TActorId();
Lookup(ctx);
}
void RequestHiveInfo(ui64 hiveTabletId) {
static TClientConfig clientConfig({.RetryLimitCount = 3, .MinRetryTime = TDuration::MilliSeconds(300)});
HiveClient = Register(CreateClient(SelfId(), hiveTabletId, clientConfig));
NTabletPipe::SendData(SelfId(), HiveClient, new TEvHive::TEvRequestHiveInfo(TabletId, false));
}
// check aliveness section
void Handle(TEvHive::TEvResponseHiveInfo::TPtr &ev, const TActorContext &ctx) {
const auto &record = ev->Get()->Record;
if (record.HasForwardRequest() && (++CurrentHiveForwards < MAX_HIVE_FORWARDS)) {
BLOG_I("hive request forwarded to " << record.GetForwardRequest().GetHiveTabletId());
CloseClient(ctx, HiveClient);
RequestHiveInfo(record.GetForwardRequest().GetHiveTabletId());
return;
}
bool definitelyDead = false;
if (record.GetTablets().empty()) {
definitelyDead = true; // the tablet wasn't found in Hive
} else {
const auto &info = record.GetTablets(0);
Y_VERIFY(info.GetTabletID() == TabletId);
if (!info.HasState() || info.GetState() == 202/*THive::ETabletState::Deleting*/) {
definitelyDead = true;
}
}
ctx.Send(Owner, new TEvTabletPipe::TEvClientConnected(TabletId, NKikimrProto::ERROR, SelfId(), TActorId(), Leader, definitelyDead));
return Die(ctx);
}
void Handle(TEvTabletPipe::TEvClientCheckDelay::TPtr &ev, const TActorContext &ctx) {
Y_UNUSED(ev);
Y_UNUSED(ctx);
const ui64 hiveUid = HiveUidFromTabletID(TabletId);
const ui64 hiveTabletId = AppData()->DomainsInfo->GetHive(hiveUid);
if (hiveUid == 0)
BLOG_ERROR("trying to check aliveness of hand-made tablet! would definitely fail");
RequestHiveInfo(hiveTabletId);
}
void Handle(TEvTabletPipe::TEvClientConnected::TPtr &ev, const TActorContext &ctx) {
if (HiveClient != ev->Sender)
return;
auto *msg = ev->Get();
if (msg->Status != NKikimrProto::OK) {
ctx.Send(Owner, new TEvTabletPipe::TEvClientConnected(TabletId, NKikimrProto::ERROR, SelfId(), TActorId(), Leader, false));
return Die(ctx);
}
}
void Handle(TEvTabletPipe::TEvClientDestroyed::TPtr &ev, const TActorContext &ctx) {
if (HiveClient != ev->Sender)
return;
ctx.Send(Owner, new TEvTabletPipe::TEvClientConnected(TabletId, NKikimrProto::ERROR, SelfId(), TActorId(), Leader, false));
return Die(ctx);
}
void NotifyConnectFail(const TActorContext &ctx) {
UnsubscribeNetworkSession(ctx);
if (Config.CheckAliveness && !IsReservedTabletId(TabletId)) {
BLOG_D("connect failed, check aliveness");
if (!Config.RetryPolicy)
BLOG_ERROR("check aliveness w/o retry policy, possible perfomance hit");
Become(&TThis::StateCheckDead, RetryState.MakeCheckDelay(), new TEvTabletPipe::TEvClientCheckDelay());
} else {
BLOG_D("connect failed");
ctx.Send(Owner, new TEvTabletPipe::TEvClientConnected(TabletId, NKikimrProto::ERROR, SelfId(), TActorId(), Leader, false));
return Die(ctx);
}
}
void NotifyDisconnect(const TActorContext &ctx) {
BLOG_D("notify reset");
ctx.Send(Owner, new TEvTabletPipe::TEvClientDestroyed(TabletId, ctx.SelfID, ServerId));
return Die(ctx);
}
void NotifyNodeProblem(const TActorContext &ctx) {
ctx.Send(MakeTabletResolverID(), new TEvTabletResolver::TEvNodeProblem(InterconnectNodeId, LastCacheEpoch));
}
void ForgetNetworkSession() {
InterconnectSessionId = { };
InterconnectProxyId = { };
InterconnectNodeId = 0;
++InterconnectCookie;
}
void UnsubscribeNetworkSession(const TActorContext& ctx) {
if (InterconnectNodeId) {
ctx.Send(InterconnectSessionId ? InterconnectSessionId : InterconnectProxyId, new TEvents::TEvUnsubscribe());
ForgetNetworkSession();
}
}
void Lookup(const TActorContext& ctx) {
BLOG_D("lookup");
TEvTabletResolver::TEvForward::TResolveFlags resolveFlags;
resolveFlags.SetAllowFollower(Config.AllowFollower);
resolveFlags.SetForceFollower(Config.ForceFollower);
resolveFlags.SetPreferLocal(Config.PreferLocal);
resolveFlags.SetForceLocal(Config.ForceLocal);
ctx.Send(MakeTabletResolverID(), new TEvTabletResolver::TEvForward(TabletId, nullptr, resolveFlags));
Become(&TThis::StateLookup);
}
void TryToReconnect(const TActorContext& ctx) {
if (LastKnownLeaderTablet)
ctx.Send(MakeTabletResolverID(), new TEvTabletResolver::TEvTabletProblem(TabletId, LastKnownLeaderTablet));
LastKnownLeaderTablet = TActorId();
LastKnownLeader = TActorId();
TDuration waitDuration;
if (Config.RetryPolicy && RetryState.IsAllowedToRetry(waitDuration, Config.RetryPolicy)) {
if (waitDuration == TDuration::Zero()) {
BLOG_D("immediate retry");
Lookup(ctx);
} else {
BLOG_D("schedule retry");
ctx.Schedule(waitDuration, new TEvTabletPipe::TEvClientRetry);
Become(&TThis::StateWait);
}
} else {
return NotifyConnectFail(ctx);
}
}
struct TEventParts {
ui32 Type;
TActorId Sender;
THolder<IEventBase> Event;
TIntrusivePtr<TEventSerializedData> Buffer;
ui64 SeqNo;
explicit TEventParts(TAutoPtr<IEventHandle>& ev) {
switch (ev->GetTypeRewrite()) {
case TEvTabletPipe::EvSend: {
Type = ev->Type;
Sender = ev->Sender;
if (ev->HasEvent()) {
if (ev->HasBuffer()) {
// Grab both the buffer and the event
Buffer = ev->GetChainBuffer();
}
Event.Reset(ev->ReleaseBase().Release());
} else {
Buffer = ev->ReleaseChainBuffer();
}
SeqNo = 0;
break;
}
case TEvTabletPipe::EvMessage: {
auto* msg = ev->Get<TEvTabletPipe::TEvMessage>();
Type = msg->Type;
Sender = msg->Sender;
Event = msg->ReleaseEvent();
Buffer = msg->ReleaseBuffer();
SeqNo = msg->GetSeqNo();
break;
}
default:
Y_UNREACHABLE();
}
}
THolder<TEvTabletPipe::TEvMessage> ToLocalMessage() {
THolder<TEvTabletPipe::TEvMessage> msg;
if (Event) {
msg = MakeHolder<TEvTabletPipe::TEvMessage>(Sender, std::move(Event));
} else {
msg = MakeHolder<TEvTabletPipe::TEvMessage>(Sender, Type, std::move(Buffer));
}
if (SeqNo) {
msg->SetSeqNo(SeqNo);
}
return msg;
}
THolder<TEvTabletPipe::TEvPush> ToRemotePush(ui64 tabletId, ui64 cookie) {
if (!Buffer) {
Y_VERIFY(Event, "Sending an empty event without a buffer");
TAllocChunkSerializer serializer;
Event->SerializeToArcadiaStream(&serializer);
Buffer = serializer.Release(Event->IsExtendedFormat());
}
TString s = Buffer->GetString();
auto msg = MakeHolder<TEvTabletPipe::TEvPush>(
tabletId, Type, Sender, s, cookie, Buffer->IsExtendedFormat());
if (SeqNo) {
msg->SetSeqNo(SeqNo);
}
return msg;
}
};
void Push(const TActorContext& ctx, TAutoPtr<IEventHandle>& ev) {
BLOG_D("push event to server");
if (!InterconnectSessionId) {
switch (ev->GetTypeRewrite()) {
case TEvTabletPipe::EvMessage: {
// Send local self -> server message without conversions
THolder<TEvTabletPipe::TEvMessage> msg(ev->Release<TEvTabletPipe::TEvMessage>().Release());
ctx.ExecutorThread.Send(new IEventHandle(ServerId, ctx.SelfID, msg.Release(),
IEventHandle::FlagTrackDelivery, ev->Cookie));
break;
}
case TEvTabletPipe::EvSend: {
// Repackage event in a self -> sender form with an original type
THolder<IEventHandle> directEv;
if (ev->HasEvent()) {
directEv = MakeHolder<IEventHandle>(ev->Sender, ctx.SelfID, ev->ReleaseBase().Release(),
IEventHandle::FlagTrackDelivery, ev->Cookie);
} else {
directEv = MakeHolder<IEventHandle>(ev->Type, IEventHandle::FlagTrackDelivery,
ev->Sender, ctx.SelfID, ev->ReleaseChainBuffer(), ev->Cookie);
}
// Rewrite into EvSend and send to the server
directEv->Rewrite(TEvTabletPipe::EvSend, ServerId);
ctx.ExecutorThread.Send(directEv.Release());
break;
}
default:
Y_UNREACHABLE();
}
} else {
THolder<TEvTabletPipe::TEvPush> msg = TEventParts(ev).ToRemotePush(TabletId, ev->Cookie);
// Send a remote self -> server message
SendEvent(new IEventHandle(ServerId, ctx.SelfID, msg.Release(),
IEventHandle::FlagTrackDelivery, 0, nullptr
), ctx);
}
}
void SendEvent(IEventHandle* ev, const TActorContext& ctx) {
LOG_DEBUG(ctx, NKikimrServices::PIPE_CLIENT, "TClient[%" PRIu64 "]::SendEvent %s", TabletId,
ctx.SelfID.ToString().c_str());
if (InterconnectSessionId) {
Y_VERIFY(ev->Recipient.NodeId() == InterconnectNodeId,
"Sending event to %s via remote node %" PRIu32, ev->Recipient.ToString().c_str(), InterconnectNodeId);
ev->Rewrite(TEvInterconnect::EvForward, InterconnectSessionId);
} else {
Y_VERIFY(ev->Recipient.NodeId() == ctx.SelfID.NodeId(),
"Sending event to %s via local node %" PRIu32, ev->Recipient.ToString().c_str(), ctx.SelfID.NodeId());
}
ctx.ExecutorThread.Send(ev);
}
void Die(const TActorContext& ctx) override {
if (HiveClient)
CloseClient(ctx, HiveClient);
UnsubscribeNetworkSession(ctx);
IActor::Die(ctx);
}
private:
const TActorId Owner;
const ui64 TabletId;
const TClientConfig Config;
bool IsShutdown;
TActorId LastKnownLeader;
TActorId LastKnownLeaderTablet;
ui64 LastCacheEpoch = 0;
ui32 InterconnectNodeId = 0;
ui64 InterconnectCookie = 0;
ui64 ConnectCookie = 0;
TActorId InterconnectProxyId;
TActorId InterconnectSessionId;
TActorId ServerId;
typedef TOneOneQueueInplace<IEventHandle*, 32> TPayloadQueue;
TAutoPtr<TPayloadQueue, TPayloadQueue::TPtrCleanDestructor> PayloadQueue;
TClientRetryState RetryState;
bool Leader;
TActorId HiveClient;
ui32 CurrentHiveForwards = 0;
static constexpr ui32 MAX_HIVE_FORWARDS = 10;
};
IActor* CreateClient(const TActorId& owner, ui64 tabletId, const TClientConfig& config) {
return new TClient(owner, tabletId, config);
}
void SendData(TActorId self, TActorId clientId, IEventBase *payload, ui64 cookie) {
auto ev = new IEventHandle(clientId, self, payload, 0, cookie);
ev->Rewrite(TEvTabletPipe::EvSend, clientId);
TActivationContext::Send(ev);
}
void SendData(TActorId self, TActorId clientId, THolder<IEventBase>&& payload, ui64 cookie) {
SendData(self, clientId, payload.Release(), cookie);
}
void SendDataWithSeqNo(TActorId self, TActorId clientId, IEventBase *payload, ui64 seqNo, ui64 cookie) {
auto event = MakeHolder<TEvTabletPipe::TEvMessage>(self, THolder<IEventBase>(payload));
event->SetSeqNo(seqNo);
auto ev = MakeHolder<IEventHandle>(clientId, self, event.Release(), 0, cookie);
TActivationContext::Send(ev.Release());
}
void SendData(TActorId self, TActorId clientId, ui32 eventType, TIntrusivePtr<TEventSerializedData> buffer, ui64 cookie) {
auto ev = new IEventHandle(eventType, 0, clientId, self, buffer, cookie);
ev->Rewrite(TEvTabletPipe::EvSend, clientId);
TActivationContext::Send(ev);
}
void SendData(const TActorContext& ctx, const TActorId& clientId, IEventBase* payload, ui64 cookie) {
auto ev = new IEventHandle(clientId, ctx.SelfID, payload, 0, cookie);
ev->Rewrite(TEvTabletPipe::EvSend, clientId);
ctx.ExecutorThread.Send(ev);
}
void SendData(const TActorContext& ctx, const TActorId& clientId, ui32 eventType, TIntrusivePtr<TEventSerializedData> buffer, ui64 cookie) {
auto ev = new IEventHandle(eventType, 0, clientId, ctx.SelfID, buffer, cookie);
ev->Rewrite(TEvTabletPipe::EvSend, clientId);
ctx.ExecutorThread.Send(ev);
}
void ShutdownClient(const TActorContext& ctx, const TActorId& clientId) {
ctx.Send(clientId, new TEvTabletPipe::TEvShutdown);
}
void CloseClient(const TActorContext& ctx, const TActorId& clientId) {
ctx.Send(clientId, new TEvents::TEvPoisonPill);
}
void CloseClient(TActorIdentity self, TActorId clientId) {
self.Send(clientId, new TEvents::TEvPoisonPill());
}
void CloseAndForgetClient(TActorIdentity self, TActorId &clientId) {
if (clientId) {
CloseClient(self, clientId);
clientId = TActorId();
}
}
bool TClientRetryState::IsAllowedToRetry(TDuration& wait, const TClientRetryPolicy& policy) {
if (RetryNumber == 0) {
wait = policy.DoFirstRetryInstantly ? TDuration::Zero() : policy.MinRetryTime;
} else {
const ui64 baseRetryDuration = RetryDuration.GetValue() * policy.BackoffMultiplier;
const ui64 croppedRetryDuration = Min(policy.MaxRetryTime.GetValue(), baseRetryDuration);
const ui64 randomizedRetryDuration = croppedRetryDuration * AppData()->RandomProvider->Uniform(100, 115) / 100;
wait = TDuration::FromValue(randomizedRetryDuration);
wait = Max(policy.MinRetryTime, wait);
}
++RetryNumber;
RetryDuration = wait;
return !policy.RetryLimitCount || RetryNumber <= policy.RetryLimitCount;
}
TDuration TClientRetryState::MakeCheckDelay() {
const ui64 randomizedRetryDuration = RetryDuration.GetValue() * AppData()->RandomProvider->Uniform(100, 133) / 100;
return TDuration::FromValue(randomizedRetryDuration);
}
}
}
|