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

docs: Fix Read Path Memory Limit Example #10512

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ Alternatively, you may configure the ingester via YAML, as in the following snip
ingester:
# Configure ingester to reject read requests when average CPU utilization is >= 0.8 cores
read_path_cpu_utilization_limit: 0.8
# Configure ingester to reject read requests when memory utilization is >= 16 GB
read_path_memory_utilization_limit: 20132659200
# Configure ingester to reject read requests when memory utilization is >= 16 GiB
read_path_memory_utilization_limit: 17179869184
```