Skip to content

Commit 627fb4d

Browse files
authored
Increase compilation time in query replay (#9506)
1 parent 2ca8a0c commit 627fb4d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ydb/tools/query_replay_yt/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ class TQueryReplayMapper
154154
auto future = ActorSystem->Ask<TQueryReplayEvents::TEvCompileResponse>(
155155
compileActorId,
156156
THolder(new TQueryReplayEvents::TEvCompileRequest(std::move(json))),
157-
TDuration::Seconds(300));
157+
TDuration::Seconds(600));
158158

159159
return future.ExtractValueSync();
160160
}

ydb/tools/query_replay_yt/query_compiler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ class TReplayCompileActor: public TActorBootstrapped<TReplayCompileActor> {
632632
StartCompilation();
633633
Continue();
634634

635-
Schedule(TDuration::Seconds(60), new TEvents::TEvWakeup());
635+
Schedule(TDuration::Seconds(300), new TEvents::TEvWakeup());
636636
Become(&TThis::StateCompile);
637637
}
638638

0 commit comments

Comments
 (0)