Skip to content

Commit

Permalink
Add backpressure changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sl0thentr0py committed Aug 29, 2023
1 parent 522fb71 commit 78d7161
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,23 @@
removed at any point.

- Enable backpressure handling by default (#2298) by @sl0thentr0py

The SDK now dynamically downsamples transactions to reduce backpressure in high
throughput systems. It starts a new `Monitor` thread to perform some health checks
which decide to downsample (halved each time) in 10 second intervals till the system
is healthy again.

To disable this behavior, use:

```python
sentry_sdk.init(
# ...your usual options...
enable_backpressure_handling=False,
)
```

If your system serves heavy load, please let us know how this feature works for you!

- Stop recording spans for internal web requests to Sentry (#2297) by @szokeasaurusrex
- Add test for `ThreadPoolExecutor` (#2259) by @gggritso
- Add docstrings for `Scope.update_from_*` (#2311) by @sentrivana
Expand Down

0 comments on commit 78d7161

Please sign in to comment.