123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428 |
- #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 "lock.h"
- #include "operation.h"
- #include "retry_transaction.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/raw_client/raw_requests.h>
- #include <yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.h>
- #include <library/cpp/json/json_reader.h>
- #include <util/generic/algorithm.h>
- #include <util/string/type.h>
- #include <util/system/env.h>
- #include <exception>
- using namespace NYT::NDetail::NRawClient;
- namespace NYT {
- ////////////////////////////////////////////////////////////////////////////////
- namespace NDetail {
- ////////////////////////////////////////////////////////////////////////////////
- TClientBase::TClientBase(
- const TClientContext& context,
- const TTransactionId& transactionId,
- IClientRetryPolicyPtr retryPolicy)
- : Context_(context)
- , TransactionId_(transactionId)
- , ClientRetryPolicy_(std::move(retryPolicy))
- { }
- ITransactionPtr TClientBase::StartTransaction(
- const TStartTransactionOptions& options)
- {
- return MakeIntrusive<TTransaction>(GetParentClientImpl(), Context_, TransactionId_, options);
- }
- TNodeId TClientBase::Create(
- const TYPath& path,
- ENodeType type,
- const TCreateOptions& options)
- {
- return NRawClient::Create(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, path, type, options);
- }
- void TClientBase::Remove(
- const TYPath& path,
- const TRemoveOptions& options)
- {
- return NRawClient::Remove(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, path, options);
- }
- bool TClientBase::Exists(
- const TYPath& path,
- const TExistsOptions& options)
- {
- return NRawClient::Exists(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, path, options);
- }
- TNode TClientBase::Get(
- const TYPath& path,
- const TGetOptions& options)
- {
- return NRawClient::Get(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, path, options);
- }
- void TClientBase::Set(
- const TYPath& path,
- const TNode& value,
- const TSetOptions& options)
- {
- NRawClient::Set(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, path, value, options);
- }
- void TClientBase::MultisetAttributes(
- const TYPath& path, const TNode::TMapType& value, const TMultisetAttributesOptions& options)
- {
- NRawClient::MultisetAttributes(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, path, value, options);
- }
- TNode::TListType TClientBase::List(
- const TYPath& path,
- const TListOptions& options)
- {
- return NRawClient::List(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, path, options);
- }
- TNodeId TClientBase::Copy(
- const TYPath& sourcePath,
- const TYPath& destinationPath,
- const TCopyOptions& options)
- {
- try {
- return NRawClient::CopyInsideMasterCell(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, sourcePath, destinationPath, options);
- } catch (const TErrorResponse& e) {
- if (e.GetError().ContainsErrorCode(NClusterErrorCodes::NObjectClient::CrossCellAdditionalPath)) {
- // Do transaction for cross cell copying.
- std::function<TNodeId(ITransactionPtr)> lambda = [this, &sourcePath, &destinationPath, &options](ITransactionPtr transaction) {
- return NRawClient::CopyWithoutRetries(Context_, transaction->GetId(), sourcePath, destinationPath, options);
- };
- return RetryTransactionWithPolicy<TNodeId>(
- this,
- lambda,
- ClientRetryPolicy_->CreatePolicyForGenericRequest()
- );
- } else {
- throw;
- }
- }
- }
- TNodeId TClientBase::Move(
- const TYPath& sourcePath,
- const TYPath& destinationPath,
- const TMoveOptions& options)
- {
- try {
- return NRawClient::MoveInsideMasterCell(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, sourcePath, destinationPath, options);
- } catch (const TErrorResponse& e) {
- if (e.GetError().ContainsErrorCode(NClusterErrorCodes::NObjectClient::CrossCellAdditionalPath)) {
- // Do transaction for cross cell moving.
- std::function<TNodeId(ITransactionPtr)> lambda = [this, &sourcePath, &destinationPath, &options](ITransactionPtr transaction) {
- return NRawClient::MoveWithoutRetries(Context_, transaction->GetId(), sourcePath, destinationPath, options);
- };
- return RetryTransactionWithPolicy<TNodeId>(
- this,
- lambda,
- ClientRetryPolicy_->CreatePolicyForGenericRequest()
- );
- } else {
- throw;
- }
- }
- }
- TNodeId TClientBase::Link(
- const TYPath& targetPath,
- const TYPath& linkPath,
- const TLinkOptions& options)
- {
- return NRawClient::Link(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, targetPath, linkPath, options);
- }
- void TClientBase::Concatenate(
- const TVector<TRichYPath>& sourcePaths,
- const TRichYPath& destinationPath,
- const TConcatenateOptions& options)
- {
- std::function<void(ITransactionPtr)> lambda = [&sourcePaths, &destinationPath, &options, this](ITransactionPtr transaction) {
- 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));
- }
- NRawClient::Concatenate(this->Context_, transaction->GetId(), sourcePaths, destinationPath, options);
- };
- RetryTransactionWithPolicy(this, lambda, ClientRetryPolicy_->CreatePolicyForGenericRequest());
- }
- TRichYPath TClientBase::CanonizeYPath(const TRichYPath& path)
- {
- return NRawClient::CanonizeYPath(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, path);
- }
- TVector<TTableColumnarStatistics> TClientBase::GetTableColumnarStatistics(
- const TVector<TRichYPath>& paths,
- const TGetTableColumnarStatisticsOptions& options)
- {
- return NRawClient::GetTableColumnarStatistics(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- Context_,
- TransactionId_,
- paths,
- options);
- }
- TMultiTablePartitions TClientBase::GetTablePartitions(
- const TVector<TRichYPath>& paths,
- const TGetTablePartitionsOptions& options)
- {
- return NRawClient::GetTablePartitions(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- Context_,
- TransactionId_,
- paths,
- options);
- }
- TMaybe<TYPath> TClientBase::GetFileFromCache(
- const TString& md5Signature,
- const TYPath& cachePath,
- const TGetFileFromCacheOptions& options)
- {
- return NRawClient::GetFileFromCache(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, md5Signature, cachePath, options);
- }
- TYPath TClientBase::PutFileToCache(
- const TYPath& filePath,
- const TString& md5Signature,
- const TYPath& cachePath,
- const TPutFileToCacheOptions& options)
- {
- return NRawClient::PutFileToCache(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, filePath, md5Signature, cachePath, options);
- }
- IFileReaderPtr TClientBase::CreateBlobTableReader(
- const TYPath& path,
- const TKey& key,
- const TBlobTableReaderOptions& options)
- {
- return new TBlobTableReader(
- path,
- key,
- ClientRetryPolicy_,
- GetTransactionPinger(),
- Context_,
- TransactionId_,
- options);
- }
- IFileReaderPtr TClientBase::CreateFileReader(
- const TRichYPath& path,
- const TFileReaderOptions& options)
- {
- return new TFileReader(
- CanonizeYPath(path),
- ClientRetryPolicy_,
- GetTransactionPinger(),
- Context_,
- TransactionId_,
- options);
- }
- IFileWriterPtr TClientBase::CreateFileWriter(
- const TRichYPath& path,
- const TFileWriterOptions& options)
- {
- auto realPath = CanonizeYPath(path);
- if (!NRawClient::Exists(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, realPath.Path_)) {
- NRawClient::Create(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, realPath.Path_, NT_FILE,
- TCreateOptions().IgnoreExisting(true));
- }
- return new TFileWriter(realPath, 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>(
- 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(ClientRetryPolicy_, Context_, operationId);
- }
- void TClientBase::AbortOperation(const TOperationId& operationId)
- {
- NRawClient::AbortOperation(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, operationId);
- }
- void TClientBase::CompleteOperation(const TOperationId& operationId)
- {
- NRawClient::CompleteOperation(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, operationId);
- }
- void TClientBase::WaitForOperation(const TOperationId& operationId)
- {
- NYT::NDetail::WaitForOperation(ClientRetryPolicy_, Context_, operationId);
- }
- void TClientBase::AlterTable(
- const TYPath& path,
- const TAlterTableOptions& options)
- {
- NRawClient::AlterTable(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, path, options);
- }
- ::TIntrusivePtr<TClientReader> TClientBase::CreateClientReader(
- const TRichYPath& path,
- const TFormat& format,
- const TTableReaderOptions& options,
- bool useFormatFromTableAttributes)
- {
- return ::MakeIntrusive<TClientReader>(
- CanonizeYPath(path),
- ClientRetryPolicy_,
- GetTransactionPinger(),
- Context_,
- TransactionId_,
- format,
- options,
- useFormatFromTableAttributes);
- }
- THolder<TClientWriter> TClientBase::CreateClientWriter(
- const TRichYPath& path,
- const TFormat& format,
- const TTableWriterOptions& options)
- {
- auto realPath = CanonizeYPath(path);
- if (!NRawClient::Exists(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, realPath.Path_)) {
- NRawClient::Create(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, realPath.Path_, NT_TABLE,
- TCreateOptions().IgnoreExisting(true));
- }
- return MakeHolder<TClientWriter>(
- realPath,
- 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();
- }
- const TClientContext& TClientBase::GetContext() const
- {
- return Context_;
- }
- const IClientRetryPolicyPtr& TClientBase::GetRetryPolicy() const
- {
- return ClientRetryPolicy_;
- }
- ////////////////////////////////////////////////////////////////////////////////
- TTransaction::TTransaction(
- TClientPtr parentClient,
- const TClientContext& context,
- const TTransactionId& parentTransactionId,
- const TStartTransactionOptions& options)
- : TClientBase(context, parentTransactionId, parentClient->GetRetryPolicy())
- , TransactionPinger_(parentClient->GetTransactionPinger())
- , PingableTx_(
- MakeHolder<TPingableTransaction>(
- parentClient->GetRetryPolicy(),
- context,
- parentTransactionId,
- TransactionPinger_->GetChildTxPinger(),
- options))
- , ParentClient_(parentClient)
- {
- TransactionId_ = PingableTx_->GetId();
- }
- TTransaction::TTransaction(
- TClientPtr parentClient,
- const TClientContext& context,
- const TTransactionId& transactionId,
- const TAttachTransactionOptions& options)
- : TClientBase(context, transactionId, parentClient->GetRetryPolicy())
- , TransactionPinger_(parentClient->GetTransactionPinger())
- , PingableTx_(
- new TPingableTransaction(
- 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 = NRawClient::Lock(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, path, mode, options);
- return ::MakeIntrusive<TLock>(lockId, GetParentClientImpl(), options.Waitable_);
- }
- void TTransaction::Unlock(
- const TYPath& path,
- const TUnlockOptions& options)
- {
- NRawClient::Unlock(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_, path, options);
- }
- void TTransaction::Commit()
- {
- PingableTx_->Commit();
- }
- void TTransaction::Abort()
- {
- PingableTx_->Abort();
- }
- void TTransaction::Ping()
- {
- PingTx(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, TransactionId_);
- }
- void TTransaction::Detach()
- {
- PingableTx_->Detach();
- }
- ITransactionPingerPtr TTransaction::GetTransactionPinger()
- {
- return TransactionPinger_;
- }
- TClientPtr TTransaction::GetParentClientImpl()
- {
- return ParentClient_;
- }
- ////////////////////////////////////////////////////////////////////////////////
- TClient::TClient(
- const TClientContext& context,
- const TTransactionId& globalId,
- IClientRetryPolicyPtr retryPolicy)
- : TClientBase(context, globalId, retryPolicy)
- , TransactionPinger_(nullptr)
- { }
- TClient::~TClient() = default;
- ITransactionPtr TClient::AttachTransaction(
- const TTransactionId& transactionId,
- const TAttachTransactionOptions& options)
- {
- CheckShutdown();
- return MakeIntrusive<TTransaction>(this, Context_, transactionId, options);
- }
- void TClient::MountTable(
- const TYPath& path,
- const TMountTableOptions& options)
- {
- CheckShutdown();
- THttpHeader header("POST", "mount_table");
- SetTabletParams(header, path, options);
- if (options.CellId_) {
- header.AddParameter("cell_id", GetGuidAsString(*options.CellId_));
- }
- header.AddParameter("freeze", options.Freeze_);
- RetryRequestWithPolicy(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, header);
- }
- void TClient::UnmountTable(
- const TYPath& path,
- const TUnmountTableOptions& options)
- {
- CheckShutdown();
- THttpHeader header("POST", "unmount_table");
- SetTabletParams(header, path, options);
- header.AddParameter("force", options.Force_);
- RetryRequestWithPolicy(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, header);
- }
- void TClient::RemountTable(
- const TYPath& path,
- const TRemountTableOptions& options)
- {
- CheckShutdown();
- THttpHeader header("POST", "remount_table");
- SetTabletParams(header, path, options);
- RetryRequestWithPolicy(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, header);
- }
- void TClient::FreezeTable(
- const TYPath& path,
- const TFreezeTableOptions& options)
- {
- CheckShutdown();
- NRawClient::FreezeTable(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, path, options);
- }
- void TClient::UnfreezeTable(
- const TYPath& path,
- const TUnfreezeTableOptions& options)
- {
- CheckShutdown();
- NRawClient::UnfreezeTable(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, path, options);
- }
- void TClient::ReshardTable(
- const TYPath& path,
- const TVector<TKey>& keys,
- const TReshardTableOptions& options)
- {
- CheckShutdown();
- THttpHeader header("POST", "reshard_table");
- SetTabletParams(header, path, options);
- header.AddParameter("pivot_keys", BuildYsonNodeFluently().List(keys));
- RetryRequestWithPolicy(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, header);
- }
- void TClient::ReshardTable(
- const TYPath& path,
- i64 tabletCount,
- const TReshardTableOptions& options)
- {
- CheckShutdown();
- THttpHeader header("POST", "reshard_table");
- SetTabletParams(header, path, options);
- header.AddParameter("tablet_count", tabletCount);
- RetryRequestWithPolicy(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, header);
- }
- void TClient::InsertRows(
- const TYPath& path,
- const TNode::TListType& rows,
- const TInsertRowsOptions& options)
- {
- CheckShutdown();
- THttpHeader header("PUT", "insert_rows");
- header.SetInputFormat(TFormat::YsonBinary());
- // TODO: use corresponding raw request
- header.MergeParameters(SerializeParametersForInsertRows(Context_.Config->Prefix, path, options));
- auto body = NodeListToYsonString(rows);
- TRequestConfig config;
- config.IsHeavy = true;
- RetryRequestWithPolicy(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, header, body, config);
- }
- void TClient::DeleteRows(
- const TYPath& path,
- const TNode::TListType& keys,
- const TDeleteRowsOptions& options)
- {
- CheckShutdown();
- return NRawClient::DeleteRows(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, path, keys, options);
- }
- void TClient::TrimRows(
- const TYPath& path,
- i64 tabletIndex,
- i64 rowCount,
- const TTrimRowsOptions& options)
- {
- CheckShutdown();
- THttpHeader header("POST", "trim_rows");
- header.AddParameter("trimmed_row_count", rowCount);
- header.AddParameter("tablet_index", tabletIndex);
- // TODO: use corresponding raw request
- header.MergeParameters(NRawClient::SerializeParametersForTrimRows(Context_.Config->Prefix, path, options));
- TRequestConfig config;
- config.IsHeavy = true;
- RetryRequestWithPolicy(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, header, {}, config);
- }
- TNode::TListType TClient::LookupRows(
- const TYPath& path,
- const TNode::TListType& keys,
- const TLookupRowsOptions& options)
- {
- CheckShutdown();
- Y_UNUSED(options);
- THttpHeader header("PUT", "lookup_rows");
- header.AddPath(AddPathPrefix(path, Context_.Config->ApiVersion));
- header.SetInputFormat(TFormat::YsonBinary());
- header.SetOutputFormat(TFormat::YsonBinary());
- header.MergeParameters(BuildYsonNodeFluently().BeginMap()
- .DoIf(options.Timeout_.Defined(), [&] (TFluentMap fluent) {
- fluent.Item("timeout").Value(static_cast<i64>(options.Timeout_->MilliSeconds()));
- })
- .Item("keep_missing_rows").Value(options.KeepMissingRows_)
- .DoIf(options.Versioned_.Defined(), [&] (TFluentMap fluent) {
- fluent.Item("versioned").Value(*options.Versioned_);
- })
- .DoIf(options.Columns_.Defined(), [&] (TFluentMap fluent) {
- fluent.Item("column_names").Value(*options.Columns_);
- })
- .EndMap());
- auto body = NodeListToYsonString(keys);
- TRequestConfig config;
- config.IsHeavy = true;
- auto result = RetryRequestWithPolicy(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, header, body, config);
- return NodeFromYsonString(result.Response, ::NYson::EYsonType::ListFragment).AsList();
- }
- TNode::TListType TClient::SelectRows(
- const TString& query,
- const TSelectRowsOptions& options)
- {
- CheckShutdown();
- THttpHeader header("GET", "select_rows");
- header.SetInputFormat(TFormat::YsonBinary());
- header.SetOutputFormat(TFormat::YsonBinary());
- header.MergeParameters(BuildYsonNodeFluently().BeginMap()
- .Item("query").Value(query)
- .DoIf(options.Timeout_.Defined(), [&] (TFluentMap fluent) {
- fluent.Item("timeout").Value(static_cast<i64>(options.Timeout_->MilliSeconds()));
- })
- .DoIf(options.InputRowLimit_.Defined(), [&] (TFluentMap fluent) {
- fluent.Item("input_row_limit").Value(*options.InputRowLimit_);
- })
- .DoIf(options.OutputRowLimit_.Defined(), [&] (TFluentMap fluent) {
- fluent.Item("output_row_limit").Value(*options.OutputRowLimit_);
- })
- .Item("range_expansion_limit").Value(options.RangeExpansionLimit_)
- .Item("fail_on_incomplete_result").Value(options.FailOnIncompleteResult_)
- .Item("verbose_logging").Value(options.VerboseLogging_)
- .Item("enable_code_cache").Value(options.EnableCodeCache_)
- .EndMap());
- TRequestConfig config;
- config.IsHeavy = true;
- auto result = RetryRequestWithPolicy(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, header, {}, config);
- return NodeFromYsonString(result.Response, ::NYson::EYsonType::ListFragment).AsList();
- }
- void TClient::AlterTableReplica(const TReplicaId& replicaId, const TAlterTableReplicaOptions& options)
- {
- CheckShutdown();
- NRawClient::AlterTableReplica(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, replicaId, options);
- }
- ui64 TClient::GenerateTimestamp()
- {
- CheckShutdown();
- THttpHeader header("GET", "generate_timestamp");
- TRequestConfig config;
- config.IsHeavy = true;
- auto requestResult = RetryRequestWithPolicy(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, header, {}, config);
- return NodeFromYsonString(requestResult.Response).AsUint64();
- }
- TAuthorizationInfo TClient::WhoAmI()
- {
- CheckShutdown();
- THttpHeader header("GET", "auth/whoami", /* isApi = */ false);
- auto requestResult = RetryRequestWithPolicy(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, header);
- TAuthorizationInfo result;
- NJson::TJsonValue jsonValue;
- bool ok = NJson::ReadJsonTree(requestResult.Response, &jsonValue, /* throwOnError = */ true);
- Y_ABORT_UNLESS(ok);
- result.Login = jsonValue["login"].GetString();
- result.Realm = jsonValue["realm"].GetString();
- return result;
- }
- TOperationAttributes TClient::GetOperation(
- const TOperationId& operationId,
- const TGetOperationOptions& options)
- {
- CheckShutdown();
- return NRawClient::GetOperation(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, operationId, options);
- }
- TOperationAttributes TClient::GetOperation(
- const TString& alias,
- const TGetOperationOptions& options)
- {
- CheckShutdown();
- return NRawClient::GetOperation(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, alias, options);
- }
- TListOperationsResult TClient::ListOperations(
- const TListOperationsOptions& options)
- {
- CheckShutdown();
- return NRawClient::ListOperations(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, options);
- }
- void TClient::UpdateOperationParameters(
- const TOperationId& operationId,
- const TUpdateOperationParametersOptions& options)
- {
- CheckShutdown();
- return NRawClient::UpdateOperationParameters(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, operationId, options);
- }
- TJobAttributes TClient::GetJob(
- const TOperationId& operationId,
- const TJobId& jobId,
- const TGetJobOptions& options)
- {
- CheckShutdown();
- return NRawClient::GetJob(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, operationId, jobId, options);
- }
- TListJobsResult TClient::ListJobs(
- const TOperationId& operationId,
- const TListJobsOptions& options)
- {
- CheckShutdown();
- return NRawClient::ListJobs(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, operationId, options);
- }
- IFileReaderPtr TClient::GetJobInput(
- const TJobId& jobId,
- const TGetJobInputOptions& options)
- {
- CheckShutdown();
- return NRawClient::GetJobInput(Context_, jobId, options);
- }
- IFileReaderPtr TClient::GetJobFailContext(
- const TOperationId& operationId,
- const TJobId& jobId,
- const TGetJobFailContextOptions& options)
- {
- CheckShutdown();
- return NRawClient::GetJobFailContext(Context_, operationId, jobId, options);
- }
- IFileReaderPtr TClient::GetJobStderr(
- const TOperationId& operationId,
- const TJobId& jobId,
- const TGetJobStderrOptions& options)
- {
- CheckShutdown();
- return NRawClient::GetJobStderr(Context_, operationId, jobId, options);
- }
- TNode::TListType TClient::SkyShareTable(
- const std::vector<TYPath>& tablePaths,
- const TSkyShareTableOptions& options)
- {
- CheckShutdown();
- return NRawClient::SkyShareTable(
- ClientRetryPolicy_->CreatePolicyForGenericRequest(),
- Context_,
- tablePaths,
- options);
- }
- TCheckPermissionResponse TClient::CheckPermission(
- const TString& user,
- EPermission permission,
- const TYPath& path,
- const TCheckPermissionOptions& options)
- {
- CheckShutdown();
- return NRawClient::CheckPermission(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, user, permission, path, options);
- }
- TVector<TTabletInfo> TClient::GetTabletInfos(
- const TYPath& path,
- const TVector<int>& tabletIndexes,
- const TGetTabletInfosOptions& options)
- {
- CheckShutdown();
- return NRawClient::GetTabletInfos(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, path, tabletIndexes, options);
- }
- void TClient::SuspendOperation(
- const TOperationId& operationId,
- const TSuspendOperationOptions& options)
- {
- CheckShutdown();
- NRawClient::SuspendOperation(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, operationId, options);
- }
- void TClient::ResumeOperation(
- const TOperationId& operationId,
- const TResumeOperationOptions& options)
- {
- CheckShutdown();
- NRawClient::ResumeOperation(ClientRetryPolicy_->CreatePolicyForGenericRequest(), Context_, 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_ = MakeHolder<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;
- }
- template <class TOptions>
- void TClient::SetTabletParams(
- THttpHeader& header,
- const TYPath& path,
- const TOptions& options)
- {
- header.AddPath(AddPathPrefix(path, Context_.Config->Prefix));
- if (options.FirstTabletIndex_) {
- header.AddParameter("first_tablet_index", *options.FirstTabletIndex_);
- }
- if (options.LastTabletIndex_) {
- header.AddParameter("last_tablet_index", *options.LastTabletIndex_);
- }
- }
- 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;
- if (context.ServerName.find('.') == TString::npos &&
- context.ServerName.find(':') == 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();
- }
- return new NDetail::TClient(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 NDetail::CreateClientImpl(serverName, options);
- }
- ////////////////////////////////////////////////////////////////////////////////
- } // namespace NYT
|