Skip to content

Commit

Permalink
Increase timeout to all loadtest (ydb-platform#6631)
Browse files Browse the repository at this point in the history
  • Loading branch information
iddqdex authored Jul 12, 2024
1 parent 2757f82 commit e8fe6aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion ydb/tests/olap/lib/ydb_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,12 @@ def _try_extract_error_message(stderr: str) -> str:
'--executer', 'generic',
'--include', str(query_num),
'--iterations', str(iterations),
'--query-settings', "PRAGMA ydb.HashJoinMode='grace';" + get_external_param('query-prefix', ''),
'--plan', plan_path,
'--verbose'
]
query_preffix = get_external_param('query-prefix', '')
if query_preffix:
cmd += ['--query-settings', query_preffix]
err = None
try:
exec: yatest.common.process._Execution = yatest.common.process.execute(cmd, wait=False, check_exit_code=False)
Expand Down
2 changes: 1 addition & 1 deletion ydb/tests/olap/load/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class LoadSuiteBase:
iterations: int = 5
workload_type: WorkloadType = None
timeout: float = 300.
timeout: float = 1800.
refference: str = ''

@property
Expand Down

0 comments on commit e8fe6aa

Please sign in to comment.