We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug We reject write requests when replicas are lagging or remote store segment store is lagging - https://github.com/opensearch-project/OpenSearch/blob/main/server/src/main/java/org/opensearch/action/bulk/TransportShardBulkAction.java#L534
We should include this rejections in our node stats in a separate blob of its own on the lines of shard_indexing_pressure/search backpressure
Proposed blobs are
"remote_store_pressure" : { "rejections" : count, }, "segment_replication_pressure" : { "rejections" : count, },
Alternate
We can have one blob as well to account for both of them
"remote_store_pressure" : { "upload_rejections" : count, "lag_rejections" : count },
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
We reject write requests when replicas are lagging or remote store segment store is lagging - https://github.com/opensearch-project/OpenSearch/blob/main/server/src/main/java/org/opensearch/action/bulk/TransportShardBulkAction.java#L534
We should include this rejections in our node stats in a separate blob of its own on the lines of shard_indexing_pressure/search backpressure
Proposed blobs are
Alternate
We can have one blob as well to account for both of them
The text was updated successfully, but these errors were encountered: