Skip to content

Commit

Permalink
Add recent sserver changes to terraform cluster.yaml template file (#216
Browse files Browse the repository at this point in the history
)
  • Loading branch information
dlmarion authored Aug 31, 2022
1 parent d6d4e95 commit ae9c465
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ tserver:
- ${ip}
%{ endfor ~}

sserver:
- default
%{ for ip in worker_ips ~}
- ${ip}
%{ endfor ~}

compaction:
coordinator:
- ${manager_ip}
Expand All @@ -24,3 +30,14 @@ compaction:
%{ for ip in worker_ips ~}
- ${ip}
%{ endfor ~}

#
# The following are used by the accumulo-cluster script to determine how many servers
# to start on each host. If the following variables are not set, then they default to 1.
# If the environment variable NUM_TSERVERS is set when running accumulo_cluster
# then its value will override what is set in this file for tservers_per_host. Likewise if
# NUM_SSERVERS is set then it will override sservers_per_host.
#
tservers_per_host: 1
sservers_per_host: 1

0 comments on commit ae9c465

Please sign in to comment.