-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95fb38c
commit 1f36c4c
Showing
7 changed files
with
112 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
...ulti-node/container-volumes/avs-3/etc/aerospike-vector-search/aerospike-vector-search.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# 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: multi-node-avs | ||
|
||
# The AVS service listening ports, TLS and network interface. | ||
service: | ||
ports: | ||
5000: {} | ||
# 5002: | ||
# advertised-listeners: | ||
# default: | ||
# address: 127.0.0.1 | ||
# port: 5002 | ||
|
||
# Management API listening ports, TLS and network interface. | ||
manage: | ||
ports: | ||
5040: {} | ||
|
||
# Intra cluster interconnect listening ports, TLS and network interface. | ||
interconnect: | ||
ports: | ||
5001: | ||
addresses: | ||
avs-3 | ||
|
||
heartbeat: | ||
seeds: | ||
- address: avs-1 | ||
port: 5001 | ||
- address: avs-2 | ||
port: 5001 | ||
|
||
# Target Aerospike cluster | ||
storage: | ||
seeds: | ||
- aerospike: | ||
port: 3000 | ||
|
||
# The logging properties. | ||
logging: | ||
enable-console-logging: true | ||
levels: | ||
metrics-ticker: off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ http { | |
upstream app { | ||
server avs-1:5000; | ||
server avs-2:5000; | ||
server avs-3:5000; | ||
} | ||
|
||
server { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters