From d0a1a9bfae6ae3030efbeae6fd8fbfb0286935d2 Mon Sep 17 00:00:00 2001 From: Dylan Guedes Date: Fri, 8 Oct 2021 17:41:58 -0300 Subject: [PATCH] Add missing CHANGELOG and upgrading guide entries. --- CHANGELOG.md | 1 + docs/sources/upgrading/_index.md | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f15b5469dc44..7fd1079d0ea9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## Main * [4400](https://github.com/grafana/loki/pull/4400) **trevorwhitney**: Config: automatically apply memberlist config too all rings when provided * [4435](https://github.com/grafana/loki/pull/4435) **trevorwhitney**: Change default values for two GRPC settings so querier can connect to frontend/scheduler +* [4440](https://github.com/grafana/loki/pull/4440) **DylanGuedes**: Config: Override distributor's default ring KV store * [4443](https://github.com/grafana/loki/pull/4443) **DylanGuedes**: Loki: Change how push API checks for contentType # 2.3.0 (2021/08/06) diff --git a/docs/sources/upgrading/_index.md b/docs/sources/upgrading/_index.md index 901e2febcc36..e38adf4388f1 100644 --- a/docs/sources/upgrading/_index.md +++ b/docs/sources/upgrading/_index.md @@ -19,6 +19,21 @@ If possible try to stay current and do sequential updates. If you want to skip v ### Loki +#### Distributor now stores ring in memory by default instead of Consul + +PR [4440](https://github.com/grafana/loki/pull/4440) **DylanGuedes**: Config: Override distributor's default ring KV store + +This change sets `inmemory` as the new default storage for the Distributor ring (previously `consul`). +The motivation is making the Distributor easier to run with default configs, by not requiring Consul anymore. +In any case, if you prefer to use Consul as the ring storage, you can set it by using the following config: + +```yaml +distributor: + ring: + kvstore: + store: consul +``` + #### Memberlist config now automatically applies to all non-configured rings PR [4400](https://github.com/grafana/loki/pull/4400) **trevorwhitney**: Config: automatically apply memberlist config too all rings when provided @@ -84,7 +99,6 @@ Please manually provide the values of `5m` and `true` (respectively) in your con -_add changes here which are unreleased_ - ## 2.3.0 ### Loki