Skip to content

Commit 4b56d3a

Browse files
authored
Update query_replay (#11586)
1 parent 3bca1eb commit 4b56d3a

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

ydb/tools/query_replay_yt/common_deps.inc

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,22 +62,30 @@ SET(YDB_REPLAY_PEERDIRS
6262
ydb/services/rate_limiter
6363
ydb/services/ydb
6464
ydb/library/yql/udfs/common/clickhouse/client
65-
ydb/library/yql/udfs/common/datetime
65+
ydb/library/yql/udfs/common/knn
66+
ydb/library/yql/udfs/common/roaring
67+
yql/essentials/udfs/common/compress_base
6668
yql/essentials/udfs/common/datetime2
6769
yql/essentials/udfs/common/digest
70+
yql/essentials/udfs/common/file
6871
yql/essentials/udfs/common/histogram
6972
yql/essentials/udfs/common/hyperloglog
7073
yql/essentials/udfs/common/hyperscan
74+
yql/essentials/udfs/common/ip_base
7175
yql/essentials/udfs/common/json
7276
yql/essentials/udfs/common/json2
7377
yql/essentials/udfs/common/math
7478
yql/essentials/udfs/common/pire
79+
yql/essentials/udfs/common/protobuf
7580
yql/essentials/udfs/common/re2
7681
yql/essentials/udfs/common/set
7782
yql/essentials/udfs/common/stat
83+
yql/essentials/udfs/common/streaming
7884
yql/essentials/udfs/common/string
7985
yql/essentials/udfs/common/top
8086
yql/essentials/udfs/common/topfreq
87+
yql/essentials/udfs/common/unicode_base
88+
yql/essentials/udfs/common/url_base
8189
yql/essentials/udfs/common/yson2
8290
yql/essentials/udfs/logs/dsv
8391
yql/essentials/sql/pg_dummy

ydb/tools/query_replay_yt/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ int main(int argc, const char** argv) {
282282
if (!config.CoreTablePath.empty()) {
283283
spec.CoreTablePath(config.CoreTablePath);
284284
}
285+
spec.MaxFailedJobCount(10000);
285286

286287
client->Map(spec, new TQueryReplayMapper(config.UdfFiles, config.ActorSystemThreadsCount, config.EnableAntlr4Parser, config.YqlLogLevel));
287288

ydb/tools/query_replay_yt/query_compiler.cpp

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

637-
Schedule(TDuration::Seconds(300), new TEvents::TEvWakeup());
637+
Schedule(TDuration::Seconds(60), new TEvents::TEvWakeup());
638638
Become(&TThis::StateCompile);
639639
}
640640

0 commit comments

Comments
 (0)