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

Increase indexer terminationGracePeriodSeconds #101

Merged
merged 1 commit into from
Sep 18, 2024
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
2 changes: 1 addition & 1 deletion charts/quickwit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: quickwit
description: Sub-second search & analytics engine on cloud storage.
type: application
version: 0.7.0
version: 0.7.1
appVersion: "v0.8.2"
keywords:
- quickwit
Expand Down
1 change: 1 addition & 0 deletions charts/quickwit/templates/indexer-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ spec:
{{- end }}
resources:
{{- toYaml .Values.indexer.resources | nindent 12 }}
terminationGracePeriodSeconds: {{ .Values.indexer.terminationGracePeriodSeconds }}
volumes:
- name: config
configMap:
Expand Down
4 changes: 4 additions & 0 deletions charts/quickwit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,10 @@ indexer:

affinity: {}

# Long grace period is recommended to wait for all index commit_timeout_secs and splits to be published
# See https://quickwit.io/docs/configuration/index-config#indexing-settings
terminationGracePeriodSeconds: 120

persistentVolume:
enabled: false
# storage: "1Gi"
Expand Down
Loading