Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Schmidt committed Jul 16, 2024
1 parent b9ca6f6 commit ba20b83
Show file tree
Hide file tree
Showing 13 changed files with 54 additions and 86 deletions.
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==0.6.1
aerospike-vector-search==1.0.0.dev1
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ namespace test {
}
}

namespace proximus-meta {
namespace avs-meta {
replication-factor 1
nsup-period 100

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Change the configuration for your use case.
cluster:
# Custom node-id. It will be auto-generated if not specified.
# node-id: a1

# Unique identifier for this cluster.
cluster-name: prism-image-search

# The Proximus service listening ports, TLS and network interface.
service:
ports:
5000: {}

# Management API listening ports, TLS and network interface.
manage:
ports:
5040: {}

# Intra cluster interconnect listening ports, TLS and network interface.
interconnect:
ports:
5001: {}

#heartbeat:
# seeds:
# - address: localhost
# port: 6001

# Target Aerospike cluster
storage:
seeds:
- aerospike:
port: 3000

# The logging properties.
logging:
enable-console-logging: true
levels:
metrics-ticker: off
4 changes: 2 additions & 2 deletions prism-image-search/docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ services:
- "--config-file"
- "/opt/aerospike/etc/aerospike/aerospike.conf"
avs:
image: aerospike/aerospike-proximus:0.4.0
image: aerospike/aerospike-vector-search:0.9.0
# ports:
# - "5000:5000"
networks:
- avs-demo
volumes:
- ./container-volumes/avs/etc/aerospike-vector-search:/etc/aerospike-proximus
- ./container-volumes/avs/etc/aerospike-vector-search:/etc/aerospike-vector-search
app:
build:
context: .
Expand Down
4 changes: 2 additions & 2 deletions prism-image-search/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ services:
- "--config-file"
- "/opt/aerospike/etc/aerospike/aerospike.conf"
avs:
image: aerospike/aerospike-proximus:0.4.0
image: aerospike/aerospike-vector-search:0.9.0
# ports:
# - "5000:5000"
networks:
- avs-demo
volumes:
- ./container-volumes/avs/etc/aerospike-vector-search:/etc/aerospike-proximus
- ./container-volumes/avs/etc/aerospike-vector-search:/etc/aerospike-vector-search
app:
image: aerospike/prism-search-example:latest
ports:
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==0.6.1
aerospike-vector-search==1.0.0.dev1

# 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 @@ -71,7 +71,7 @@ and [Vue.js](https://vuejs.org/). In order to developer follow the steps to
setup your Python environment.

### Setup pip
Setup pip to use Aerospike PyPI repository following instructions [here](https://github.com/citrusleaf/aerospike-proximus-client-python/tree/main#using-the-client-from-your-application-using-pip).
Setup pip to use Aerospike PyPI repository following instructions [here](https://github.com/citrusleaf/avs-client-python/tree/main#using-the-client-from-your-application-using-pip).

### Setup Python Virtual Environment

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ namespace test {
}
}

namespace proximus-meta {
namespace avs-meta {
replication-factor 1
nsup-period 100

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ interconnect:
# port: 6001

# Target Aerospike cluster
aerospike:
storage:
seeds:
- aerospike:
port: 3000
Expand Down Expand Up @@ -66,8 +66,6 @@ aerospike:

# The logging properties.
logging:
#format: json
#file: /var/log/aerospike-proximus/aerospike-proximus.log
enable-console-logging: true
levels:
metrics-ticker: off
4 changes: 2 additions & 2 deletions quote-semantic-search/docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ services:
- "--config-file"
- "/opt/aerospike/etc/aerospike/aerospike.conf"
avs:
image: aerospike/aerospike-proximus:0.4.0
image: aerospike/aerospike-vector-search:0.9.0
# ports:
# - "5002:5002"
networks:
- avs-demo
volumes:
- ./container-volumes/avs/etc/aerospike-vector-search:/etc/aerospike-proximus
- ./container-volumes/avs/etc/aerospike-vector-search:/etc/aerospike-vector-search
app:
build:
context: .
Expand Down
4 changes: 2 additions & 2 deletions quote-semantic-search/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ services:
- "--config-file"
- "/opt/aerospike/etc/aerospike/aerospike.conf"
avs:
image: aerospike/aerospike-proximus:0.4.0
image: aerospike/aerospike-vector-search:0.9.0
# ports:
# - "5002:5002"
networks:
- avs-demo
volumes:
- ./container-volumes/avs/etc/aerospike-vector-search:/etc/aerospike-proximus
- ./container-volumes/avs/etc/aerospike-vector-search:/etc/aerospike-vector-search
app:
image: aerospike/quote-search-example:latest
ports:
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==0.6.1
aerospike-vector-search==1.0.0.dev1


# Flask framework
Expand Down

0 comments on commit ba20b83

Please sign in to comment.