Skip to content

Commit fc97173

Browse files
authored
Merge pull request #261 from weaviate/add-fqdn-raft-settings
Add Raft FQDN settings section
2 parents 2e89053 + df5dfa5 commit fc97173

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

weaviate/values.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,17 @@ env:
297297
# setting so that replicas > voters.
298298
# RAFT_METADATA_ONLY_VOTERS: false
299299

300+
# RAFT_ENABLE_FQDN_RESOLVER setting changes the node name to node ip resolution to use DNS lookups
301+
# instead of memberlist lookup. That means that when weaviate raft component wants to contact `weaviate-0`
302+
# it's going to lookup the dns name `weaviate-0` instead of looking for the node-id in memberlist.
303+
# This is particularly useful if running in an environment where you're using services (for example k8s)
304+
# where the IP of the services is different from the actual node IP, but it proxies the connection to the node.
305+
# RAFT_ENABLE_FQDN_RESOLVER: false
306+
307+
# RAFT_FQDN_RESOLVER_TLD setting acts in combination with RAFT_ENABLE_FQDN_RESOLVER and is appended
308+
# in the format "[node-id].[tld]" when resolving a node-id to an ip.
309+
# RAFT_FQDN_RESOLVER_TLD: "weaviate-0."
310+
300311
# The aggressiveness of the Go Garbage Collector. 100 is the default value.
301312
GOGC: 100
302313

0 commit comments

Comments
 (0)