diff --git a/CHANGELOG.md b/CHANGELOG.md index 880107c65ff2..f15b5469dc44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## 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 * [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 3ddc0f47b1bb..901e2febcc36 100644 --- a/docs/sources/upgrading/_index.md +++ b/docs/sources/upgrading/_index.md @@ -61,6 +61,27 @@ ruler: host: consul.namespace.svc.cluster.local:8500 ``` +#### Changed defaults for some GRPC server settings +* [4435](https://github.com/grafana/loki/pull/4435) **trevorwhitney**: Change default values for two GRPC settings so querier can connect to frontend/scheduler + +This changes two default values, `grpc_server_min_time_between_pings` and `grpc_server_ping_without_stream_allowed` used by the GRPC server. + +*Previous Values*: +``` +server: + grpc_server_min_time_between_pings: '5m' + grpc_server_ping_without_stream_allowed: false +``` + +*New Values*: +``` +server: + grpc_server_min_time_between_pings: '10s' + grpc_server_ping_without_stream_allowed: true +``` + +Please manually provide the values of `5m` and `true` (respectively) in your config if you rely on those values. + -_add changes here which are unreleased_