mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-24 15:36:19 +00:00
603 B
603 B
layout, title, folder, permalink, tags
| layout | title | folder | permalink | tags | |||
|---|---|---|---|---|---|---|---|
| pattern | Throttling pattern | throttling | /patterns/throttling/ |
|
Intent
Ensure that a given tenant is not able to access resources more than the assigned limit.

Applicability
The Throttling pattern should be used:
- when a service access needs to be restricted to not have high impacts on the performance of the service.
- when multiple tenants are consuming the same resources and restriction has to be made according to the usage per tenant.