Skip to content

Commit be585b6

Browse files
authored
TRunActorParams log have been improved (#12563)
1 parent a3163da commit be585b6

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

ydb/core/fq/libs/compute/common/run_actor_params.cpp

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,17 +123,27 @@ TRunActorParams::TRunActorParams(
123123
IOutputStream& operator<<(IOutputStream& out, const TRunActorParams& params) {
124124
return out << "Run actors params: { QueryId: " << params.QueryId
125125
<< " CloudId: " << params.CloudId
126+
<< " Scope: " << params.Scope.ToString()
127+
<< " Automatic: " << params.Automatic
128+
<< " TenantName: " << params.TenantName
129+
<< " ResultBytesLimit: " << params.ResultBytesLimit
130+
<< " ExecutionTtl: " << params.ExecutionTtl
131+
<< " RequestSubmittedAt: " << params.RequestSubmittedAt
132+
<< " RequestStartedAt: " << params.RequestStartedAt
133+
<< " RestartCount: " << params.RestartCount
134+
<< " JobId: " << params.JobId
126135
<< " UserId: " << params.UserId
127136
<< " Owner: " << params.Owner
128137
<< " PreviousQueryRevision: " << params.PreviousQueryRevision
129138
<< " Connections: " << params.Connections.size()
130139
<< " Bindings: " << params.Bindings.size()
131140
<< " AccountIdSignatures: " << params.AccountIdSignatures.size()
132141
<< " QueryType: " << FederatedQuery::QueryContent::QueryType_Name(params.QueryType)
142+
<< " QuerySyntax: " << FederatedQuery::QueryContent::QuerySyntax_Name(params.QuerySyntax)
133143
<< " ExecuteMode: " << FederatedQuery::ExecuteMode_Name(params.ExecuteMode)
134144
<< " ResultId: " << params.ResultId
135145
<< " StateLoadMode: " << FederatedQuery::StateLoadMode_Name(params.StateLoadMode)
136-
<< " StreamingDisposition: " << params.StreamingDisposition
146+
<< " StreamingDisposition: " << params.StreamingDisposition.ShortDebugString()
137147
<< " Status: " << FederatedQuery::QueryMeta::ComputeStatus_Name(params.Status)
138148
<< " DqGraphs: " << params.DqGraphs.size()
139149
<< " DqGraphIndex: " << params.DqGraphIndex
@@ -144,6 +154,7 @@ IOutputStream& operator<<(IOutputStream& out, const TRunActorParams& params) {
144154
<< " ResultTtl: " << params.ResultTtl
145155
<< " QueryParameters: " << params.QueryParameters.size()
146156
<< " WorkloadManager: " << params.WorkloadManager.ShortDebugString()
157+
<< " NextUniqueId: " << params.NextUniqueId
147158
<< "}";
148159
}
149160

0 commit comments

Comments
 (0)