blob: 85aa0a93f34c930874738ac065b035be0e94684f (
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
|
#include <yt/cpp/mapreduce/interface/client_method_options.h>
#include <yt/cpp/mapreduce/interface/operation.h>
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
using IStructuredJobPtr = TIntrusiveConstPtr<IStructuredJob>;
IStructuredJobPtr ConstructJob(const TString& jobName, const TString& state);
TString GetJobStateString(const IStructuredJob& job);
TString GetIOInfo(
const IStructuredJob& job,
const TCreateClientOptions& options,
const TString& cluster,
const TString& transactionId,
const TString& inputPaths,
const TString& outputPaths,
const TString& neededColumns);
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|