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

made some typo changes in the caching.md file #11214

Merged
merged 3 commits into from
Nov 22, 2023
Merged
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
8 changes: 4 additions & 4 deletions docs/sources/operations/caching.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ To enable and configure Memcached:

The options `host` and `service` depend on the type of installation. For example, using the `bitnami/memcached` Helm Charts with the following commands, the `service` values are always `memcached`.
```
helm upgrade --install chunk-cache -n loki bitnami/memcached -f memcached-overrides.yaml
helm upgrade --install results-cache -n loki bitnami/memcached -f memcached-overrides.yaml
helm upgrade --install chunk-cache -n loki bitnami/memcached -f memcached-overrides-chunk.yaml
helm upgrade --install results-cache -n loki bitnami/memcached -f memcached-overrides-results.yaml
```
The current Helm Chart only supports the chunk and results cache.

Expand All @@ -57,13 +57,13 @@ To enable and configure Memcached:
chunk_cache:
enabled: true
host: chunk-cache-memcached.loki.svc
service: memcache
service: memcached-client
batch_size: 256
parallelism: 10
results_cache:
enabled: true
host: results-cache-memcached.loki.svc
service: memcache
service: memcached-client
default_validity: 12h
```
1. If the Loki configuration is used, modify the following three sections in
Expand Down