https://github.com/rebus-org/rebus.autoscaling
🚌 Experimental auto-scaling extension for Rebus
https://github.com/rebus-org/rebus.autoscaling
rebus
Last synced: 28 days ago
JSON representation
🚌 Experimental auto-scaling extension for Rebus
- Host: GitHub
- URL: https://github.com/rebus-org/rebus.autoscaling
- Owner: rebus-org
- License: other
- Created: 2016-09-02T13:32:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-11-15T09:36:26.000Z (over 1 year ago)
- Last Synced: 2025-04-02T20:11:59.221Z (about 2 months ago)
- Topics: rebus
- Language: C#
- Homepage: https://mookid.dk/category/rebus
- Size: 2.93 MB
- Stars: 5
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Rebus.AutoScaling
[](https://www.nuget.org/packages/Rebus.AutoScaling)
Provides an experimental auto-scaling extension for [Rebus](https://github.com/rebus-org/Rebus).

---
The auto-scaling extension will add/remove worker threads as necessary, depending on some criteria.
You enable it like this:
Configure.With(...)
.(...)
.Options(o =>
{
o.EnableAutoScaling(10);
})
.Start();in order to enable auto-scaling, adding up to 10 worker threads when things heat up.