store-gateway issue : busy with index header forming and lazy index-header loading when new long range queries came after replacement of a new empty disk #7539
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
the store-gateway needs to load the index header from disk or construct it from the bucket if it's not on disk before being able to serve queries. So that's exected behaviour
The metrics endpoint should be available, nothing obvious comes to mind. Some vague direction is that you said the disk throughput was reached - if the disk is network-attached, then this can also max-out the bandwidth of the node and end up throttling both disk access and network access (thus preventing /metrics from receiving the request/response)
if it slows down loading of index headers, then yes. Consider disabling lazy loading. This will increase startup time, but shouldn't impact queries. |
Beta Was this translation helpful? Give feedback.
the store-gateway needs to load the index header from disk or construct it from the bucket if it's not on disk before being able to serve queries. So that's exected behaviour
The metrics endpoint should be available, nothing obvious comes to mind. Some vague direction is that you said the disk throughput was reached - if the disk is network-attached, then this can also max-out the bandwidth of the node and end up throttling both disk access and network access (thus …