Skip to main content
Skip table of contents

Rate Limiting

The Rate Limiting policy controls the rate of requests that a particular client can send to an API in a fixed amount of time.

Configuration

The properties that have to be configured to use the policy are described below.


Figure 1: Rate Limiting policy attributes

Property
Description
Display NameA name that distinctly identifies the policy.
Perform Action

Action to be performed by the RateLimiter (Right now the two options are NO_ACTION and BLOCK).

Monitoring Parameter

A client-based Rate Limiter needs an identity for each entity to identify themselves for controlling the rate. The developer of the API Project needs to choose the identity for monitoring.

Parameters available now are:

  • CLIENT_SUBSCRIPTION
  • IP
  • CLIENT 
Rate Limiting Method

The mathematical function on which the Rate Limiter works.

Methods available now are:

  • Fixed Window
  • Token Based
  • Rolling Window
Rate per intervalNumber of requests allowed in a Fixed interval.
Fixed intervalTime interval for setting rate per interval (in milliseconds).
Cache map sizeA cache is implemented at the server level to manage client-level rate limiting effectively. Requests will be processed faster for users who have more frequent requests. The cache is an LRU Cache.
Client subscription list

List the Client Subscription IDs (Application ID in the Client Suscription) of clients whose rate is to be limited.

This property applies to the Monitoring Parameter "Client subscription".

Example

ClientSub_1,  ClientSub_2

Client IP list

List the IPs of clients whose rate is to be limited.

This property applies to the Monitoring Parameter "IP".

Client ID list

List the Client IDs of clients whose rate is to be limited.

This property applies to the Monitoring Parameter "Client".

Example

cl1@gmail.com, cli2@gmail.com


Multiple values can be added for Client IP, Client ID, and Client subscription list separated by commas.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.