Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase the optimization time limit. #332

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions vectordb_bench/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ class config:
LOAD_TIMEOUT_1536D_500K = 2.5 * 3600 # 2.5h
LOAD_TIMEOUT_1536D_5M = 25 * 3600 # 25h

OPTIMIZE_TIMEOUT_DEFAULT = 15 * 60 # 15min
OPTIMIZE_TIMEOUT_768D_1M = 15 * 60 # 15min
OPTIMIZE_TIMEOUT_768D_10M = 2.5 * 3600 # 2.5h
OPTIMIZE_TIMEOUT_768D_100M = 25 * 3600 # 1.04d
OPTIMIZE_TIMEOUT_DEFAULT = 30 * 60 # 30min
OPTIMIZE_TIMEOUT_768D_1M = 30 * 60 # 30min
OPTIMIZE_TIMEOUT_768D_10M = 5 * 3600 # 5h
OPTIMIZE_TIMEOUT_768D_100M = 50 * 3600 # 50h


OPTIMIZE_TIMEOUT_1536D_500K = 15 * 60 # 15min
Expand Down