Adding throttling pattern

This commit is contained in:
Deepanshu Rastogi
2017-09-07 12:54:19 +02:00
parent a745c5d8ce
commit 05629f687b
8 changed files with 275 additions and 2 deletions

16
throttling/README.md Normal file
View File

@ -0,0 +1,16 @@
---
layout: pattern
title: Throttling pattern
folder: throttling
permalink: /patterns/throttling/
tags:
- Java
- Difficulty-Beginner
- Throttling
---
## 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.