aboutsummaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/library/user_job_statistics/user_job_statistics.cpp
blob: 56ab88ee9da2dabb9593f8e9c79d146c340a071c (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
#include "user_job_statistics.h"
#include <yt/cpp/mapreduce/common/helpers.h>
#include <util/stream/null.h>
#include <util/string/builder.h>
#include <util/system/mutex.h>
#include <util/system/env.h>

using namespace NYtTools;

static TMutex GlobalStatsWritingMutex;

#if defined(_unix_)
const FHANDLE TUserJobStatsProxy::JobStatisticsHandle = 5;
#elif defined(_win_)
const FHANDLE TUserJobStatsProxy::JobStatisticsHandle = nullptr;
#endif

static IOutputStream* CorrectHandle(const FHANDLE h) {
#if defined(_unix_)
    if (fcntl(h, F_GETFD) == -1) {
        return &Cerr;
    }
    return nullptr;
#elif defined(_win_)
    return &Cerr;
#endif
}

static TString PrintNodeSimple(const NYT::TNode& n) {
    return NYT::NodeToYsonString(n, NYson::EYsonFormat::Text);
}

void TUserJobStatsProxy::Init(IOutputStream * usingStream) {
    if (usingStream == nullptr) {
        usingStream = CorrectHandle(JobStatisticsHandle);
    }

    if (usingStream == nullptr && GetEnv("YT_JOB_ID").empty()) {
        usingStream = &Cerr;
    }


    if (usingStream == nullptr) {
        TFileHandle fixedDesrc(JobStatisticsHandle);
        FetchedOut = MakeHolder<TFixedBufferFileOutput>(TFile(fixedDesrc.Duplicate()));
        UsingStream = FetchedOut.Get();
        fixedDesrc.Release();
    } else {
        UsingStream = usingStream;
    }
}

void TUserJobStatsProxy::InitChecked(IOutputStream* def) {
    IOutputStream* usingStream =  CorrectHandle(JobStatisticsHandle);

    if (usingStream == nullptr && !GetEnv("YT_JOB_ID").empty()) {
        TFileHandle fixedDesrc(JobStatisticsHandle);
        FetchedOut = MakeHolder<TFixedBufferFileOutput>(TFile(fixedDesrc.Duplicate()));
        UsingStream = FetchedOut.Get();
        fixedDesrc.Release();
    } else {
        UsingStream = def;
    }
}

void TUserJobStatsProxy::InitIfNotInited(IOutputStream * usingStream) {
    if (UsingStream == nullptr) {
        Init(usingStream);
    }
}

void TUserJobStatsProxy::CommitStats() {
    if (Stats.empty()) {
        return;
    }

    auto res = NYT::TNode::CreateMap();
    for (auto& p : Stats) {
        res[p.first] = p.second;
    }
    for (auto& p : TimeStats) {
        res[p.first] = p.second.MilliSeconds();
    }
    with_lock(GlobalStatsWritingMutex) {
        *UsingStream << PrintNodeSimple(res) << ";" << Endl;
    }
    Stats.clear();
}


TTimeStatHolder TUserJobStatsProxy::TimerStart(TString name, bool commitOnFinish) {
    return THolder(new TTimeStat(this, name, commitOnFinish));
}

void TUserJobStatsProxy::WriteStat(TString name, i64 val) {
    auto res = NYT::TNode {} (name, val);
    with_lock(GlobalStatsWritingMutex) {
        *UsingStream << PrintNodeSimple(res) << ";" << Endl;
    }
}

void TUserJobStatsProxy::WriteStatNoFlush(TString name, i64 val) {
    auto res = NYT::TNode {} (name, val);
    with_lock(GlobalStatsWritingMutex) {
        *UsingStream << (TStringBuilder{} << PrintNodeSimple(res) << ";\n");
    }
}

TTimeStat::TTimeStat(TUserJobStatsProxy* parent, TString name, bool commit)
    : Parent(parent)
    , Name(name)
    , Commit(commit) {}

TTimeStat::~TTimeStat() {
    Finish();
}

void TTimeStat::Cancel() {
    Parent = nullptr;
}

void TTimeStat::Finish() {
    if (!Parent) {
        return;
    }

    if (Commit) {
        Parent->WriteStatNoFlush(Name, Timer.Get().MilliSeconds());
    } else {
        Parent->TimeStats[Name] += Timer.Get();
    }
    Cancel();
}