Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions tenants/tenant-3/elasticsearch-data-1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ port_forwards:
health_check:
type: "tcp"
port: 9300
interval: "20s"
# A cold Elasticsearch boot can outlast a 20s x 3 (~60s) failure budget,
# which restarts the VM just before the transport port opens. Keep the
# ~150s+ budget consistent across all three tenant-3 services.
interval: "30s"
timeout: "5s"
retries: 3
retries: 5
node_host_ip_env: "transport.publish_host"
cross_node_links:
- service: "elasticsearch-data-2"
Expand Down
7 changes: 5 additions & 2 deletions tenants/tenant-3/elasticsearch-data-2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ port_forwards:
health_check:
type: "tcp"
port: 9300
interval: "20s"
# A cold Elasticsearch boot can outlast a 20s x 3 (~60s) failure budget,
# which restarts the VM just before the transport port opens. Keep the
# ~150s+ budget consistent across all three tenant-3 services.
interval: "30s"
timeout: "5s"
retries: 3
retries: 5
node_host_ip_env: "transport.publish_host"
cross_node_links:
- service: "elasticsearch-data-1"
Expand Down
7 changes: 5 additions & 2 deletions tenants/tenant-3/elasticsearch-voting-only.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,12 @@ port_forwards:
health_check:
type: "tcp"
port: 9300
interval: "20s"
# First boot on 1 vCPU takes longer than a 20s x 3 (~60s) failure budget,
# so the agent kept restarting the VM before the transport port opened.
# Match the ~150s budget that tenant-2 kibana needed for slow cold starts.
interval: "30s"
timeout: "5s"
retries: 3
retries: 5
node_host_ip_env: "transport.publish_host"
cross_node_links:
- service: "elasticsearch-data-1"
Expand Down
Loading