Skip to content

Commit

Permalink
add docs and changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Trevor Whitney <trevorjwhitney@gmail.com>
  • Loading branch information
trevorwhitney committed Oct 12, 2021
1 parent acaf417 commit 63663a2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
21 changes: 21 additions & 0 deletions docs/sources/upgrading/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_
Expand Down

0 comments on commit 63663a2

Please sign in to comment.