G Andrade Aequitas Save

Fairness regulator and rate limiter

Project README

aequitas

This library is not under active maintenance; if you'd like to perform maintenance yourself, feel free to open an issue requesting access.

aequitas is a fairness regulator for Erlang/OTP and Elixir, with optional rate limiting capabilities.

It intends on allowing fair access to limited external resources, like databases and web services, amongst distinct actors.

It does so by attempting to detect outliers in ordinary workload distributions.

Example

There's a web server handling HTTP requests. We want to ensure misbehaving IP addresses don't steal (too much) system capacity from benevolent clients.

We'll name our category http_requests and start its handler. Categories and actors can be represented by any term.

ok = aequitas:start(http_requests).

Now, before we handle each HTTP request we ask aequitas whether an IP address can be granted work. We'll get a reply that's based on the statistical distribution of recent work allocations.

case aequitas:ask(http_requests, IPAddress) of
    accepted ->
        Reply = handle_request(...),
        {200, Reply};
    {rejected, _Reason} ->
        % too many requests!
        {429, <<>>}
end.

Some more definitions of the :ask function exist:

  • :ask(Category, ActorId, Opts) - for tweaking
  • :async_ask(Category, ActorId) - analogous to :ask/2 but replies asynchronously
  • :async_ask(Category, ActorId, Opts) - analogous to :ask/3 but replies asynchronously

Documentation and Reference

Documentation and reference are hosted on HexDocs.

Tested setup

  • Erlang/OTP 22 or higher
  • rebar3

Category Tweaking

The following options can be used to tweak categories, both through static and dynamic configuration.

  • {max_window_size, _}
    • Enforces a ceiling on how many of the last work acceptances will be tracked
    • Default is 10000; value must be a positive integer or infinity
  • {max_window_duration, _}
    • Enforces an eventual expiration of tracked work acceptances
    • Default is {seconds,5}; value must be of type aequitas_time_interval:t() or infinity (see type reference)
  • {min_actor_count, _}
    • Establishes the requirement of a minimum amount of tracked actors before outlier detection is performed
    • Default is 30; value must be a positive integer
  • {iqr_factor, _}
    • IQR factor used to detect outlying actors among the workload distribution
    • Default is 1.5; value must be a non-negative number
  • {max_collective_rate, _}
    • Enforces a collective rate limit, per second, on work acceptances
    • Default is infinity; value must be a non-negative integer

Work Request Tweaking

The following options can be used to tweak individual work requests, i.e. in calls to either the :ask/3 or :async_ask/3 functions.

  • {weight, _}
    • Relative weight of the work request
    • Default is 1; value must be a positive integer
  • {min_actor_count, _}
    • Overrides the min_actor_count configured globally for the category; its meaning remains but it only applies to the work request that overrode it
  • {iqr_factor, _}
    • Overrides the iqr_factor configured globally for the category; its meaning remains but it only applies to the work request that overrode it
  • return_stats
    • Return the work stats used to detect outliers together with acceptance status (see API reference)

Collective Rate Limiting

Collective rate limiting can be enabled in order to limit the total amount of work performed, per second, within a category.

Once the configured limit is reached, its enforcement should tend to homogenize the number of accepted work requests per actor, even in case of very unbalanced workloads - within the reach of the configured outlier detection, that is.

If the number of distinct actors tracked by the window is rather larger than the rate limit, and if iqr_factor is set to a very strict value, it should ultimately result in every actor performing at most one request within the period covered by the sliding window.

This contrasts with impartial rate limiting which is the scope of many other libraries, whereby the acceptance/rejection ratios per actor tend to be the same, independently of how much work each actor is effectively performing.

Work weighing is taken into account when rate limiting.

Outlier Detection

The outlier detection algorithm is based on John Tukey's fences.

The IQR (interquartile range) of the work shares per actor, encompassed by the work tracker, is updated continuously (although asynchronously). Based on this statistical measure, whenever there's a new request for work execution we determine whether the actor's present work share is an outlier to the right.

The default threshold of outlier categorization is set to Q3 + (1.5 x IQR), with IQR being Q3 - Q1 and Q1 and Q3 being the median values of the lower and higher halves of the samples, respectively.

The IQR factor can be customized, both per category and per work request, using the iqr_factor setting, as detailed previously.

Lower values will result in greater intolerance of high work-share outliers; higher values, the opposite.

The reason for picking 1.5 as the default is rather down to convention and might not be appropriate for your specific workloads. If necessary: measure, adjust, repeat.

It's possible you'll conclude the IQR technique is not adequate to solve your problem; a score of other approaches exist, with many of them being computationally (much) more expensive, - it's a trade off between correctness and availability.

Work Weighing

Work requests can be weighted by specifying the weight option when asking permission to execute. It must be a positive integer; the default value is 1.

Picking the web server example above, if we were to weight our requests based on their body size, it could become something similar to this:

ReqBodySize = req_body_size(...),
WorkWeight = 1 + ReqBodySize,
case aequitas:ask(http_requests, IPAddress, [{weight, Weight}]) of
% [...]
end.

This way, the work share of an IP address performing a few large requests could of similar magnitude to the work share of an IP address performing many small requests.

Work Tracking

Each category is backed by a process that keeps a sliding window; this sliding window helps keep track of how many work units were attributed to each actor within the last N accepted requests;

The size of the sliding window, N, is determined by constraints derived from category settings. Whenever it gets excessively large, old events will be dropped until it is no longer so.

Static Configuration

The configuration of foreknown categories can be tweaked in app.config / sys.config by declaring the overriden settings, per category, in the following fashion:

% ...
 {aequitas,
  [{categories,
   #{ http_requests =>
        [{max_window_duration, {seconds,10}}] % Override default 5s to 10s

      rare_ftp_requests =>
        [{max_window_size, 100}] % Only track up to the last 100 acceptances
   }}
  ]}
% ...

These categories will start on boot if the configuration is valid.

Proper app. configuration reloads that result in calls to the application's internal :config_change/3 callback will trigger a reload of settings in each of the relevant category processes.

Dynamic Configuration

Reconfiguration of running categories can be performed by calling aequitas:reconfigure/2, e.g.:

ok = aequitas:reconfigure(http_requests,
                          [{max_window_duration, {seconds,10}}]).

(Re)configuration performed this way will override the static category configuration present in app.config, if any.

It will also trigger a reload of settings in the relevant category process.

License

MIT License

Copyright (c) 2018-2022 Guilherme Andrade

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Generated by EDoc

Open Source Agenda is not affiliated with "G Andrade Aequitas" Project. README Source: g-andrade/aequitas
Stars
49
Open Issues
1
Last Commit
2 years ago
Repository
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating