aboutsummaryrefslogtreecommitdiffstats
path: root/ydb/core/testlib/actors/test_runtime.cpp
blob: 51341a76257676542ba8a3023a9e538087f749db (plain) (blame)
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
#include "test_runtime.h"

#include <ydb/core/base/appdata.h>
#include <ydb/core/base/blobstorage.h>
#include <ydb/core/base/counters.h>
#include <ydb/core/mon/sync_http_mon.h>
#include <ydb/core/mon_alloc/profiler.h>
#include <ydb/core/tablet/tablet_impl.h>

#include <ydb/library/actors/core/executor_pool_basic.h>
#include <ydb/library/actors/core/executor_pool_io.h>
#include <ydb/library/actors/interconnect/interconnect_impl.h>


/**** ACHTUNG: Do not make here any new dependecies on kikimr ****/

namespace NActors {

    void TTestActorRuntime::TNodeData::Stop() {
        TNodeDataBase::Stop();
        if (Mon) {
            Mon->Stop();
        }
    }

    TTestActorRuntime::TNodeData::~TNodeData() {
        Stop();
    }

    ui64 TTestActorRuntime::TNodeData::GetLoggerPoolId() const {
        return GetAppData<NKikimr::TAppData>()->IOPoolId;
    }

    void TTestActorRuntime::Initialize() {
        SetScheduledEventFilter(&TTestActorRuntime::DefaultScheduledFilterFunc);
        NodeFactory = MakeHolder<TNodeFactory>();
        InitNodes();
    }

    TTestActorRuntime::TTestActorRuntime(THeSingleSystemEnv d)
        : TPortManager(false)
        , TTestActorRuntimeBase{d}
    {
        /* How it is possible to do initilization without these components? */
        NKikimr::TAppData::RandomProvider = RandomProvider;
        NKikimr::TAppData::TimeProvider = TimeProvider;

        Initialize();
    }

    TTestActorRuntime::TTestActorRuntime(ui32 nodeCount, ui32 dataCenterCount, bool useRealThreads)
        : TPortManager(false)
        , TTestActorRuntimeBase{nodeCount, dataCenterCount, useRealThreads}
    {
        Initialize();
    }

    TTestActorRuntime::TTestActorRuntime(ui32 nodeCount, ui32 dataCenterCount)
        : TPortManager(false)
        , TTestActorRuntimeBase{nodeCount, dataCenterCount}
    {
        Initialize();
    }

    TTestActorRuntime::TTestActorRuntime(ui32 nodeCount, bool useRealThreads)
        : TPortManager(false)
        , TTestActorRuntimeBase{nodeCount, useRealThreads}
    {
        Initialize();
    }

    TTestActorRuntime::~TTestActorRuntime() {
        if (!UseRealThreads) {
            NKikimr::TAppData::RandomProvider = CreateDefaultRandomProvider();
            NKikimr::TAppData::TimeProvider = CreateDefaultTimeProvider();
        }

        SetObserverFunc(&TTestActorRuntimeBase::DefaultObserverFunc);
        SetScheduledEventsSelectorFunc(&CollapsedTimeScheduledEventsSelector);
        SetEventFilter(&TTestActorRuntimeBase::DefaultFilterFunc);
        SetScheduledEventFilter(&TTestActorRuntimeBase::NopFilterFunc);
        SetRegistrationObserverFunc(&TTestActorRuntimeBase::DefaultRegistrationObserver);

        CleanupNodes();
    }

    void TTestActorRuntime::AddAppDataInit(std::function<void(ui32, NKikimr::TAppData&)> callback) {
        Y_ABORT_UNLESS(!IsInitialized, "Actor system is already initialized");
        AppDataInit_.push_back(std::move(callback));
    }

    void TTestActorRuntime::Initialize(TEgg egg) {
        IsInitialized = true;

        Opaque = std::move(egg.Opaque);
        App0.Reset(egg.App0);
        KeyConfigGenerator = std::move(egg.KeyConfigGenerator);

        if (!UseRealThreads) {
            NKikimr::TAppData::RandomProvider = RandomProvider;
            NKikimr::TAppData::TimeProvider = TimeProvider;
        }

        MonPorts.clear();
        for (ui32 nodeIndex = 0; nodeIndex < NodeCount; ++nodeIndex) {
            ui32 nodeId = FirstNodeId + nodeIndex;
            auto* node = GetNodeById(nodeId);
            const auto* app0 = App0.Get();
            if (!SingleSysEnv) {
                const TIntrusivePtr<::NMonitoring::TDynamicCounters> profilerCounters = NKikimr::GetServiceCounters(node->DynamicCounters, "utils");
                TTestActorSetupCmd profilerSetup{CreateProfilerActor(profilerCounters, "."), TMailboxType::Simple, 0};
                node->LocalServices.push_back(std::pair<TActorId, TTestActorSetupCmd>(MakeProfilerID(FirstNodeId + nodeIndex), profilerSetup));
            }

            if (!UseRealThreads) {
                node->AppData0.reset(new NKikimr::TAppData(0, 0, 0, 0, { }, App0->TypeRegistry, App0->FunctionRegistry, App0->FormatFactory, nullptr));
                node->SchedulerPool.Reset(CreateExecutorPoolStub(this, nodeIndex, node, 0));
                node->MailboxTable.Reset(new TMailboxTable());
                node->ActorSystem = MakeActorSystem(nodeIndex, node);
                node->ExecutorThread.Reset(new TExecutorThread(0, 0, node->ActorSystem.Get(), node->SchedulerPool.Get(), node->MailboxTable.Get(), "TestExecutor"));
            } else {
                node->AppData0.reset(new NKikimr::TAppData(0, 1, 2, 3, { }, app0->TypeRegistry, app0->FunctionRegistry, app0->FormatFactory, nullptr));
                node->ActorSystem = MakeActorSystem(nodeIndex, node);
            }
            node->LogSettings->MessagePrefix = " node " + ToString(nodeId);

            auto* nodeAppData = node->GetAppData<NKikimr::TAppData>();
            if (!UseRealThreads) {
                nodeAppData->MonotonicTimeProvider = MonotonicTimeProvider;
            }
            nodeAppData->DataShardExportFactory = app0->DataShardExportFactory;
            nodeAppData->DomainsInfo = app0->DomainsInfo;
            nodeAppData->ChannelProfiles = app0->ChannelProfiles;
            nodeAppData->Counters = node->DynamicCounters;
            nodeAppData->PollerThreads = node->Poller;
            nodeAppData->StreamingConfig.SetEnableOutputStreams(true);
            nodeAppData->PQConfig = app0->PQConfig;
            nodeAppData->NetClassifierConfig.CopyFrom(app0->NetClassifierConfig);
            nodeAppData->EnableKqpSpilling = app0->EnableKqpSpilling;
            nodeAppData->FeatureFlags = app0->FeatureFlags;
            nodeAppData->CompactionConfig = app0->CompactionConfig;
            nodeAppData->HiveConfig.SetWarmUpBootWaitingPeriod(10);
            nodeAppData->HiveConfig.SetMaxNodeUsageToKick(100);
            nodeAppData->HiveConfig.SetMinCounterScatterToBalance(100);
            nodeAppData->HiveConfig.SetMinScatterToBalance(100);
            nodeAppData->HiveConfig.SetObjectImbalanceToBalance(100);
            nodeAppData->HiveConfig.CopyFrom(app0->HiveConfig);
            nodeAppData->SchemeShardConfig = app0->SchemeShardConfig;
            nodeAppData->DataShardConfig = app0->DataShardConfig;
            nodeAppData->ColumnShardConfig = app0->ColumnShardConfig;
            nodeAppData->MeteringConfig = app0->MeteringConfig;
            nodeAppData->AwsCompatibilityConfig = app0->AwsCompatibilityConfig;
            nodeAppData->S3ProxyResolverConfig = app0->S3ProxyResolverConfig;
            nodeAppData->GraphConfig = app0->GraphConfig;
            nodeAppData->EnableMvccSnapshotWithLegacyDomainRoot = app0->EnableMvccSnapshotWithLegacyDomainRoot;
            nodeAppData->IoContextFactory = app0->IoContextFactory;
            if (nodeIndex < egg.Icb.size()) {
                nodeAppData->Icb = std::move(egg.Icb[nodeIndex]);
                nodeAppData->InFlightLimiterRegistry.Reset(new NKikimr::NGRpcService::TInFlightLimiterRegistry(nodeAppData->Icb));
            }
            if (KeyConfigGenerator) {
                nodeAppData->KeyConfig = KeyConfigGenerator(nodeIndex);
            } else {
                nodeAppData->KeyConfig.CopyFrom(app0->KeyConfig);
            }

            for (auto& callback : AppDataInit_) {
                callback(nodeIndex, *nodeAppData);
            }

            if (NeedMonitoring && !SingleSysEnv) {
                ui16 port = GetPortManager().GetPort();
                node->Mon.Reset(new NActors::TSyncHttpMon({
                    .Port = port,
                    .Threads = 10,
                    .Title = "KIKIMR monitoring"
                }));
                nodeAppData->Mon = node->Mon.Get();
                node->Mon->RegisterCountersPage("counters", "Counters", node->DynamicCounters);
                auto actorsMonPage = node->Mon->RegisterIndexPage("actors", "Actors");
                node->Mon->RegisterActorPage(actorsMonPage, "profiler", "Profiler", false, node->ActorSystem.Get(), MakeProfilerID(FirstNodeId + nodeIndex));
                const NActors::TActorId loggerActorId = NActors::TActorId(FirstNodeId + nodeIndex, "logger");
                node->Mon->RegisterActorPage(actorsMonPage, "logger", "Logger", false, node->ActorSystem.Get(), loggerActorId);
                MonPorts.push_back(port);
            }

            node->ActorSystem->Start();
            if (nodeAppData->Mon) {
                nodeAppData->Mon->Start();
            }
        }

        AppDataInit_.clear();
    }

    ui16 TTestActorRuntime::GetMonPort(ui32 nodeIndex) const {
        Y_ABORT_UNLESS(nodeIndex < MonPorts.size(), "Unknown MonPort for nodeIndex = %" PRIu32, nodeIndex);
        return MonPorts[nodeIndex];
    }

    void TTestActorRuntime::InitActorSystemSetup(TActorSystemSetup& /*setup*/) {
    }

    NKikimr::TAppData& TTestActorRuntime::GetAppData(ui32 nodeIndex) {
        TGuard<TMutex> guard(Mutex);
        Y_ABORT_UNLESS(nodeIndex < NodeCount);
        ui32 nodeId = FirstNodeId + nodeIndex;
        auto* node = GetNodeById(nodeId);
        return *node->GetAppData<NKikimr::TAppData>();
    }

    ui32 TTestActorRuntime::GetFirstNodeId() {
        return FirstNodeId;
    }

    bool TTestActorRuntime::DefaultScheduledFilterFunc(TTestActorRuntimeBase& runtime, TAutoPtr<IEventHandle>& event, TDuration delay, TInstant& deadline) {
        Y_UNUSED(delay);
        Y_UNUSED(deadline);

        switch (event->GetTypeRewrite()) {
        case NKikimr::TEvBlobStorage::EvConfigureQueryTimeout:
        case NKikimr::TEvBlobStorage::EvEstablishingSessionTimeout:
            return true;
        case NKikimr::TEvBlobStorage::EvNotReadyRetryTimeout:
        case NKikimr::TEvTabletPipe::EvClientRetry:
        case NKikimr::TEvTabletBase::EvFollowerRetry:
        case NKikimr::TEvTabletBase::EvTryBuildFollowerGraph:
        case NKikimr::TEvTabletBase::EvTrySyncFollower:
            return false;
        case NKikimr::TEvents::TEvFlushLog::EventType:
            return false;
        default:
            break;
        }

        if (runtime.IsScheduleForActorEnabled(event->GetRecipientRewrite())) {
            return false;
        }

        return true;
    }

    void TTestActorRuntime::SimulateSleep(TDuration duration) {
        if (!SleepEdgeActor) {
            SleepEdgeActor = AllocateEdgeActor();
        }
        Schedule(new IEventHandle(SleepEdgeActor, SleepEdgeActor, new TEvents::TEvWakeup()), duration);
        GrabEdgeEventRethrow<TEvents::TEvWakeup>(SleepEdgeActor);
    }

    void TTestActorRuntime::SendToPipe(ui64 tabletId, const TActorId& sender, IEventBase* payload, ui32 nodeIndex, const NKikimr::NTabletPipe::TClientConfig& pipeConfig, TActorId clientId, ui64 cookie, NWilson::TTraceId traceId) {
        bool newPipe = (clientId == TActorId());
        if (newPipe) {
            clientId = ConnectToPipe(tabletId, sender, nodeIndex, pipeConfig);
        }

        SendToPipe(clientId, sender, payload, nodeIndex, cookie, std::move(traceId));

        if (newPipe) {
            ClosePipe(clientId, sender, nodeIndex);
        }
    }

    void TTestActorRuntime::SendToPipe(TActorId clientId, const TActorId& sender, IEventBase* payload,
                                       ui32 nodeIndex, ui64 cookie, NWilson::TTraceId traceId) {
        auto pipeEv = new IEventHandle(clientId, sender, payload, 0, cookie, nullptr, std::move(traceId));
        pipeEv->Rewrite(NKikimr::TEvTabletPipe::EvSend, clientId);
        Send(pipeEv, nodeIndex, true);
    }

    TActorId TTestActorRuntime::ConnectToPipe(ui64 tabletId, const TActorId& sender, ui32 nodeIndex, const NKikimr::NTabletPipe::TClientConfig& pipeConfig) {
        TActorId clientId = Register(NKikimr::NTabletPipe::CreateClient(sender, tabletId, pipeConfig), nodeIndex);
        if (!UseRealThreads) {
            EnableScheduleForActor(clientId, true);
        }
        return clientId;
    }

    void TTestActorRuntime::ClosePipe(TActorId clientId, const TActorId& sender, ui32 nodeIndex) {
        Send(new IEventHandle(clientId, sender, new NKikimr::TEvTabletPipe::TEvShutdown()), nodeIndex, true);
    }

    void TTestActorRuntime::DisconnectNodes(ui32 fromNodeIndex, ui32 toNodeIndex, bool async) {
        Send(new IEventHandle(
            GetInterconnectProxy(fromNodeIndex, toNodeIndex),
            TActorId(),
            new TEvInterconnect::TEvDisconnect()),
            fromNodeIndex, async);
    }

    TIntrusivePtr<::NMonitoring::TDynamicCounters> TTestActorRuntime::GetCountersForComponent(TIntrusivePtr<::NMonitoring::TDynamicCounters> counters, const char* component) {
        return NKikimr::GetServiceCounters(counters, component);
    }

    void TTestActorRuntime::InitNodeImpl(TNodeDataBase* node, size_t) {
        node->LogSettings->Append(
            NActorsServices::EServiceCommon_MIN,
            NActorsServices::EServiceCommon_MAX,
            NActorsServices::EServiceCommon_Name
        );
        node->LogSettings->Append(
            NKikimrServices::EServiceKikimr_MIN,
            NKikimrServices::EServiceKikimr_MAX,
            NKikimrServices::EServiceKikimr_Name
        );
        // turn off some noisy components
        TString explanation;
        node->LogSettings->SetLevel(NLog::PRI_CRIT, NKikimrServices::BS_PROXY_DISCOVER, explanation);
        node->LogSettings->SetLevel(NLog::PRI_ERROR, NKikimrServices::TABLET_EXECUTOR, explanation);
        node->LogSettings->SetLevel(NLog::PRI_ERROR, NKikimrServices::BS_PROXY, explanation);
        node->LogSettings->SetLevel(NLog::PRI_CRIT, NKikimrServices::TABLET_MAIN, explanation);

    }
} // namespace NActors