[grafana] fix(unified): add ephemeral storage for search#4073
Merged
Conversation
9ccd5b5 to
e96eaef
Compare
Collaborator
|
please check DCO |
Signed-off-by: Rafael Paulovic <rafael.paulovic@grafana.com>
e96eaef to
2db20fa
Compare
3 tasks
Contributor
Author
|
@jkroepke thanks for the quick review! I'll get some feedback from my team tomorrow and merge it. |
renovate Bot
added a commit
to sdwilsh/ansible-playbooks
that referenced
this pull request
Jan 10, 2026
##### [\`10.5.4\`](https://github.com/grafana/helm-charts/releases/tag/grafana-10.5.4) The leading tool for querying and visualizing time series and metrics. #### What's Changed - \[grafana] fix(unified): add ephemeral storage for search by [@RafaelPaulovic](https://github.com/RafaelPaulovic) in [#4073](grafana/helm-charts#4073) #### New Contributors - [@RafaelPaulovic](https://github.com/RafaelPaulovic) made their first contribution in [#4073](grafana/helm-charts#4073) **Full Changelog**: <grafana/helm-charts@grafana-10.5.3...grafana-10.5.4>
renovate Bot
added a commit
to sdwilsh/ansible-playbooks
that referenced
this pull request
Jan 10, 2026
##### [\`10.5.4\`](https://github.com/grafana/helm-charts/releases/tag/grafana-10.5.4) The leading tool for querying and visualizing time series and metrics. #### What's Changed - \[grafana] fix(unified): add ephemeral storage for search by [@RafaelPaulovic](https://github.com/RafaelPaulovic) in [#4073](grafana/helm-charts#4073) #### New Contributors - [@RafaelPaulovic](https://github.com/RafaelPaulovic) made their first contribution in [#4073](grafana/helm-charts#4073) **Full Changelog**: <grafana/helm-charts@grafana-10.5.3...grafana-10.5.4>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Newer Grafana versions enable Unified Search by default, which uses Bleve for indexing. Bleve locks its index files when using filesystem mode, causing pods to hang at startup when multiple replicas share the same PVC.
We temporally worked around that by falling back to in-memory indexing if the file locks cannot be obtained (grafana/grafana#115720).
This change adds an
emptyDirvolume mounted at/var/lib/grafana-search/bleve(the default index path) so each pod gets its own ephemeral index storage, fixing the filesystem mode (no fallback to in-memory and no hanging behavior at startup).Adjacent PR: grafana/grafana#115953
Ticket: https://github.com/grafana/search-and-storage-team/issues/611