diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-11-18 11:29:25 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-11-18 11:40:14 +0300 |
commit | deb489489bd4b56d74a20ab1df3475e6ac72a552 (patch) | |
tree | aa32efcee5901ce7c275a06f95327499b0a09eb4 | |
parent | 5111ad584756ce8d369dee46319b232b0b6abce2 (diff) | |
download | ydb-deb489489bd4b56d74a20ab1df3475e6ac72a552.tar.gz |
Intermediate changes
commit_hash:a5695d6abae3e01238ce9328956579759caca454
-rw-r--r-- | library/cpp/svnversion/ya.make | 2 | ||||
-rw-r--r-- | yt/yt/client/driver/queue_commands.cpp | 34 |
2 files changed, 35 insertions, 1 deletions
diff --git a/library/cpp/svnversion/ya.make b/library/cpp/svnversion/ya.make index d028f45c94..27e9154644 100644 --- a/library/cpp/svnversion/ya.make +++ b/library/cpp/svnversion/ya.make @@ -6,7 +6,7 @@ SRCS( ) IF (OPENSOURCE_PROJECT == "yt-cpp-sdk") - PEERDIR(build/scripts/c_templates/) + PEERDIR(build/scripts/c_templates) ENDIF() END() diff --git a/yt/yt/client/driver/queue_commands.cpp b/yt/yt/client/driver/queue_commands.cpp index 1db333dc5d..8f8040b193 100644 --- a/yt/yt/client/driver/queue_commands.cpp +++ b/yt/yt/client/driver/queue_commands.cpp @@ -163,6 +163,11 @@ void TPullQueueCommand::Register(TRegistrar registrar) void TPullQueueCommand::DoExecute(ICommandContextPtr context) { + YT_LOG_DEBUG("Executing \"pull_queue\" command (QueuePath: %v, Offset: %v, PartitionIndex: %v)", + QueuePath, + Offset, + PartitionIndex); + auto client = context->GetClient(); auto result = WaitFor(client->PullQueue( @@ -226,6 +231,12 @@ void TPullQueueConsumerCommand::Register(TRegistrar registrar) void TPullQueueConsumerCommand::DoExecute(ICommandContextPtr context) { + YT_LOG_DEBUG("Executing \"pull_queue_consumer\" command (ConsumerPath: %v, QueuePath: %v, Offset: %v, PartitionIndex: %v)", + ConsumerPath, + QueuePath, + Offset, + PartitionIndex); + auto client = context->GetClient(); auto result = WaitFor(client->PullQueueConsumer( @@ -263,6 +274,13 @@ void TAdvanceQueueConsumerCommand::Register(TRegistrar registrar) void TAdvanceQueueConsumerCommand::DoExecute(ICommandContextPtr context) { + YT_LOG_DEBUG("Executing \"advance_queue_consumer\" command (ConsumerPath: %v, QueuePath: %v, PartitionIndex: %v, OldOffset: %v, NewOffset: %v)", + ConsumerPath, + QueuePath, + PartitionIndex, + OldOffset, + NewOffset); + auto transaction = GetTransaction(context); if (ClientSide.value_or(false)) { @@ -297,6 +315,11 @@ void TCreateQueueProducerSessionCommand::Register(TRegistrar registrar) void TCreateQueueProducerSessionCommand::DoExecute(ICommandContextPtr context) { + YT_LOG_DEBUG("Executing \"create_queue_producer_session\" command (ProducerPath: %v, QueuePath: %v, SessionId: %v)", + ProducerPath, + QueuePath, + SessionId); + auto client = context->GetClient(); auto result = WaitFor(client->CreateQueueProducerSession( @@ -327,6 +350,11 @@ void TRemoveQueueProducerSessionCommand::Register(TRegistrar registrar) void TRemoveQueueProducerSessionCommand::DoExecute(ICommandContextPtr context) { + YT_LOG_DEBUG("Executing \"remove_queue_producer_session\" command (ProducerPath: %v, QueuePath: %v, SessionId: %v)", + ProducerPath, + QueuePath, + SessionId); + auto client = context->GetClient(); WaitFor(client->RemoveQueueProducerSession( @@ -366,6 +394,12 @@ void TPushQueueProducerCommand::Register(TRegistrar registrar) void TPushQueueProducerCommand::DoExecute(ICommandContextPtr context) { + YT_LOG_DEBUG("Executing \"push_queue_producer\" command (ProducerPath: %v, QueuePath: %v, SessionId: %v, Epoch: %v)", + ProducerPath, + QueuePath, + SessionId, + Epoch); + auto tableMountCache = context->GetClient()->GetTableMountCache(); auto queueTableInfoFuture = tableMountCache->GetTableInfo(QueuePath.GetPath()); |