aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/helpers/pool_stats_collector.h
blob: 16a64581efaabeb775d557059a7f717e2e18e758 (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
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
#pragma once

#include <library/cpp/actors/core/actor_bootstrapped.h>
#include <library/cpp/actors/core/actorsystem.h>
#include <library/cpp/actors/core/executor_thread.h>
#include <library/cpp/actors/core/hfunc.h>
#include <library/cpp/monlib/dynamic_counters/counters.h>

#include <util/generic/vector.h>
#include <util/generic/xrange.h>
#include <util/string/printf.h>

namespace NActors {

// Periodically collects stats from executor threads and exposes them as mon counters
class TStatsCollectingActor : public TActorBootstrapped<TStatsCollectingActor> {
private:
    struct THistogramCounters {
        void Init(NMonitoring::TDynamicCounters* group, const TString& baseName, const TString& unit, ui64 maxVal) {
            for (size_t i = 0; (1ull<<i) <= maxVal; ++i) {
                TString bucketName = ToString(1ull<<i) + " " + unit;
                Buckets.push_back(group->GetSubgroup("sensor", baseName)->GetNamedCounter("range", bucketName, true));
            }
            Buckets.push_back(group->GetSubgroup("sensor", baseName)->GetNamedCounter("range", "INF", true));
        }

        void Set(const TLogHistogram& data) {
            ui32 i = 0;
            for (;i < Y_ARRAY_SIZE(data.Buckets) && i < Buckets.size()-1; ++i)
                *Buckets[i] = data.Buckets[i];
            ui64 last = 0;
            for (;i < Y_ARRAY_SIZE(data.Buckets); ++i)
                last += data.Buckets[i];
            *Buckets.back() = last;
        }

        void Set(const TLogHistogram& data, double factor) {
            ui32 i = 0;
            for (;i < Y_ARRAY_SIZE(data.Buckets) && i < Buckets.size()-1; ++i)
                *Buckets[i] = data.Buckets[i]*factor;
            ui64 last = 0;
            for (;i < Y_ARRAY_SIZE(data.Buckets); ++i)
                last += data.Buckets[i];
            *Buckets.back() = last*factor;
        }

    private:
        TVector<NMonitoring::TDynamicCounters::TCounterPtr> Buckets;
    };

    struct TActivityStats {
        void Init(NMonitoring::TDynamicCounterPtr group) {
            Group = group;

            ElapsedMicrosecByActivityBuckets.resize(GetActivityTypeCount());
            ReceivedEventsByActivityBuckets.resize(GetActivityTypeCount());
            ActorsAliveByActivityBuckets.resize(GetActivityTypeCount());
            ScheduledEventsByActivityBuckets.resize(GetActivityTypeCount());
            StuckActorsByActivityBuckets.resize(GetActivityTypeCount());
        }

        void Set(const TExecutorThreadStats& stats) {
            for (ui32 i : xrange(stats.MaxActivityType())) {
                Y_VERIFY(i < GetActivityTypeCount());
                ui64 ticks = stats.ElapsedTicksByActivity[i];
                ui64 events = stats.ReceivedEventsByActivity[i];
                ui64 actors = stats.ActorsAliveByActivity[i];
                ui64 scheduled = stats.ScheduledEventsByActivity[i];
                ui64 stuck = stats.StuckActorsByActivity[i];

                if (!ActorsAliveByActivityBuckets[i]) {
                    if (ticks || events || actors || scheduled) {
                        InitCountersForActivity(i);
                    } else {
                        continue;
                    }
                }

                *ElapsedMicrosecByActivityBuckets[i] = ::NHPTimer::GetSeconds(ticks)*1000000;
                *ReceivedEventsByActivityBuckets[i] = events;
                *ActorsAliveByActivityBuckets[i] = actors;
                *ScheduledEventsByActivityBuckets[i] = scheduled;
                *StuckActorsByActivityBuckets[i] = stuck;
            }
        }

    private:
        void InitCountersForActivity(ui32 activityType) {
            Y_VERIFY(activityType < GetActivityTypeCount());

            auto bucketName = TString(GetActivityTypeName(activityType));

            ElapsedMicrosecByActivityBuckets[activityType] =
                Group->GetSubgroup("sensor", "ElapsedMicrosecByActivity")->GetNamedCounter("activity", bucketName, true);
            ReceivedEventsByActivityBuckets[activityType] =
                Group->GetSubgroup("sensor", "ReceivedEventsByActivity")->GetNamedCounter("activity", bucketName, true);
            ActorsAliveByActivityBuckets[activityType] =
                Group->GetSubgroup("sensor", "ActorsAliveByActivity")->GetNamedCounter("activity", bucketName, false);
            ScheduledEventsByActivityBuckets[activityType] =
                Group->GetSubgroup("sensor", "ScheduledEventsByActivity")->GetNamedCounter("activity", bucketName, true);
            StuckActorsByActivityBuckets[activityType] =
                Group->GetSubgroup("sensor", "StuckActorsByActivity")->GetNamedCounter("activity", bucketName, false);
        }

    private:
        NMonitoring::TDynamicCounterPtr Group;

        TVector<NMonitoring::TDynamicCounters::TCounterPtr> ElapsedMicrosecByActivityBuckets;
        TVector<NMonitoring::TDynamicCounters::TCounterPtr> ReceivedEventsByActivityBuckets;
        TVector<NMonitoring::TDynamicCounters::TCounterPtr> ActorsAliveByActivityBuckets;
        TVector<NMonitoring::TDynamicCounters::TCounterPtr> ScheduledEventsByActivityBuckets;
        TVector<NMonitoring::TDynamicCounters::TCounterPtr> StuckActorsByActivityBuckets;
    };

    struct TExecutorPoolCounters {
        TIntrusivePtr<NMonitoring::TDynamicCounters> PoolGroup;

        NMonitoring::TDynamicCounters::TCounterPtr SentEvents;
        NMonitoring::TDynamicCounters::TCounterPtr ReceivedEvents;
        NMonitoring::TDynamicCounters::TCounterPtr PreemptedEvents;
        NMonitoring::TDynamicCounters::TCounterPtr NonDeliveredEvents;
        NMonitoring::TDynamicCounters::TCounterPtr DestroyedActors;
        NMonitoring::TDynamicCounters::TCounterPtr EmptyMailboxActivation;
        NMonitoring::TDynamicCounters::TCounterPtr CpuMicrosec;
        NMonitoring::TDynamicCounters::TCounterPtr ElapsedMicrosec;
        NMonitoring::TDynamicCounters::TCounterPtr ParkedMicrosec;
        NMonitoring::TDynamicCounters::TCounterPtr ActorRegistrations;
        NMonitoring::TDynamicCounters::TCounterPtr ActorsAlive;
        NMonitoring::TDynamicCounters::TCounterPtr AllocatedMailboxes;
        NMonitoring::TDynamicCounters::TCounterPtr MailboxPushedOutBySoftPreemption;
        NMonitoring::TDynamicCounters::TCounterPtr MailboxPushedOutByTime;
        NMonitoring::TDynamicCounters::TCounterPtr MailboxPushedOutByEventCount;
        NMonitoring::TDynamicCounters::TCounterPtr WrongWakenedThreadCount;
        NMonitoring::TDynamicCounters::TCounterPtr CurrentThreadCount;
        NMonitoring::TDynamicCounters::TCounterPtr PotentialMaxThreadCount;
        NMonitoring::TDynamicCounters::TCounterPtr DefaultThreadCount;
        NMonitoring::TDynamicCounters::TCounterPtr MaxThreadCount;
        NMonitoring::TDynamicCounters::TCounterPtr IsNeedy;
        NMonitoring::TDynamicCounters::TCounterPtr IsStarved;
        NMonitoring::TDynamicCounters::TCounterPtr IsHoggish;
        NMonitoring::TDynamicCounters::TCounterPtr IncreasingThreadsByNeedyState;
        NMonitoring::TDynamicCounters::TCounterPtr DecreasingThreadsByStarvedState;
        NMonitoring::TDynamicCounters::TCounterPtr DecreasingThreadsByHoggishState;
        NMonitoring::TDynamicCounters::TCounterPtr NotEnoughCpuExecutions;
        NMonitoring::TDynamicCounters::TCounterPtr MaxConsumedCpu;
        NMonitoring::TDynamicCounters::TCounterPtr MinConsumedCpu;
        NMonitoring::TDynamicCounters::TCounterPtr MaxBookedCpu;
        NMonitoring::TDynamicCounters::TCounterPtr MinBookedCpu;


        THistogramCounters LegacyActivationTimeHistogram;
        NMonitoring::THistogramPtr ActivationTimeHistogram;
        THistogramCounters LegacyEventDeliveryTimeHistogram;
        NMonitoring::THistogramPtr EventDeliveryTimeHistogram;
        THistogramCounters LegacyEventProcessingCountHistogram;
        NMonitoring::THistogramPtr EventProcessingCountHistogram;
        THistogramCounters LegacyEventProcessingTimeHistogram;
        NMonitoring::THistogramPtr EventProcessingTimeHistogram;

        TActivityStats ActivityStats;
        NMonitoring::TDynamicCounters::TCounterPtr MaxUtilizationTime;

        double Usage = 0;
        double LastElapsedSeconds = 0;
        THPTimer UsageTimer;
        TString Name;
        ui32 Threads;

        void Init(NMonitoring::TDynamicCounters* group, const TString& poolName, ui32 threads) {
            LastElapsedSeconds = 0;
            Usage = 0;
            UsageTimer.Reset();
            Name = poolName;
            Threads = threads;

            PoolGroup = group->GetSubgroup("execpool", poolName);

            SentEvents          = PoolGroup->GetCounter("SentEvents", true);
            ReceivedEvents      = PoolGroup->GetCounter("ReceivedEvents", true);
            PreemptedEvents     = PoolGroup->GetCounter("PreemptedEvents", true);
            NonDeliveredEvents  = PoolGroup->GetCounter("NonDeliveredEvents", true);
            DestroyedActors     = PoolGroup->GetCounter("DestroyedActors", true);
            CpuMicrosec         = PoolGroup->GetCounter("CpuMicrosec", true);
            ElapsedMicrosec     = PoolGroup->GetCounter("ElapsedMicrosec", true);
            ParkedMicrosec      = PoolGroup->GetCounter("ParkedMicrosec", true);
            EmptyMailboxActivation = PoolGroup->GetCounter("EmptyMailboxActivation", true);
            ActorRegistrations  = PoolGroup->GetCounter("ActorRegistrations", true);
            ActorsAlive         = PoolGroup->GetCounter("ActorsAlive", false);
            AllocatedMailboxes  = PoolGroup->GetCounter("AllocatedMailboxes", false);
            MailboxPushedOutBySoftPreemption = PoolGroup->GetCounter("MailboxPushedOutBySoftPreemption", true);
            MailboxPushedOutByTime = PoolGroup->GetCounter("MailboxPushedOutByTime", true);
            MailboxPushedOutByEventCount = PoolGroup->GetCounter("MailboxPushedOutByEventCount", true);
            WrongWakenedThreadCount = PoolGroup->GetCounter("WrongWakenedThreadCount", true);
            CurrentThreadCount = PoolGroup->GetCounter("CurrentThreadCount", false);
            PotentialMaxThreadCount = PoolGroup->GetCounter("PotentialMaxThreadCount", false);
            DefaultThreadCount = PoolGroup->GetCounter("DefaultThreadCount", false);
            MaxThreadCount = PoolGroup->GetCounter("MaxThreadCount", false);
            IsNeedy = PoolGroup->GetCounter("IsNeedy", false);
            IsStarved = PoolGroup->GetCounter("IsStarved", false);
            IsHoggish = PoolGroup->GetCounter("IsHoggish", false);
            IncreasingThreadsByNeedyState = PoolGroup->GetCounter("IncreasingThreadsByNeedyState", true);
            DecreasingThreadsByStarvedState = PoolGroup->GetCounter("DecreasingThreadsByStarvedState", true);
            DecreasingThreadsByHoggishState = PoolGroup->GetCounter("DecreasingThreadsByHoggishState", true);
            NotEnoughCpuExecutions = PoolGroup->GetCounter("NotEnoughCpuExecutions", true);
            MaxConsumedCpu = PoolGroup->GetCounter("MaxConsumedCpuByPool", false);
            MinConsumedCpu = PoolGroup->GetCounter("MinConsumedCpuByPool", false);
            MaxBookedCpu = PoolGroup->GetCounter("MaxBookedCpuByPool", false);
            MinBookedCpu = PoolGroup->GetCounter("MinBookedCpuByPool", false);

            LegacyActivationTimeHistogram.Init(PoolGroup.Get(), "ActivationTime", "usec", 5*1000*1000);
            ActivationTimeHistogram = PoolGroup->GetHistogram(
                "ActivationTimeUs", NMonitoring::ExponentialHistogram(24, 2, 1));
            LegacyEventDeliveryTimeHistogram.Init(PoolGroup.Get(), "EventDeliveryTime", "usec", 5*1000*1000);
            EventDeliveryTimeHistogram = PoolGroup->GetHistogram(
                "EventDeliveryTimeUs", NMonitoring::ExponentialHistogram(24, 2, 1));
            LegacyEventProcessingCountHistogram.Init(PoolGroup.Get(), "EventProcessingCount", "usec", 5*1000*1000);
            EventProcessingCountHistogram = PoolGroup->GetHistogram(
                "EventProcessingCountUs", NMonitoring::ExponentialHistogram(24, 2, 1));
            LegacyEventProcessingTimeHistogram.Init(PoolGroup.Get(), "EventProcessingTime", "usec", 5*1000*1000);
            EventProcessingTimeHistogram = PoolGroup->GetHistogram(
                "EventProcessingTimeUs", NMonitoring::ExponentialHistogram(24, 2, 1));

            ActivityStats.Init(PoolGroup.Get());

            MaxUtilizationTime = PoolGroup->GetCounter("MaxUtilizationTime", true);
        }

        void Set(const TExecutorPoolStats& poolStats, const TExecutorThreadStats& stats, ui32 numThreads) {
#ifdef ACTORSLIB_COLLECT_EXEC_STATS
            *SentEvents         = stats.SentEvents;
            *ReceivedEvents     = stats.ReceivedEvents;
            *PreemptedEvents     = stats.PreemptedEvents;
            *NonDeliveredEvents = stats.NonDeliveredEvents;
            *DestroyedActors    = stats.PoolDestroyedActors;
            *EmptyMailboxActivation = stats.EmptyMailboxActivation;
            *CpuMicrosec        = stats.CpuUs;
            *ElapsedMicrosec    = ::NHPTimer::GetSeconds(stats.ElapsedTicks)*1000000;
            *ParkedMicrosec     = ::NHPTimer::GetSeconds(stats.ParkedTicks)*1000000;
            *ActorRegistrations = stats.PoolActorRegistrations;
            *ActorsAlive        = stats.PoolActorRegistrations - stats.PoolDestroyedActors;
            *AllocatedMailboxes = stats.PoolAllocatedMailboxes;
            *MailboxPushedOutBySoftPreemption = stats.MailboxPushedOutBySoftPreemption;
            *MailboxPushedOutByTime = stats.MailboxPushedOutByTime;
            *MailboxPushedOutByEventCount = stats.MailboxPushedOutByEventCount;
            *WrongWakenedThreadCount = poolStats.WrongWakenedThreadCount;
            *CurrentThreadCount = poolStats.CurrentThreadCount;
            *PotentialMaxThreadCount = poolStats.PotentialMaxThreadCount;
            *DefaultThreadCount = poolStats.DefaultThreadCount;
            *MaxThreadCount = poolStats.MaxThreadCount;
            *IsNeedy = poolStats.IsNeedy;
            *IsStarved = poolStats.IsStarved;
            *IsHoggish = poolStats.IsHoggish;
            *IncreasingThreadsByNeedyState = poolStats.IncreasingThreadsByNeedyState;
            *DecreasingThreadsByStarvedState = poolStats.DecreasingThreadsByStarvedState;
            *DecreasingThreadsByHoggishState = poolStats.DecreasingThreadsByHoggishState;
            *NotEnoughCpuExecutions = stats.NotEnoughCpuExecutions;

            LegacyActivationTimeHistogram.Set(stats.ActivationTimeHistogram);
            ActivationTimeHistogram->Reset();
            ActivationTimeHistogram->Collect(stats.ActivationTimeHistogram);

            LegacyEventDeliveryTimeHistogram.Set(stats.EventDeliveryTimeHistogram);
            EventDeliveryTimeHistogram->Reset();
            EventDeliveryTimeHistogram->Collect(stats.EventDeliveryTimeHistogram);

            LegacyEventProcessingCountHistogram.Set(stats.EventProcessingCountHistogram);
            EventProcessingCountHistogram->Reset();
            EventProcessingCountHistogram->Collect(stats.EventProcessingCountHistogram);

            double toMicrosec = 1000000 / NHPTimer::GetClockRate();
            LegacyEventProcessingTimeHistogram.Set(stats.EventProcessingTimeHistogram, toMicrosec);
            EventProcessingTimeHistogram->Reset();
            for (ui32 i = 0; i < stats.EventProcessingTimeHistogram.Count(); ++i) {
                EventProcessingTimeHistogram->Collect(
                    stats.EventProcessingTimeHistogram.UpperBound(i),
                    stats.EventProcessingTimeHistogram.Value(i) * toMicrosec);
            }

            ActivityStats.Set(stats);

            *MaxUtilizationTime = poolStats.MaxUtilizationTime;

            double seconds = UsageTimer.PassedReset();

            // TODO[serxa]: It doesn't account for contention. Use 1 - parkedTicksDelta / seconds / numThreads KIKIMR-11916
            const double elapsed = NHPTimer::GetSeconds(stats.ElapsedTicks);
            const double currentUsage = numThreads > 0 ? ((elapsed - LastElapsedSeconds) / seconds / numThreads) : 0;
            LastElapsedSeconds = elapsed;

            // update usage factor according to smoothness
            const double smoothness = 0.5;
            Usage = currentUsage * smoothness + Usage * (1.0 - smoothness);
#else
            Y_UNUSED(poolStats);
            Y_UNUSED(stats);
            Y_UNUSED(numThreads);
#endif
        }
    };

    struct TActorSystemCounters {
        TIntrusivePtr<NMonitoring::TDynamicCounters> Group;

        NMonitoring::TDynamicCounters::TCounterPtr MaxConsumedCpu;
        NMonitoring::TDynamicCounters::TCounterPtr MinConsumedCpu;
        NMonitoring::TDynamicCounters::TCounterPtr MaxBookedCpu;
        NMonitoring::TDynamicCounters::TCounterPtr MinBookedCpu;

        void Init(NMonitoring::TDynamicCounters* group) {
            Group = group;

            MaxConsumedCpu = Group->GetCounter("MaxConsumedCpu", false);
            MinConsumedCpu = Group->GetCounter("MinConsumedCpu", false);
            MaxBookedCpu = Group->GetCounter("MaxBookedCpu", false);
            MinBookedCpu = Group->GetCounter("MinBookedCpu", false);
        }

        void Set(const THarmonizerStats& harmonizerStats) {
#ifdef ACTORSLIB_COLLECT_EXEC_STATS
            *MaxConsumedCpu = harmonizerStats.MaxConsumedCpu;
            *MinConsumedCpu = harmonizerStats.MinConsumedCpu;
            *MaxBookedCpu = harmonizerStats.MaxBookedCpu;
            *MinBookedCpu = harmonizerStats.MinBookedCpu;
#else
            Y_UNUSED(poolStats);
            Y_UNUSED(stats);
            Y_UNUSED(numThreads);
#endif
        }

    };

public:
    static constexpr IActor::EActivityType ActorActivityType() {
        return IActor::ACTORLIB_STATS;
    }

    TStatsCollectingActor(
            ui32 intervalSec,
            const TActorSystemSetup& setup,
            NMonitoring::TDynamicCounterPtr counters)
        : IntervalSec(intervalSec)
        , Counters(counters)
    {
        PoolCounters.resize(setup.GetExecutorsCount());
        for (size_t poolId = 0; poolId < PoolCounters.size(); ++poolId) {
            PoolCounters[poolId].Init(Counters.Get(), setup.GetPoolName(poolId), setup.GetThreads(poolId));
        }
        ActorSystemCounters.Init(Counters.Get());
    }

    void Bootstrap(const TActorContext& ctx) {
        ctx.Schedule(TDuration::Seconds(IntervalSec), new TEvents::TEvWakeup());
        Become(&TThis::StateWork);
    }

    STFUNC(StateWork) {
        switch (ev->GetTypeRewrite()) {
            CFunc(TEvents::TSystem::Wakeup, Wakeup);
        }
    }

private:
    virtual void OnWakeup(const TActorContext &ctx) {
        Y_UNUSED(ctx);
    }

    void Wakeup(const TActorContext &ctx) {
        for (size_t poolId = 0; poolId < PoolCounters.size(); ++poolId) {
            TVector<TExecutorThreadStats> stats;
            TExecutorPoolStats poolStats;
            ctx.ExecutorThread.ActorSystem->GetPoolStats(poolId, poolStats, stats);
            SetAggregatedCounters(PoolCounters[poolId], poolStats, stats);
        }
        THarmonizerStats harmonizerStats = ctx.ExecutorThread.ActorSystem->GetHarmonizerStats();
        ActorSystemCounters.Set(harmonizerStats);

        OnWakeup(ctx);

        ctx.Schedule(TDuration::Seconds(IntervalSec), new TEvents::TEvWakeup());
    }

    void SetAggregatedCounters(TExecutorPoolCounters& poolCounters, TExecutorPoolStats& poolStats, TVector<TExecutorThreadStats>& stats) {
        // Sum all per-thread counters into the 0th element
        for (ui32 idx = 1; idx < stats.size(); ++idx) {
            stats[0].Aggregate(stats[idx]);
        }
        if (stats.size()) {
            poolCounters.Set(poolStats, stats[0], stats.size() - 1);
        }
    }

protected:
    const ui32 IntervalSec;
    NMonitoring::TDynamicCounterPtr Counters;

    TVector<TExecutorPoolCounters> PoolCounters;
    TActorSystemCounters ActorSystemCounters;
};

} // NActors