aboutsummaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/interface/helpers.cpp
blob: f396883ea5ad6349a0740524a033da397d179d3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "helpers.h"

#include <util/string/cast.h>

#include <util/system/env.h>

namespace NYT {

////////////////////////////////////////////////////////////////////////////////

int GetJobFirstOutputTableFD()
{
    return FromString<int>(GetEnv("YT_FIRST_OUTPUT_TABLE_FD", "1"));
}

////////////////////////////////////////////////////////////////////////////////

} // namespace NYT