Skip to content

Commit a77f7d1

Browse files
committed
Increase KQP Compilation timeout
1 parent 3853462 commit a77f7d1

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

ydb/library/yql/providers/generic/connector/tests/utils/run/kqprun.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,10 @@ class AppConfigRenderer:
181181
EnableScriptExecutionOperations: true
182182
}
183183
184+
TableServiceConfig {
185+
CompileTimeoutMs: 600000
186+
}
187+
184188
QueryServiceConfig {
185189
Generic {
186190
Connector {

ydb/library/yql/providers/generic/connector/tests/utils/run/parent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
from ydb.library.yql.providers.generic.connector.tests.utils.run.result import Result
77

88

9-
# 3 mins
10-
DefaultTimeout: Final = 180
9+
# 10 mins, because database startup is very slow on Github CI
10+
DefaultTimeout: Final = 600
1111

1212

1313
class Runner(ABC):

ydb/tests/fq/generic/streaming/ydb/init_ydb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ set -ex
55
export PROFILE=tests-ydb-client-$(LC_ALL=C tr -dc A-Za-z0-9 </dev/urandom | head -c 8)
66

77
# Wait until server is up
8-
timeout 30s bash -c 'until /ydb --endpoint grpc://tests-fq-generic-analytics-ydb:2136 --database /local scheme ls; do sleep 3; done'
8+
timeout 30s bash -c 'until /ydb --endpoint grpc://tests-fq-generic-streaming-ydb:2136 --database /local scheme ls; do sleep 3; done'
99

1010
# Run initialization scripts
11-
/ydb config profile create ${PROFILE} --endpoint grpc://tests-fq-generic-analytics-ydb:2136 --database /local
11+
/ydb config profile create ${PROFILE} --endpoint grpc://tests-fq-generic-streaming-ydb:2136 --database /local
1212
/bin/bash ./01_basic.sh

0 commit comments

Comments
 (0)