Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rate limit #324

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions FortnoxSDK.Tests/RateLimiterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,15 @@ public async Task Test_RateLimiter_NoError()
watch.Stop();

/*
* Given the rate limiter of 4 requests per second,
* 200 requests should be executed in ~50 seconds.
* Note: time per request might be longer than 250ms, hence the longer maximum allowed elapsed time
* Given the rate limiter of 4.8 requests per second (24/5),
* 200 requests should be executed in ~41 seconds.
*
* If we can increase the rate limiter to the advertised 25/5 (5 per second),
* 200 requests should be executed in ~40 seconds.
*/

Assert.AreEqual(200, counter);
Assert.IsTrue(watch.Elapsed.TotalSeconds is > 49 and < 65);
Assert.IsTrue(watch.Elapsed.TotalSeconds is > 40);
}

[Ignore("Can make other test fail due to exhausting rate limiter")]
Expand Down
6 changes: 3 additions & 3 deletions FortnoxSDK/Connectors/Base/RateLimiter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
namespace Fortnox.SDK.Connectors.Base;

/// <summary>
/// Rate limit - 4 requests per 1 seconds per token
/// Rate limit - 25 requests per 5 seconds per token
/// </summary>
internal class RateLimiter
{
private const int MaxCount = 4;
private static readonly TimeSpan Period = TimeSpan.FromSeconds(1);
private const int MaxCount = 24; // Rate limit is 25 requests over 5 second sliding window, but using the max allowed still seems to trigger the limit. 24 req per 5 sec seems to work consistently.
private static readonly TimeSpan Period = TimeSpan.FromSeconds(5);

private static readonly Dictionary<string, TimeLimiter> RateLimiters = new();

Expand Down
Loading