top of page
fondo banner oscuro

Tech Glossary

Throttling

Throttling is the intentional control or limitation of system resources to prevent overuse or congestion, often applied to APIs, network traffic, or application processing. Throttling can regulate the rate of incoming requests, maintain performance stability, and protect resources from being overwhelmed, particularly in systems that serve multiple clients or handle high traffic.

Types of throttling include:

Rate Limiting: Restricting the number of requests a user or client can make to a server in a set timeframe (e.g., 100 requests per minute).
Traffic Shaping: Controlling bandwidth allocation to prioritize specific types of traffic over others, useful in managing network resources for optimal performance.
Data Throttling: Used by internet service providers (ISPs) to limit data usage, often after reaching a predefined threshold, to manage network loads.
Throttling helps ensure fair usage of resources, preventing system slowdowns and service outages. For APIs, it maintains availability by limiting excessive client requests that could exhaust server resources. Many services provide customizable throttling policies, enabling administrators to adjust limits based on user needs and application demands.

bottom of page