Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(operator): autoforget unhealthy ingesters #15703

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
19 changes: 19 additions & 0 deletions operator/internal/manifests/internal/config/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -324,6 +325,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -752,6 +754,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -1112,6 +1115,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -1473,6 +1477,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -1868,6 +1873,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -2205,6 +2211,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -2639,6 +2646,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -2972,6 +2980,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -3471,6 +3480,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -3734,6 +3744,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -3998,6 +4009,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -4263,6 +4275,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -4564,6 +4577,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -4863,6 +4877,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -5363,6 +5378,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -5541,6 +5557,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -5712,6 +5729,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down Expand Up @@ -6104,6 +6122,7 @@ ingester:
ring:
replication_factor: 1
max_chunk_age: 2h
autoforget_unhealthy: true
wal:
enabled: true
dir: /tmp/wal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ ingester:
chunk_target_size: 2097152
flush_op_timeout: 10m
max_chunk_age: 2h
autoforget_unhealthy: true
lifecycler:
final_sleep: 0s
join_after: 30s
Expand Down
Loading