123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584 |
- #include "client.h"
- #include "batch_request_impl.h"
- #include "client_reader.h"
- #include "client_writer.h"
- #include "file_reader.h"
- #include "file_writer.h"
- #include "format_hints.h"
- #include "init.h"
- #include "lock.h"
- #include "operation.h"
- #include "retryful_writer.h"
- #include "transaction.h"
- #include "transaction_pinger.h"
- #include "yt_poller.h"
- #include <yt/cpp/mapreduce/common/helpers.h>
- #include <yt/cpp/mapreduce/common/retry_lib.h>
- #include <yt/cpp/mapreduce/http/helpers.h>
- #include <yt/cpp/mapreduce/http/http.h>
- #include <yt/cpp/mapreduce/http/http_client.h>
- #include <yt/cpp/mapreduce/http/requests.h>
- #include <yt/cpp/mapreduce/http/retry_request.h>
- #include <yt/cpp/mapreduce/interface/config.h>
- #include <yt/cpp/mapreduce/interface/client.h>
- #include <yt/cpp/mapreduce/interface/error_codes.h>
- #include <yt/cpp/mapreduce/interface/fluent.h>
- #include <yt/cpp/mapreduce/interface/logging/yt_log.h>
- #include <yt/cpp/mapreduce/interface/skiff_row.h>
- #include <yt/cpp/mapreduce/io/yamr_table_reader.h>
- #include <yt/cpp/mapreduce/io/yamr_table_writer.h>
- #include <yt/cpp/mapreduce/io/node_table_reader.h>
- #include <yt/cpp/mapreduce/io/node_table_writer.h>
- #include <yt/cpp/mapreduce/io/proto_table_reader.h>
- #include <yt/cpp/mapreduce/io/proto_table_writer.h>
- #include <yt/cpp/mapreduce/io/skiff_row_table_reader.h>
- #include <yt/cpp/mapreduce/io/proto_helpers.h>
- #include <yt/cpp/mapreduce/library/table_schema/protobuf.h>
- #include <yt/cpp/mapreduce/http_client/raw_client.h>
- #include <yt/cpp/mapreduce/http_client/raw_requests.h>
- #include <yt/yt/core/ytree/fluent.h>
- #include <library/cpp/json/json_reader.h>
- #include <util/generic/algorithm.h>
- #include <util/string/type.h>
- #include <util/system/env.h>
- namespace NYT {
- ////////////////////////////////////////////////////////////////////////////////
- namespace NDetail {
- ////////////////////////////////////////////////////////////////////////////////
- namespace {
- ////////////////////////////////////////////////////////////////////////////////
- THashMap<TString, TString> ParseProxyUrlAliasingRules(TString envConfig)
- {
- if (envConfig.empty()) {
- return {};
- }
- return NYTree::ConvertTo<THashMap<TString, TString>>(NYson::TYsonString(envConfig));
- }
- void ApplyProxyUrlAliasingRules(TString& url)
- {
- static auto rules = ParseProxyUrlAliasingRules(GetEnv("YT_PROXY_URL_ALIASING_CONFIG"));
- if (auto ruleIt = rules.find(url); ruleIt != rules.end()) {
- url = ruleIt->second;
- }
- }
- ////////////////////////////////////////////////////////////////////////////////
- } // namespace
- ////////////////////////////////////////////////////////////////////////////////
- TClientBase::TClientBase(
- IRawClientPtr rawClient,
- const TClientContext& context,
- const TTransactionId& transactionId,
- IClientRetryPolicyPtr retryPolicy)
- : RawClient_(std::move(rawClient))
- , Context_(context)
- , TransactionId_(transactionId)
- , ClientRetryPolicy_(std::move(retryPolicy))
- { }
- ITransactionPtr TClientBase::StartTransaction(
- const TStartTransactionOptions& options)
- {
- return MakeIntrusive<TTransaction>(RawClient_, GetParentClientImpl(), Context_, TransactionId_, options);
- }
- TNodeId TClientBase::Create(
- const TYPath& path,
- ENodeType type,
- const TCreateOptions& options)
- {
- return RequestWithRetry<TNodeId>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &type, &options] (TMutationId& mutationId) {
- return RawClient_->Create(mutationId, TransactionId_, path, type, options);
- });
- }
- void TClientBase::Remove(
- const TYPath& path,
- const TRemoveOptions& options)
- {
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &options] (TMutationId& mutationId) {
- RawClient_->Remove(mutationId, TransactionId_, path, options);
- });
- }
- bool TClientBase::Exists(
- const TYPath& path,
- const TExistsOptions& options)
- {
- return RequestWithRetry<bool>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &options] (TMutationId /*mutationId*/) {
- return RawClient_->Exists(TransactionId_, path, options);
- });
- }
- TNode TClientBase::Get(
- const TYPath& path,
- const TGetOptions& options)
- {
- return RequestWithRetry<TNode>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &options] (TMutationId /*mutationId*/) {
- return RawClient_->Get(TransactionId_, path, options);
- });
- }
- void TClientBase::Set(
- const TYPath& path,
- const TNode& value,
- const TSetOptions& options)
- {
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &value, &options] (TMutationId& mutationId) {
- RawClient_->Set(mutationId, TransactionId_, path, value, options);
- });
- }
- void TClientBase::MultisetAttributes(
- const TYPath& path,
- const TNode::TMapType& value,
- const TMultisetAttributesOptions& options)
- {
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &value, &options] (TMutationId& mutationId) {
- RawClient_->MultisetAttributes(mutationId, TransactionId_, path, value, options);
- });
- }
- TNode::TListType TClientBase::List(
- const TYPath& path,
- const TListOptions& options)
- {
- return RequestWithRetry<TNode::TListType>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &options] (TMutationId /*mutationId*/) {
- return RawClient_->List(TransactionId_, path, options);
- });
- }
- TNodeId TClientBase::Copy(
- const TYPath& sourcePath,
- const TYPath& destinationPath,
- const TCopyOptions& options)
- {
- try {
- return RequestWithRetry<TNodeId>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &sourcePath, &destinationPath, &options] (TMutationId& mutationId) {
- return RawClient_->CopyInsideMasterCell(mutationId, TransactionId_, sourcePath, destinationPath, options);
- });
- } catch (const TErrorResponse& e) {
- if (e.GetError().ContainsErrorCode(NClusterErrorCodes::NObjectClient::CrossCellAdditionalPath)) {
- // Do transaction for cross cell copying.
- return RequestWithRetry<TNodeId>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &sourcePath, &destinationPath, &options] (TMutationId /*mutationId*/) {
- auto transaction = StartTransaction(TStartTransactionOptions());
- auto nodeId = RawClient_->CopyWithoutRetries(transaction->GetId(), sourcePath, destinationPath, options);
- transaction->Commit();
- return nodeId;
- });
- } else {
- throw;
- }
- }
- }
- TNodeId TClientBase::Move(
- const TYPath& sourcePath,
- const TYPath& destinationPath,
- const TMoveOptions& options)
- {
- try {
- return RequestWithRetry<TNodeId>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &sourcePath, &destinationPath, &options] (TMutationId& mutationId) {
- return RawClient_->MoveInsideMasterCell(mutationId, TransactionId_, sourcePath, destinationPath, options);
- });
- } catch (const TErrorResponse& e) {
- if (e.GetError().ContainsErrorCode(NClusterErrorCodes::NObjectClient::CrossCellAdditionalPath)) {
- // Do transaction for cross cell moving.
- return RequestWithRetry<TNodeId>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &sourcePath, &destinationPath, &options] (TMutationId /*mutationId*/) {
- auto transaction = StartTransaction(TStartTransactionOptions());
- auto nodeId = RawClient_->MoveWithoutRetries(transaction->GetId(), sourcePath, destinationPath, options);
- transaction->Commit();
- return nodeId;
- });
- } else {
- throw;
- }
- }
- }
- TNodeId TClientBase::Link(
- const TYPath& targetPath,
- const TYPath& linkPath,
- const TLinkOptions& options)
- {
- return RequestWithRetry<TNodeId>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &targetPath, &linkPath, &options] (TMutationId& mutationId) {
- return RawClient_->Link(mutationId, TransactionId_, targetPath, linkPath, options);
- });
- }
- void TClientBase::Concatenate(
- const TVector<TRichYPath>& sourcePaths,
- const TRichYPath& destinationPath,
- const TConcatenateOptions& options)
- {
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &sourcePaths, &destinationPath, &options] (TMutationId /*mutationId*/) {
- auto transaction = StartTransaction(TStartTransactionOptions());
- if (!options.Append_ && !sourcePaths.empty() && !transaction->Exists(destinationPath.Path_)) {
- auto typeNode = transaction->Get(CanonizeYPath(sourcePaths.front()).Path_ + "/@type");
- auto type = FromString<ENodeType>(typeNode.AsString());
- transaction->Create(destinationPath.Path_, type, TCreateOptions().IgnoreExisting(true));
- }
- RawClient_->Concatenate(transaction->GetId(), sourcePaths, destinationPath, options);
- transaction->Commit();
- });
- }
- TRichYPath TClientBase::CanonizeYPath(const TRichYPath& path)
- {
- return NRawClient::CanonizeYPath(RawClient_, path);
- }
- TVector<TTableColumnarStatistics> TClientBase::GetTableColumnarStatistics(
- const TVector<TRichYPath>& paths,
- const TGetTableColumnarStatisticsOptions& options)
- {
- return RequestWithRetry<TVector<TTableColumnarStatistics>>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &paths, &options] (TMutationId /*mutationId*/) {
- return RawClient_->GetTableColumnarStatistics(TransactionId_, paths, options);
- });
- }
- TMultiTablePartitions TClientBase::GetTablePartitions(
- const TVector<TRichYPath>& paths,
- const TGetTablePartitionsOptions& options)
- {
- return RequestWithRetry<TMultiTablePartitions>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &paths, &options] (TMutationId /*mutationId*/) {
- return RawClient_->GetTablePartitions(TransactionId_, paths, options);
- });
- }
- TMaybe<TYPath> TClientBase::GetFileFromCache(
- const TString& md5Signature,
- const TYPath& cachePath,
- const TGetFileFromCacheOptions& options)
- {
- return RequestWithRetry<TMaybe<TYPath>>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &md5Signature, &cachePath, &options] (TMutationId /*mutationId*/) {
- return RawClient_->GetFileFromCache(TransactionId_, md5Signature, cachePath, options);
- });
- }
- TYPath TClientBase::PutFileToCache(
- const TYPath& filePath,
- const TString& md5Signature,
- const TYPath& cachePath,
- const TPutFileToCacheOptions& options)
- {
- return RequestWithRetry<TYPath>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &filePath, &md5Signature, &cachePath, &options] (TMutationId /*mutationId*/) {
- return RawClient_->PutFileToCache(TransactionId_, filePath, md5Signature, cachePath, options);
- });
- }
- IFileReaderPtr TClientBase::CreateBlobTableReader(
- const TYPath& path,
- const TKey& key,
- const TBlobTableReaderOptions& options)
- {
- return new TBlobTableReader(
- path,
- key,
- RawClient_,
- ClientRetryPolicy_,
- GetTransactionPinger(),
- Context_,
- TransactionId_,
- options);
- }
- IFileReaderPtr TClientBase::CreateFileReader(
- const TRichYPath& path,
- const TFileReaderOptions& options)
- {
- return new TFileReader(
- CanonizeYPath(path),
- RawClient_,
- ClientRetryPolicy_,
- GetTransactionPinger(),
- Context_,
- TransactionId_,
- options);
- }
- IFileWriterPtr TClientBase::CreateFileWriter(
- const TRichYPath& path,
- const TFileWriterOptions& options)
- {
- auto realPath = CanonizeYPath(path);
- auto exists = RequestWithRetry<bool>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &realPath] (TMutationId /*mutationId*/) {
- return RawClient_->Exists(TransactionId_, realPath.Path_);
- });
- if (!exists) {
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &realPath] (TMutationId& mutationId) {
- RawClient_->Create(mutationId, TransactionId_, realPath.Path_, NT_FILE, TCreateOptions().IgnoreExisting(true));
- });
- }
- return new TFileWriter(realPath, RawClient_, ClientRetryPolicy_, GetTransactionPinger(), Context_, TransactionId_, options);
- }
- TTableWriterPtr<::google::protobuf::Message> TClientBase::CreateTableWriter(
- const TRichYPath& path, const ::google::protobuf::Descriptor& descriptor, const TTableWriterOptions& options)
- {
- const Message* prototype = google::protobuf::MessageFactory::generated_factory()->GetPrototype(&descriptor);
- return new TTableWriter<::google::protobuf::Message>(CreateProtoWriter(path, options, prototype));
- }
- TRawTableReaderPtr TClientBase::CreateRawReader(
- const TRichYPath& path,
- const TFormat& format,
- const TTableReaderOptions& options)
- {
- return CreateClientReader(path, format, options).Get();
- }
- TRawTableWriterPtr TClientBase::CreateRawWriter(
- const TRichYPath& path,
- const TFormat& format,
- const TTableWriterOptions& options)
- {
- return ::MakeIntrusive<TRetryfulWriter>(
- RawClient_,
- ClientRetryPolicy_,
- GetTransactionPinger(),
- Context_,
- TransactionId_,
- GetWriteTableCommand(Context_.Config->ApiVersion),
- format,
- CanonizeYPath(path),
- options).Get();
- }
- IOperationPtr TClientBase::DoMap(
- const TMapOperationSpec& spec,
- ::TIntrusivePtr<IStructuredJob> mapper,
- const TOperationOptions& options)
- {
- auto operation = ::MakeIntrusive<TOperation>(GetParentClientImpl());
- auto prepareOperation = [
- this_ = ::TIntrusivePtr(this),
- operation,
- spec,
- mapper,
- options
- ] () {
- ExecuteMap(
- operation,
- ::MakeIntrusive<TOperationPreparer>(this_->GetParentClientImpl(), this_->TransactionId_),
- spec,
- mapper,
- options);
- };
- return ProcessOperation(GetParentClientImpl(), std::move(prepareOperation), std::move(operation), options);
- }
- IOperationPtr TClientBase::RawMap(
- const TRawMapOperationSpec& spec,
- ::TIntrusivePtr<IRawJob> mapper,
- const TOperationOptions& options)
- {
- auto operation = ::MakeIntrusive<TOperation>(GetParentClientImpl());
- auto prepareOperation = [
- this_=::TIntrusivePtr(this),
- operation,
- spec,
- mapper,
- options
- ] () {
- ExecuteRawMap(
- operation,
- ::MakeIntrusive<TOperationPreparer>(this_->GetParentClientImpl(), this_->TransactionId_),
- spec,
- mapper,
- options);
- };
- return ProcessOperation(GetParentClientImpl(), std::move(prepareOperation), std::move(operation), options);
- }
- IOperationPtr TClientBase::DoReduce(
- const TReduceOperationSpec& spec,
- ::TIntrusivePtr<IStructuredJob> reducer,
- const TOperationOptions& options)
- {
- auto operation = ::MakeIntrusive<TOperation>(GetParentClientImpl());
- auto prepareOperation = [
- this_=::TIntrusivePtr(this),
- operation,
- spec,
- reducer,
- options
- ] () {
- ExecuteReduce(
- operation,
- ::MakeIntrusive<TOperationPreparer>(this_->GetParentClientImpl(), this_->TransactionId_),
- spec,
- reducer,
- options);
- };
- return ProcessOperation(GetParentClientImpl(), std::move(prepareOperation), std::move(operation), options);
- }
- IOperationPtr TClientBase::RawReduce(
- const TRawReduceOperationSpec& spec,
- ::TIntrusivePtr<IRawJob> reducer,
- const TOperationOptions& options)
- {
- auto operation = ::MakeIntrusive<TOperation>(GetParentClientImpl());
- auto prepareOperation = [
- this_=::TIntrusivePtr(this),
- operation,
- spec,
- reducer,
- options
- ] () {
- ExecuteRawReduce(
- operation,
- ::MakeIntrusive<TOperationPreparer>(this_->GetParentClientImpl(), this_->TransactionId_),
- spec,
- reducer,
- options);
- };
- return ProcessOperation(GetParentClientImpl(), std::move(prepareOperation), std::move(operation), options);
- }
- IOperationPtr TClientBase::DoJoinReduce(
- const TJoinReduceOperationSpec& spec,
- ::TIntrusivePtr<IStructuredJob> reducer,
- const TOperationOptions& options)
- {
- auto operation = ::MakeIntrusive<TOperation>(GetParentClientImpl());
- auto prepareOperation = [
- this_=::TIntrusivePtr(this),
- operation,
- spec,
- reducer,
- options
- ] () {
- ExecuteJoinReduce(
- operation,
- ::MakeIntrusive<TOperationPreparer>(this_->GetParentClientImpl(), this_->TransactionId_),
- spec,
- reducer,
- options);
- };
- return ProcessOperation(GetParentClientImpl(), std::move(prepareOperation), std::move(operation), options);
- }
- IOperationPtr TClientBase::RawJoinReduce(
- const TRawJoinReduceOperationSpec& spec,
- ::TIntrusivePtr<IRawJob> reducer,
- const TOperationOptions& options)
- {
- auto operation = ::MakeIntrusive<TOperation>(GetParentClientImpl());
- auto prepareOperation = [
- this_=::TIntrusivePtr(this),
- operation,
- spec,
- reducer,
- options
- ] () {
- ExecuteRawJoinReduce(
- operation,
- ::MakeIntrusive<TOperationPreparer>(this_->GetParentClientImpl(), this_->TransactionId_),
- spec,
- reducer,
- options);
- };
- return ProcessOperation(GetParentClientImpl(), std::move(prepareOperation), std::move(operation), options);
- }
- IOperationPtr TClientBase::DoMapReduce(
- const TMapReduceOperationSpec& spec,
- ::TIntrusivePtr<IStructuredJob> mapper,
- ::TIntrusivePtr<IStructuredJob> reduceCombiner,
- ::TIntrusivePtr<IStructuredJob> reducer,
- const TOperationOptions& options)
- {
- auto operation = ::MakeIntrusive<TOperation>(GetParentClientImpl());
- auto prepareOperation = [
- this_=::TIntrusivePtr(this),
- operation,
- spec,
- mapper,
- reduceCombiner,
- reducer,
- options
- ] () {
- ExecuteMapReduce(
- operation,
- ::MakeIntrusive<TOperationPreparer>(this_->GetParentClientImpl(), this_->TransactionId_),
- spec,
- mapper,
- reduceCombiner,
- reducer,
- options);
- };
- return ProcessOperation(GetParentClientImpl(), std::move(prepareOperation), std::move(operation), options);
- }
- IOperationPtr TClientBase::RawMapReduce(
- const TRawMapReduceOperationSpec& spec,
- ::TIntrusivePtr<IRawJob> mapper,
- ::TIntrusivePtr<IRawJob> reduceCombiner,
- ::TIntrusivePtr<IRawJob> reducer,
- const TOperationOptions& options)
- {
- auto operation = ::MakeIntrusive<TOperation>(GetParentClientImpl());
- auto prepareOperation = [
- this_=::TIntrusivePtr(this),
- operation,
- spec,
- mapper,
- reduceCombiner,
- reducer,
- options
- ] () {
- ExecuteRawMapReduce(
- operation,
- ::MakeIntrusive<TOperationPreparer>(this_->GetParentClientImpl(), this_->TransactionId_),
- spec,
- mapper,
- reduceCombiner,
- reducer,
- options);
- };
- return ProcessOperation(GetParentClientImpl(), std::move(prepareOperation), std::move(operation), options);
- }
- IOperationPtr TClientBase::Sort(
- const TSortOperationSpec& spec,
- const TOperationOptions& options)
- {
- auto operation = ::MakeIntrusive<TOperation>(GetParentClientImpl());
- auto prepareOperation = [
- this_ = ::TIntrusivePtr(this),
- operation,
- spec,
- options
- ] () {
- ExecuteSort(
- operation,
- ::MakeIntrusive<TOperationPreparer>(this_->GetParentClientImpl(), this_->TransactionId_),
- spec,
- options);
- };
- return ProcessOperation(GetParentClientImpl(), std::move(prepareOperation), std::move(operation), options);
- }
- IOperationPtr TClientBase::Merge(
- const TMergeOperationSpec& spec,
- const TOperationOptions& options)
- {
- auto operation = ::MakeIntrusive<TOperation>(GetParentClientImpl());
- auto prepareOperation = [
- this_ = ::TIntrusivePtr(this),
- operation,
- spec,
- options
- ] () {
- ExecuteMerge(
- operation,
- ::MakeIntrusive<TOperationPreparer>(this_->GetParentClientImpl(), this_->TransactionId_),
- spec,
- options);
- };
- return ProcessOperation(GetParentClientImpl(), std::move(prepareOperation), std::move(operation), options);
- }
- IOperationPtr TClientBase::Erase(
- const TEraseOperationSpec& spec,
- const TOperationOptions& options)
- {
- auto operation = ::MakeIntrusive<TOperation>(GetParentClientImpl());
- auto prepareOperation = [
- this_ = ::TIntrusivePtr(this),
- operation,
- spec,
- options
- ] () {
- ExecuteErase(
- operation,
- ::MakeIntrusive<TOperationPreparer>(this_->GetParentClientImpl(), this_->TransactionId_),
- spec,
- options);
- };
- return ProcessOperation(GetParentClientImpl(), std::move(prepareOperation), std::move(operation), options);
- }
- IOperationPtr TClientBase::RemoteCopy(
- const TRemoteCopyOperationSpec& spec,
- const TOperationOptions& options)
- {
- auto operation = ::MakeIntrusive<TOperation>(GetParentClientImpl());
- auto prepareOperation = [
- this_ = ::TIntrusivePtr(this),
- operation,
- spec,
- options
- ] () {
- ExecuteRemoteCopy(
- operation,
- ::MakeIntrusive<TOperationPreparer>(this_->GetParentClientImpl(), this_->TransactionId_),
- spec,
- options);
- };
- return ProcessOperation(GetParentClientImpl(), std::move(prepareOperation), std::move(operation), options);
- }
- IOperationPtr TClientBase::RunVanilla(
- const TVanillaOperationSpec& spec,
- const TOperationOptions& options)
- {
- auto operation = ::MakeIntrusive<TOperation>(GetParentClientImpl());
- auto prepareOperation = [
- this_ = ::TIntrusivePtr(this),
- operation,
- spec,
- options
- ] () {
- ExecuteVanilla(
- operation,
- ::MakeIntrusive<TOperationPreparer>(this_->GetParentClientImpl(), this_->TransactionId_),
- spec,
- options);
- };
- return ProcessOperation(GetParentClientImpl(), std::move(prepareOperation), std::move(operation), options);
- }
- IOperationPtr TClientBase::AttachOperation(const TOperationId& operationId)
- {
- auto operation = ::MakeIntrusive<TOperation>(operationId, GetParentClientImpl());
- operation->GetBriefState(); // check that operation exists
- return operation;
- }
- EOperationBriefState TClientBase::CheckOperation(const TOperationId& operationId)
- {
- return NYT::NDetail::CheckOperation(RawClient_, ClientRetryPolicy_, operationId);
- }
- void TClientBase::AbortOperation(const TOperationId& operationId)
- {
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &operationId] (TMutationId& mutationId) {
- RawClient_->AbortOperation(mutationId, operationId);
- });
- }
- void TClientBase::CompleteOperation(const TOperationId& operationId)
- {
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &operationId] (TMutationId& mutationId) {
- RawClient_->CompleteOperation(mutationId, operationId);
- });
- }
- void TClientBase::WaitForOperation(const TOperationId& operationId)
- {
- NYT::NDetail::WaitForOperation(ClientRetryPolicy_, RawClient_, Context_, operationId);
- }
- void TClientBase::AlterTable(
- const TYPath& path,
- const TAlterTableOptions& options)
- {
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &options] (TMutationId& mutationId) {
- RawClient_->AlterTable(mutationId, TransactionId_, path, options);
- });
- }
- ::TIntrusivePtr<TClientReader> TClientBase::CreateClientReader(
- const TRichYPath& path,
- const TFormat& format,
- const TTableReaderOptions& options,
- bool useFormatFromTableAttributes)
- {
- return ::MakeIntrusive<TClientReader>(
- CanonizeYPath(path),
- RawClient_,
- ClientRetryPolicy_,
- GetTransactionPinger(),
- Context_,
- TransactionId_,
- format,
- options,
- useFormatFromTableAttributes);
- }
- THolder<TClientWriter> TClientBase::CreateClientWriter(
- const TRichYPath& path,
- const TFormat& format,
- const TTableWriterOptions& options)
- {
- auto realPath = CanonizeYPath(path);
- auto exists = RequestWithRetry<bool>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &realPath] (TMutationId /*mutationId*/) {
- return RawClient_->Exists(TransactionId_, realPath.Path_);
- });
- if (!exists) {
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &realPath] (TMutationId& mutataionId) {
- RawClient_->Create(mutataionId, TransactionId_, realPath.Path_, NT_TABLE, TCreateOptions().IgnoreExisting(true));
- });
- }
- return MakeHolder<TClientWriter>(
- realPath,
- RawClient_,
- ClientRetryPolicy_,
- GetTransactionPinger(),
- Context_,
- TransactionId_,
- format,
- options
- );
- }
- ::TIntrusivePtr<INodeReaderImpl> TClientBase::CreateNodeReader(
- const TRichYPath& path, const TTableReaderOptions& options)
- {
- auto format = TFormat::YsonBinary();
- ApplyFormatHints<TNode>(&format, options.FormatHints_);
- // Skiff is disabled here because of large header problem (see https://st.yandex-team.ru/YT-6926).
- // Revert this code to r3614168 when it is fixed.
- return new TNodeTableReader(
- CreateClientReader(path, format, options));
- }
- ::TIntrusivePtr<IYaMRReaderImpl> TClientBase::CreateYaMRReader(
- const TRichYPath& path, const TTableReaderOptions& options)
- {
- return new TYaMRTableReader(
- CreateClientReader(path, TFormat::YaMRLenval(), options, /* useFormatFromTableAttributes = */ true));
- }
- ::TIntrusivePtr<IProtoReaderImpl> TClientBase::CreateProtoReader(
- const TRichYPath& path,
- const TTableReaderOptions& options,
- const Message* prototype)
- {
- TVector<const ::google::protobuf::Descriptor*> descriptors;
- descriptors.push_back(prototype->GetDescriptor());
- if (Context_.Config->UseClientProtobuf) {
- return new TProtoTableReader(
- CreateClientReader(path, TFormat::YsonBinary(), options),
- std::move(descriptors));
- } else {
- auto format = TFormat::Protobuf({prototype->GetDescriptor()}, Context_.Config->ProtobufFormatWithDescriptors);
- return new TLenvalProtoTableReader(
- CreateClientReader(path, format, options),
- std::move(descriptors));
- }
- }
- ::TIntrusivePtr<ISkiffRowReaderImpl> TClientBase::CreateSkiffRowReader(
- const TRichYPath& path,
- const TTableReaderOptions& options,
- const ISkiffRowSkipperPtr& skipper,
- const NSkiff::TSkiffSchemaPtr& schema)
- {
- auto skiffOptions = TCreateSkiffSchemaOptions().HasRangeIndex(true);
- auto resultSchema = NYT::NDetail::CreateSkiffSchema(TVector{schema}, skiffOptions);
- return new TSkiffRowTableReader(
- CreateClientReader(path, NYT::NDetail::CreateSkiffFormat(resultSchema), options),
- resultSchema,
- {skipper},
- std::move(skiffOptions));
- }
- ::TIntrusivePtr<INodeWriterImpl> TClientBase::CreateNodeWriter(
- const TRichYPath& path, const TTableWriterOptions& options)
- {
- auto format = TFormat::YsonBinary();
- ApplyFormatHints<TNode>(&format, options.FormatHints_);
- return new TNodeTableWriter(
- CreateClientWriter(path, format, options));
- }
- ::TIntrusivePtr<IYaMRWriterImpl> TClientBase::CreateYaMRWriter(
- const TRichYPath& path, const TTableWriterOptions& options)
- {
- auto format = TFormat::YaMRLenval();
- ApplyFormatHints<TYaMRRow>(&format, options.FormatHints_);
- return new TYaMRTableWriter(
- CreateClientWriter(path, format, options));
- }
- ::TIntrusivePtr<IProtoWriterImpl> TClientBase::CreateProtoWriter(
- const TRichYPath& path,
- const TTableWriterOptions& options,
- const Message* prototype)
- {
- TVector<const ::google::protobuf::Descriptor*> descriptors;
- descriptors.push_back(prototype->GetDescriptor());
- auto pathWithSchema = path;
- if (options.InferSchema_.GetOrElse(Context_.Config->InferTableSchema) && !path.Schema_) {
- pathWithSchema.Schema(CreateTableSchema(*prototype->GetDescriptor()));
- }
- if (Context_.Config->UseClientProtobuf) {
- auto format = TFormat::YsonBinary();
- ApplyFormatHints<TNode>(&format, options.FormatHints_);
- return new TProtoTableWriter(
- CreateClientWriter(pathWithSchema, format, options),
- std::move(descriptors));
- } else {
- auto format = TFormat::Protobuf({prototype->GetDescriptor()}, Context_.Config->ProtobufFormatWithDescriptors);
- ApplyFormatHints<::google::protobuf::Message>(&format, options.FormatHints_);
- return new TLenvalProtoTableWriter(
- CreateClientWriter(pathWithSchema, format, options),
- std::move(descriptors));
- }
- }
- TBatchRequestPtr TClientBase::CreateBatchRequest()
- {
- return MakeIntrusive<TBatchRequest>(TransactionId_, GetParentClientImpl());
- }
- IClientPtr TClientBase::GetParentClient()
- {
- return GetParentClientImpl();
- }
- IRawClientPtr TClientBase::GetRawClient() const
- {
- return RawClient_;
- }
- const TClientContext& TClientBase::GetContext() const
- {
- return Context_;
- }
- const IClientRetryPolicyPtr& TClientBase::GetRetryPolicy() const
- {
- return ClientRetryPolicy_;
- }
- ////////////////////////////////////////////////////////////////////////////////
- TTransaction::TTransaction(
- const IRawClientPtr& rawClient,
- TClientPtr parentClient,
- const TClientContext& context,
- const TTransactionId& parentTransactionId,
- const TStartTransactionOptions& options)
- : TClientBase(rawClient, context, parentTransactionId, parentClient->GetRetryPolicy())
- , TransactionPinger_(parentClient->GetTransactionPinger())
- , PingableTx_(
- std::make_unique<TPingableTransaction>(
- rawClient,
- parentClient->GetRetryPolicy(),
- context,
- parentTransactionId,
- TransactionPinger_->GetChildTxPinger(),
- options))
- , ParentClient_(parentClient)
- {
- TransactionId_ = PingableTx_->GetId();
- }
- TTransaction::TTransaction(
- const IRawClientPtr& rawClient,
- TClientPtr parentClient,
- const TClientContext& context,
- const TTransactionId& transactionId,
- const TAttachTransactionOptions& options)
- : TClientBase(rawClient, context, transactionId, parentClient->GetRetryPolicy())
- , TransactionPinger_(parentClient->GetTransactionPinger())
- , PingableTx_(
- new TPingableTransaction(
- rawClient,
- parentClient->GetRetryPolicy(),
- context,
- transactionId,
- parentClient->GetTransactionPinger()->GetChildTxPinger(),
- options))
- , ParentClient_(parentClient)
- { }
- const TTransactionId& TTransaction::GetId() const
- {
- return TransactionId_;
- }
- ILockPtr TTransaction::Lock(
- const TYPath& path,
- ELockMode mode,
- const TLockOptions& options)
- {
- auto lockId = RequestWithRetry<TLockId>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &mode, &options] (TMutationId& mutationId) {
- return RawClient_->Lock(mutationId, TransactionId_, path, mode, options);
- });
- return ::MakeIntrusive<TLock>(lockId, GetParentClientImpl(), options.Waitable_);
- }
- void TTransaction::Unlock(
- const TYPath& path,
- const TUnlockOptions& options)
- {
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &options] (TMutationId& mutationId) {
- RawClient_->Unlock(mutationId, TransactionId_, path, options);
- });
- }
- void TTransaction::Commit()
- {
- PingableTx_->Commit();
- }
- void TTransaction::Abort()
- {
- PingableTx_->Abort();
- }
- void TTransaction::Ping()
- {
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this] (TMutationId /*mutationId*/) {
- RawClient_->PingTransaction(TransactionId_);
- });
- }
- void TTransaction::Detach()
- {
- PingableTx_->Detach();
- }
- ITransactionPingerPtr TTransaction::GetTransactionPinger()
- {
- return TransactionPinger_;
- }
- TClientPtr TTransaction::GetParentClientImpl()
- {
- return ParentClient_;
- }
- ////////////////////////////////////////////////////////////////////////////////
- TClient::TClient(
- IRawClientPtr rawClient,
- const TClientContext& context,
- const TTransactionId& globalId,
- IClientRetryPolicyPtr retryPolicy)
- : TClientBase(std::move(rawClient), context, globalId, retryPolicy)
- , TransactionPinger_(nullptr)
- { }
- TClient::~TClient() = default;
- ITransactionPtr TClient::AttachTransaction(
- const TTransactionId& transactionId,
- const TAttachTransactionOptions& options)
- {
- CheckShutdown();
- return MakeIntrusive<TTransaction>(RawClient_, this, Context_, transactionId, options);
- }
- void TClient::MountTable(
- const TYPath& path,
- const TMountTableOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &options] (TMutationId& mutationId) {
- RawClient_->MountTable(mutationId, path, options);
- });
- }
- void TClient::UnmountTable(
- const TYPath& path,
- const TUnmountTableOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &options] (TMutationId& mutationId) {
- RawClient_->UnmountTable(mutationId, path, options);
- });
- }
- void TClient::RemountTable(
- const TYPath& path,
- const TRemountTableOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &options] (TMutationId& mutationId) {
- RawClient_->RemountTable(mutationId, path, options);
- });
- }
- void TClient::FreezeTable(
- const TYPath& path,
- const TFreezeTableOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &options] (TMutationId /*mutationId*/) {
- RawClient_->FreezeTable(path, options);
- });
- }
- void TClient::UnfreezeTable(
- const TYPath& path,
- const TUnfreezeTableOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &options] (TMutationId /*mutationId*/) {
- RawClient_->UnfreezeTable(path, options);
- });
- }
- void TClient::ReshardTable(
- const TYPath& path,
- const TVector<TKey>& keys,
- const TReshardTableOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &keys, &options] (TMutationId& mutationId) {
- RawClient_->ReshardTableByPivotKeys(mutationId, path, keys, options);
- });
- }
- void TClient::ReshardTable(
- const TYPath& path,
- i64 tabletCount,
- const TReshardTableOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, tabletCount, &options] (TMutationId& mutationId) {
- RawClient_->ReshardTableByTabletCount(mutationId, path, tabletCount, options);
- });
- }
- void TClient::InsertRows(
- const TYPath& path,
- const TNode::TListType& rows,
- const TInsertRowsOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &rows, &options] (TMutationId /*mutationId*/) {
- RawClient_->InsertRows(path, rows, options);
- });
- }
- void TClient::DeleteRows(
- const TYPath& path,
- const TNode::TListType& keys,
- const TDeleteRowsOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &keys, &options] (TMutationId /*mutationId*/) {
- RawClient_->DeleteRows(path, keys, options);
- });
- }
- void TClient::TrimRows(
- const TYPath& path,
- i64 tabletIndex,
- i64 rowCount,
- const TTrimRowsOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, tabletIndex, rowCount, &options] (TMutationId /*mutationId*/) {
- RawClient_->TrimRows(path, tabletIndex, rowCount, options);
- });
- }
- TNode::TListType TClient::LookupRows(
- const TYPath& path,
- const TNode::TListType& keys,
- const TLookupRowsOptions& options)
- {
- CheckShutdown();
- return RequestWithRetry<TNode::TListType>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &keys, &options] (TMutationId /*mutationId*/) {
- return RawClient_->LookupRows(path, keys, options);
- });
- }
- TNode::TListType TClient::SelectRows(
- const TString& query,
- const TSelectRowsOptions& options)
- {
- CheckShutdown();
- return RequestWithRetry<TNode::TListType>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &query, &options] (TMutationId /*mutationId*/) {
- return RawClient_->SelectRows(query, options);
- });
- }
- void TClient::AlterTableReplica(const TReplicaId& replicaId, const TAlterTableReplicaOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &replicaId, &options] (TMutationId& mutationId) {
- RawClient_->AlterTableReplica(mutationId, replicaId, options);
- });
- }
- ui64 TClient::GenerateTimestamp()
- {
- CheckShutdown();
- return RequestWithRetry<ui64>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this] (TMutationId /*mutationId*/) {
- return RawClient_->GenerateTimestamp();
- });
- }
- TAuthorizationInfo TClient::WhoAmI()
- {
- CheckShutdown();
- return RequestWithRetry<TAuthorizationInfo>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this] (TMutationId /*mutationId*/) {
- return NRawClient::WhoAmI(Context_);
- });
- }
- TOperationAttributes TClient::GetOperation(
- const TOperationId& operationId,
- const TGetOperationOptions& options)
- {
- CheckShutdown();
- return RequestWithRetry<TOperationAttributes>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &operationId, &options] (TMutationId /*mutationId*/) {
- return RawClient_->GetOperation(operationId, options);
- });
- }
- TOperationAttributes TClient::GetOperation(
- const TString& alias,
- const TGetOperationOptions& options)
- {
- CheckShutdown();
- return RequestWithRetry<TOperationAttributes>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &alias, &options] (TMutationId /*mutationId*/) {
- return RawClient_->GetOperation(alias, options);
- });
- }
- TListOperationsResult TClient::ListOperations(const TListOperationsOptions& options)
- {
- CheckShutdown();
- return RequestWithRetry<TListOperationsResult>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &options] (TMutationId /*mutationId*/) {
- return RawClient_->ListOperations(options);
- });
- }
- void TClient::UpdateOperationParameters(
- const TOperationId& operationId,
- const TUpdateOperationParametersOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &operationId, &options] (TMutationId /*mutationId*/) {
- RawClient_->UpdateOperationParameters(operationId, options);
- });
- }
- TJobAttributes TClient::GetJob(
- const TOperationId& operationId,
- const TJobId& jobId,
- const TGetJobOptions& options)
- {
- CheckShutdown();
- auto result = RequestWithRetry<NYson::TYsonString>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &operationId, &jobId, &options] (TMutationId /*mutationId*/) {
- return RawClient_->GetJob(operationId, jobId, options);
- });
- return NRawClient::ParseJobAttributes(NodeFromYsonString(result.AsStringBuf()));
- }
- TListJobsResult TClient::ListJobs(
- const TOperationId& operationId,
- const TListJobsOptions& options)
- {
- CheckShutdown();
- return RequestWithRetry<TListJobsResult>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &operationId, &options] (TMutationId /*mutationId*/) {
- return RawClient_->ListJobs(operationId, options);
- });
- }
- IFileReaderPtr TClient::GetJobInput(
- const TJobId& jobId,
- const TGetJobInputOptions& options)
- {
- CheckShutdown();
- return RawClient_->GetJobInput(jobId, options);
- }
- IFileReaderPtr TClient::GetJobFailContext(
- const TOperationId& operationId,
- const TJobId& jobId,
- const TGetJobFailContextOptions& options)
- {
- CheckShutdown();
- return RawClient_->GetJobFailContext(operationId, jobId, options);
- }
- IFileReaderPtr TClient::GetJobStderr(
- const TOperationId& operationId,
- const TJobId& jobId,
- const TGetJobStderrOptions& options)
- {
- CheckShutdown();
- return RawClient_->GetJobStderr(operationId, jobId, options);
- }
- std::vector<TJobTraceEvent> TClient::GetJobTrace(
- const TOperationId& operationId,
- const TGetJobTraceOptions& options)
- {
- CheckShutdown();
- return RequestWithRetry<std::vector<TJobTraceEvent>>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &operationId, &options] (TMutationId /*mutationId*/) {
- return RawClient_->GetJobTrace(operationId, options);
- });
- }
- TNode::TListType TClient::SkyShareTable(
- const std::vector<TYPath>& tablePaths,
- const TSkyShareTableOptions& options)
- {
- CheckShutdown();
- // As documented at https://wiki.yandex-team.ru/yt/userdoc/blob_tables/#shag3.sozdajomrazdachu
- // first request returns HTTP status code 202 (Accepted). And we need retrying until we have 200 (OK).
- NHttpClient::IHttpResponsePtr response;
- do {
- response = RequestWithRetry<NHttpClient::IHttpResponsePtr>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &tablePaths, &options] (TMutationId /*mutationId*/) {
- return NRawClient::SkyShareTable(Context_, tablePaths, options);
- });
- TWaitProxy::Get()->Sleep(TDuration::Seconds(5));
- } while (response->GetStatusCode() != 200);
- if (options.KeyColumns_) {
- return NodeFromJsonString(response->GetResponse())["torrents"].AsList();
- } else {
- TNode torrent;
- torrent["key"] = TNode::CreateList();
- torrent["rbtorrent"] = response->GetResponse();
- return TNode::TListType{torrent};
- }
- }
- TCheckPermissionResponse TClient::CheckPermission(
- const TString& user,
- EPermission permission,
- const TYPath& path,
- const TCheckPermissionOptions& options)
- {
- CheckShutdown();
- return RequestWithRetry<TCheckPermissionResponse>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &user, &permission, &path, &options] (TMutationId /*mutationId*/) {
- return RawClient_->CheckPermission(user, permission, path, options);
- });
- }
- TVector<TTabletInfo> TClient::GetTabletInfos(
- const TYPath& path,
- const TVector<int>& tabletIndexes,
- const TGetTabletInfosOptions& options)
- {
- CheckShutdown();
- return RequestWithRetry<TVector<TTabletInfo>>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &path, &tabletIndexes, &options] (TMutationId /*mutationId*/) {
- return RawClient_->GetTabletInfos(path, tabletIndexes, options);
- });
- }
- void TClient::SuspendOperation(
- const TOperationId& operationId,
- const TSuspendOperationOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &operationId, &options] (TMutationId& mutationId) {
- RawClient_->SuspendOperation(mutationId, operationId, options);
- });
- }
- void TClient::ResumeOperation(
- const TOperationId& operationId,
- const TResumeOperationOptions& options)
- {
- CheckShutdown();
- RequestWithRetry<void>(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- [this, &operationId, &options] (TMutationId& mutationId) {
- RawClient_->ResumeOperation(mutationId, operationId, options);
- });
- }
- TYtPoller& TClient::GetYtPoller()
- {
- auto g = Guard(Lock_);
- if (!YtPoller_) {
- CheckShutdown();
- // We don't use current client and create new client because YtPoller_ might use
- // this client during current client shutdown.
- // That might lead to incrementing of current client refcount and double delete of current client object.
- YtPoller_ = std::make_unique<TYtPoller>(Context_, ClientRetryPolicy_);
- }
- return *YtPoller_;
- }
- void TClient::Shutdown()
- {
- auto g = Guard(Lock_);
- if (!Shutdown_.exchange(true) && YtPoller_) {
- YtPoller_->Stop();
- }
- }
- ITransactionPingerPtr TClient::GetTransactionPinger()
- {
- auto g = Guard(Lock_);
- if (!TransactionPinger_) {
- TransactionPinger_ = CreateTransactionPinger(Context_.Config);
- }
- return TransactionPinger_;
- }
- TClientPtr TClient::GetParentClientImpl()
- {
- return this;
- }
- void TClient::CheckShutdown() const
- {
- if (Shutdown_) {
- ythrow TApiUsageError() << "Call client's methods after shutdown";
- }
- }
- TClientPtr CreateClientImpl(
- const TString& serverName,
- const TCreateClientOptions& options)
- {
- TClientContext context;
- context.Config = options.Config_ ? options.Config_ : TConfig::Get();
- context.TvmOnly = options.TvmOnly_;
- context.ProxyAddress = options.ProxyAddress_;
- context.ServerName = serverName;
- ApplyProxyUrlAliasingRules(context.ServerName);
- if (context.ServerName.find('.') == TString::npos &&
- context.ServerName.find(':') == TString::npos &&
- context.ServerName.find("localhost") == TString::npos)
- {
- context.ServerName += ".yt.yandex.net";
- }
- static constexpr char httpUrlSchema[] = "http://";
- static constexpr char httpsUrlSchema[] = "https://";
- if (options.UseTLS_) {
- context.UseTLS = *options.UseTLS_;
- } else {
- context.UseTLS = context.ServerName.StartsWith(httpsUrlSchema);
- }
- if (context.ServerName.StartsWith(httpUrlSchema)) {
- if (context.UseTLS) {
- ythrow TApiUsageError() << "URL schema doesn't match UseTLS option";
- }
- context.ServerName.erase(0, sizeof(httpUrlSchema) - 1);
- }
- if (context.ServerName.StartsWith(httpsUrlSchema)) {
- if (!context.UseTLS) {
- ythrow TApiUsageError() << "URL schema doesn't match UseTLS option";
- }
- context.ServerName.erase(0, sizeof(httpsUrlSchema) - 1);
- }
- if (context.ServerName.find(':') == TString::npos) {
- context.ServerName = CreateHostNameWithPort(context.ServerName, context);
- }
- if (options.TvmOnly_) {
- context.ServerName = Format("tvm.%v", context.ServerName);
- }
- if (context.UseTLS || options.UseCoreHttpClient_) {
- context.HttpClient = NHttpClient::CreateCoreHttpClient(context.UseTLS, context.Config);
- } else {
- context.HttpClient = NHttpClient::CreateDefaultHttpClient();
- }
- context.Token = context.Config->Token;
- if (options.Token_) {
- context.Token = options.Token_;
- } else if (options.TokenPath_) {
- context.Token = TConfig::LoadTokenFromFile(options.TokenPath_);
- } else if (options.ServiceTicketAuth_) {
- context.ServiceTicketAuth = options.ServiceTicketAuth_;
- }
- context.ImpersonationUser = options.ImpersonationUser_;
- if (context.Token) {
- TConfig::ValidateToken(context.Token);
- }
- auto globalTxId = GetGuid(context.Config->GlobalTxId);
- auto retryConfigProvider = options.RetryConfigProvider_;
- if (!retryConfigProvider) {
- retryConfigProvider = CreateDefaultRetryConfigProvider();
- }
- auto rawClient = MakeIntrusive<THttpRawClient>(context);
- EnsureInitialized();
- return new TClient(
- std::move(rawClient),
- context,
- globalTxId,
- CreateDefaultClientRetryPolicy(retryConfigProvider, context.Config));
- }
- ////////////////////////////////////////////////////////////////////////////////
- } // namespace NDetail
- ////////////////////////////////////////////////////////////////////////////////
- IClientPtr CreateClient(
- const TString& serverName,
- const TCreateClientOptions& options)
- {
- return NDetail::CreateClientImpl(serverName, options);
- }
- IClientPtr CreateClientFromEnv(const TCreateClientOptions& options)
- {
- auto serverName = GetEnv("YT_PROXY");
- if (!serverName) {
- ythrow yexception() << "YT_PROXY is not set";
- }
- return CreateClient(serverName, options);
- }
- ////////////////////////////////////////////////////////////////////////////////
- } // namespace NYT
|