Policies

Complex Rate Limiting Policy

You can use the Complex Rate Limiting policy to limit the number of requests based on complex counters, based on details of the request or the response

Enterprise Feature

This policy is only available as as part of our enterprise plans. It is free to try on any plan for development only purposes. If you would like to use this in production reach out to us: sales@zuplo.com

Configuration

The configuration shows how to configure the policy in the 'policies.json' document.

{ "name": "my-complex-rate-limit-inbound-policy", "policyType": "complex-rate-limit-inbound", "handler": { "export": "ComplexRateLimitInboundPolicy", "module": "$import(@zuplo/runtime)", "options": { "limits": { "apples": 2, "bananas": 3 }, "rateLimitBy": "ip", "timeWindowMinutes": 0.6 } } }

Policy Options

The options for this policy are specified below. All properties are optional unless specifically marked as required.

  • rateLimitBy <string> (Required) -
    The identifying element of the request that enforces distinct rate limits. For example, you can limit by user, ip, function or all - function allows you to specify a simple function to create a string identifier to create a rate-limit group.
    Allowed values are user, ip, function, and all. Defaults to "user".
  • limits <object> (Required) -
    A dictionary (string: number) of limits to be enforced across custom counters for this policy.
  • timeWindowMinutes <integer> (Required) -
    The time window in which the requests are rate-limited. The count restarts after each window expires.
    Defaults to 60.
  • identifier <object> -
    The function that returns dynamic configuration data. Used only with rateLimitBy=function.
    • export <string> (Required) -
      used only with rateLimitBy=function. Specifies the export to load your custom bucket function, e.g. default, rateLimitIdentifier.
    • module <string> (Required) -
      Specifies the module to load your custom bucket function, in the format $import(./modules/my-module).
  • headerMode <string> -
    Adds the retry-after header.
    Allowed values are none, and retry-after. Defaults to "retry-after".
  • throwOnFailure <boolean> -
    If true, the policy will throw an error in the event there is a problem connecting to the rate limit service.
    Defaults to false.
  • mode <string> -
    The mode of the policy. If set to async, the policy will check if the request is over the rate limit without blocking. This can result in some requests allowed over the rate limit.
    Allowed values are strict, and async. Defaults to "strict".

Using the Policy

This policy allows setting multiple limits that can optionally be overridden them programmatically.

Set Increments Programmatically#

Override the increments for limits in the current request.

If your policy is has a limit set as follows:

"limits": { "compute": 10 }

You can use this function to override the increment of the compute unites consumed on a request by calling setIncrements(context, { compute: 5 }) on a custom policy. This can be useful if you want to dynamically change the increment of a limit based on data in the response (say a header).

Read more about how policies work

Previous
Rate Limiting