Skip to content

Commit 8ad6200

Browse files
committed
fix: update backend order in vector scripts for consistency
1 parent d191577 commit 8ad6200

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

bindings/python/examples/scripts/_matrix_helpers.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,7 @@ PY
8383
uv pip install --python "$(command -v python3)" --user --force-reinstall "$wheel_path"
8484
fi
8585

86-
matrix_log "Removing local wheel artifact after install: $wheel_name"
87-
rm -f "$wheel_path"
86+
matrix_log "Keeping local wheel artifact for Docker-wrapped example runs: $wheel_name"
8887

8988
local arcadedb_tag
9089
arcadedb_tag="$(python3 "$py_bindings_dir/extract_version.py" --format=docker)"
@@ -103,7 +102,7 @@ print(getattr(arcadedb_embedded, '__version__', 'unknown'))
103102
PY
104103
)"
105104

106-
export MATRIX_WHEEL_PATH=""
105+
export MATRIX_WHEEL_PATH="$wheel_path"
107106
export MATRIX_WHEEL_FILE="$wheel_name"
108107
export MATRIX_WHEEL_VERSION="$wheel_version"
109108
export MATRIX_ARCADEDB_DOCKER_TAG="$arcadedb_tag"

bindings/python/examples/scripts/run_11_vector_index_build_matrix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ MILVUS_PORT=19530
4949
MILVUS_COMPOSE_VERSION="v2.6.10"
5050
MILVUS_COLLECTION="vectordata"
5151

52-
BACKENDS_RAW="faiss,lancedb,arcadedb,pgvector,qdrant,milvus"
52+
BACKENDS_RAW="arcadedb,faiss,lancedb,pgvector,qdrant,milvus"
5353
LABEL_PREFIX="sweep11"
5454

5555
if [[ $# -gt 0 ]]; then

bindings/python/examples/scripts/run_12_vector_search_matrix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ MILVUS_PORT=19530
4949
MILVUS_COMPOSE_VERSION="v2.6.10"
5050
MILVUS_COLLECTION="vectordata"
5151

52-
BACKENDS_RAW="bruteforce,milvus,faiss,lancedb,arcadedb,pgvector,qdrant"
52+
BACKENDS_RAW="arcadedb,faiss,lancedb,pgvector,,qdrant,milvus,bruteforce"
5353
BUILD_LABEL_PREFIX="sweep11"
5454
SEARCH_LABEL_PREFIX="sweep12"
5555

0 commit comments

Comments
 (0)