Update 3.10.13 release notes

This commit is contained in:
Michael Klishin 2022-12-13 02:05:15 +04:00
parent 9d8bb17b80
commit ba71c2a5f8
No known key found for this signature in database
GPG Key ID: E80EDCFA0CDB21EE
1 changed files with 23 additions and 0 deletions

View File

@ -30,6 +30,18 @@ Release notes can be found on GitHub at [rabbitmq-server/release-notes](https://
GitHub issue: [#5831](https://github.com/rabbitmq/rabbitmq-server/pull/5831)
* If `handle.exe` is not available, free disk space monitor will now shell out to PowerShell
to retrieve the number of open file handles used by the node.
GitHub issue: [#6613](https://github.com/rabbitmq/rabbitmq-server/issues/6613)
* `raft.adaptive_failure_detector.poll_interval` exposes [`aten`]()'s `poll_interval` setting to
RabbitMQ users. Increasing it can reduce the probability of false positives in clusters where
inter-node communication links are used at close to maximum capacity.
The default is `5000` (5 seconds).
GitHub issue: [#6632](https://github.com/rabbitmq/rabbitmq-server/pull/6632)
* When both `disk_free_limit.relative` and `disk_free_limit.absolute`,
or both `vm_memory_high_watermark.relative` and `vm_memory_high_watermark.absolute` are set,
the absolute settings will now take precedence.
@ -74,6 +86,17 @@ Release notes can be found on GitHub at [rabbitmq-server/release-notes](https://
GitHub issue: [#6556](https://github.com/rabbitmq/rabbitmq-server/pull/6556)
### Management Plugin
#### Enhancements
* New HTTP API endpoint, `GET /api/config/effective`, returns effective node configuration.
This is an HTTP API counterpart of `rabbitmq-diagnostics environment`.
Contributed by @SimonUnge (AWS).
GitHub issue: [#6016](https://github.com/rabbitmq/rabbitmq-server/issues/6016)
### Sharding Plugin
#### Bug Fixes