#39 tweaking API rates
This commit is contained in:
@@ -27,13 +27,12 @@ namespace OpenCand.API.Config
|
|||||||
// Default policy: 200 requests per minute with burst of 100
|
// Default policy: 200 requests per minute with burst of 100
|
||||||
options.AddFixedWindowLimiter(policyName: DefaultPolicy, options =>
|
options.AddFixedWindowLimiter(policyName: DefaultPolicy, options =>
|
||||||
{
|
{
|
||||||
options.PermitLimit = 200;
|
options.PermitLimit = 400;
|
||||||
options.Window = TimeSpan.FromMinutes(1);
|
options.Window = TimeSpan.FromMinutes(1);
|
||||||
options.QueueProcessingOrder = QueueProcessingOrder.OldestFirst;
|
options.QueueProcessingOrder = QueueProcessingOrder.OldestFirst;
|
||||||
options.QueueLimit = 100; // Burst capacity
|
options.QueueLimit = 100; // Burst capacity
|
||||||
});
|
});
|
||||||
|
|
||||||
// Candidato Search policy: 300 requests per minute with burst of 200
|
|
||||||
options.AddFixedWindowLimiter(policyName: CandidatoSearchPolicy, options =>
|
options.AddFixedWindowLimiter(policyName: CandidatoSearchPolicy, options =>
|
||||||
{
|
{
|
||||||
options.PermitLimit = 300;
|
options.PermitLimit = 300;
|
||||||
@@ -42,22 +41,12 @@ namespace OpenCand.API.Config
|
|||||||
options.QueueLimit = 200; // Burst capacity
|
options.QueueLimit = 200; // Burst capacity
|
||||||
});
|
});
|
||||||
|
|
||||||
// CPF Reveal policy: 15 requests per minute without burst
|
|
||||||
options.AddFixedWindowLimiter(policyName: CpfRevealPolicy, options =>
|
options.AddFixedWindowLimiter(policyName: CpfRevealPolicy, options =>
|
||||||
{
|
{
|
||||||
options.PermitLimit = 15;
|
options.PermitLimit = 20;
|
||||||
options.Window = TimeSpan.FromMinutes(1);
|
options.Window = TimeSpan.FromMinutes(1);
|
||||||
options.QueueProcessingOrder = QueueProcessingOrder.OldestFirst;
|
options.QueueProcessingOrder = QueueProcessingOrder.OldestFirst;
|
||||||
options.QueueLimit = 0; // No burst
|
options.QueueLimit = 5; // Burst capacity
|
||||||
});
|
|
||||||
|
|
||||||
// CPF Reveal policy: 25 requests per minute with 10 burst
|
|
||||||
options.AddFixedWindowLimiter(policyName: EstatisticaPolicy, options =>
|
|
||||||
{
|
|
||||||
options.PermitLimit = 25;
|
|
||||||
options.Window = TimeSpan.FromMinutes(1);
|
|
||||||
options.QueueProcessingOrder = QueueProcessingOrder.OldestFirst;
|
|
||||||
options.QueueLimit = 10; // No burst
|
|
||||||
});
|
});
|
||||||
|
|
||||||
options.OnRejected = async (context, token) =>
|
options.OnRejected = async (context, token) =>
|
||||||
@@ -67,7 +56,7 @@ namespace OpenCand.API.Config
|
|||||||
var retryAfter = GetRetryAfter(context);
|
var retryAfter = GetRetryAfter(context);
|
||||||
if (retryAfter.HasValue)
|
if (retryAfter.HasValue)
|
||||||
{
|
{
|
||||||
context.HttpContext.Response.Headers.Add("Retry-After", retryAfter.Value.ToString());
|
context.HttpContext.Response.Headers.Append("Retry-After", retryAfter.Value.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
await context.HttpContext.Response.WriteAsync(
|
await context.HttpContext.Response.WriteAsync(
|
||||||
|
@@ -1,10 +1,13 @@
|
|||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.AspNetCore.RateLimiting;
|
||||||
|
using OpenCand.API.Config;
|
||||||
|
|
||||||
namespace OpenCand.API.Controllers
|
namespace OpenCand.API.Controllers
|
||||||
{
|
{
|
||||||
[ApiController]
|
[ApiController]
|
||||||
[Route("v1/[controller]")]
|
[Route("v1/[controller]")]
|
||||||
[Produces("application/json")]
|
[Produces("application/json")]
|
||||||
|
[EnableRateLimiting(RateLimitingConfig.DefaultPolicy)]
|
||||||
public class BaseController : Controller
|
public class BaseController : Controller
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@@ -1,6 +1,5 @@
|
|||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.AspNetCore.RateLimiting;
|
using Microsoft.AspNetCore.RateLimiting;
|
||||||
using Microsoft.VisualBasic;
|
|
||||||
using OpenCand.API.Config;
|
using OpenCand.API.Config;
|
||||||
using OpenCand.API.Model;
|
using OpenCand.API.Model;
|
||||||
using OpenCand.API.Services;
|
using OpenCand.API.Services;
|
||||||
@@ -9,7 +8,6 @@ using OpenCand.Core.Utils;
|
|||||||
|
|
||||||
namespace OpenCand.API.Controllers
|
namespace OpenCand.API.Controllers
|
||||||
{
|
{
|
||||||
[EnableRateLimiting(RateLimitingConfig.DefaultPolicy)]
|
|
||||||
public class CandidatoController : BaseController
|
public class CandidatoController : BaseController
|
||||||
{
|
{
|
||||||
private readonly OpenCandService openCandService;
|
private readonly OpenCandService openCandService;
|
||||||
|
@@ -1,12 +1,10 @@
|
|||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.AspNetCore.RateLimiting;
|
|
||||||
using OpenCand.API.Config;
|
|
||||||
using OpenCand.API.Model;
|
using OpenCand.API.Model;
|
||||||
using OpenCand.API.Services;
|
using OpenCand.API.Services;
|
||||||
|
using static OpenCand.API.Model.GetValueSumRequest;
|
||||||
|
|
||||||
namespace OpenCand.API.Controllers
|
namespace OpenCand.API.Controllers
|
||||||
{
|
{
|
||||||
[EnableRateLimiting(RateLimitingConfig.EstatisticaPolicy)]
|
|
||||||
public class EstatisticaController : BaseController
|
public class EstatisticaController : BaseController
|
||||||
{
|
{
|
||||||
private readonly EstatisticaService estatisticaService;
|
private readonly EstatisticaService estatisticaService;
|
||||||
|
Reference in New Issue
Block a user