Skip to content

Commit

Permalink
build(deps): update AVS Python client to 2.0.0 and document minimum A… (
Browse files Browse the repository at this point in the history
#58)

* build(deps): update AVS Python client to 2.0.0 and document minimum AVS version as 0.10.0

* build(deps): update docker compose files to use AVS 0.10.0
  • Loading branch information
dwelch-spike authored Sep 10, 2024
1 parent be61a31 commit ca6e940
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .internal/docker-compose-prism-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- "--config-file"
- "/opt/aerospike/etc/aerospike/aerospike.conf"
avs:
image: aerospike/aerospike-vector-search:0.9.0
image: aerospike/aerospike-vector-search:0.10.0
# ports:
# - "5000:5000"
networks:
Expand Down
2 changes: 1 addition & 1 deletion .internal/docker-compose-quote-search-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- "--config-file"
- "/opt/aerospike/etc/aerospike/aerospike.conf"
avs:
image: aerospike/aerospike-vector-search:0.9.0
image: aerospike/aerospike-vector-search:0.10.0
# ports:
# - "5002:5002"
networks:
Expand Down
2 changes: 1 addition & 1 deletion basic-search/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ vector record insertion, and basic ANN query against the AVS server using the Py
## Prerequisites

1. A Python 3.10 - 3.11 environment and familiarity with the Python programming language (see [Setup Python Virtual Environment](../prism-image-search/README.md#setup-python-virtual-environment)).
1. An Aerospike Vector Search host (sandbox or local).
1. An Aerospike Vector Search host (sandbox or local) running AVS 0.10.0 or newer.

## Setup build Python Virtual Environment

Expand Down
2 changes: 1 addition & 1 deletion basic-search/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aerospike-vector-search==1.0.2
aerospike-vector-search==2.0.0
2 changes: 1 addition & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ docker run -d \
-p 5000:5000 \
-p 5040:5040 \
-v ./config:/etc/aerospike-vector-search \
aerospike/aerospike-vector-search:0.9.0
aerospike/aerospike-vector-search:0.10.0
```


2 changes: 1 addition & 1 deletion docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
networks:
- svc
aerospike-vector-search:
image: aerospike/aerospike-vector-search:0.9.0
image: aerospike/aerospike-vector-search:0.10.0
container_name: "aerospike-vector-search"
depends_on:
aerospike-cluster:
Expand Down
2 changes: 1 addition & 1 deletion prism-image-search/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Aerospike Vector Search (AVS) performs Approximate Nearest Neighbor(ANN) search
You don't have to know Aerospike to get started, but you do need the following:

1. A Python 3.10 - 3.11 environment and familiarity with the Python programming language (see [Setup Python Virtual Environment](./README.md#setup-python-virtual-environment)).
1. An Aerospike Vector Search host (preview environment or local).
1. An Aerospike Vector Search host (preview environment or local) running AVS 0.10.0 or newer.

## Configure AVS host

Expand Down
2 changes: 1 addition & 1 deletion prism-image-search/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
timeout: 20s
retries: 10
avs:
image: aerospike/aerospike-vector-search:0.9.0
image: aerospike/aerospike-vector-search:0.10.0
depends_on:
aerospike:
condition: service_healthy
Expand Down
2 changes: 1 addition & 1 deletion prism-image-search/prism/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TODO: Include exact versions
# Aerospike dependencies
aerospike-vector-search==1.0.2
aerospike-vector-search==2.0.0

# Flask framework
flask~=2.3.2
Expand Down
2 changes: 1 addition & 1 deletion quote-semantic-search/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Aerospike Vector Search (AVS) performs Approximate Nearest Neighbor(ANN) search
You don't have to know Aerospike to get started, but you do need the following:

1. A Python 3.10 - 3.11 environment and familiarity with the Python programming language (see [Setup Python Virtual Environment](../prism-image-search/README.md#setup-python-virtual-environment)).
1. An Aerospike Vector Search host (preview or local).
1. An Aerospike Vector Search host (preview or local) running AVS 0.10.0 or newer.

## Configure AVS host

Expand Down
2 changes: 1 addition & 1 deletion quote-semantic-search/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
depends_on:
aerospike:
condition: service_healthy
image: aerospike/aerospike-vector-search:0.9.0
image: aerospike/aerospike-vector-search:0.10.0
# ports:
# - "5002:5002"
networks:
Expand Down
2 changes: 1 addition & 1 deletion quote-semantic-search/quote-search/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TODO: Include exact versions
# Aerospike dependencies
aerospike-vector-search==1.0.2
aerospike-vector-search==2.0.0


# Flask framework
Expand Down

0 comments on commit ca6e940

Please sign in to comment.