-
Notifications
You must be signed in to change notification settings - Fork 5k
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
BZ69355: ExactRateLimiter #767
base: main
Are you sure you want to change the base?
Conversation
1. Accurate rate controller. 2. exposeHeaders
remove unused imports
add License Header
make expose headers follows draft-ietf-httpapi-ratelimit-headers spec.
@markt-asf @rmaucher wondering if this PR is appropriate? tks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm in favour of adding both the headers and the exact rate limiter. The PR just needs some refactoring and clean-up. Generally, several small changes are easier to review than one big change.
public final int getCurrentBucketPrefix() { | ||
return (int) (System.currentTimeMillis() >> this.numBits); | ||
public final int getBucketPrefix(long timestamp) { | ||
return (int) (timestamp >> this.numBits); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why make this change? It appears to increase code duplication with no obvious benefit.
|
||
/** | ||
* Returns the identifier from the servlet request, which used to work as rate limit by. | ||
* @param request | ||
* @return identifier | ||
*/ | ||
protected String getLimitByIdentifier(ServletRequest request) { | ||
return request.getRemoteAddr(); | ||
} | ||
|
||
@Override | ||
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) | ||
throws IOException, ServletException { | ||
|
||
String ipAddr = request.getRemoteAddr(); | ||
int reqCount = rateLimiter.increment(ipAddr); | ||
String identifier = getLimitByIdentifier(request); | ||
int reqCount = rateLimiter.increment(identifier); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like another, possibly separate, improvement.
timebucket.maintenance.error=定期维护时出现错误 | ||
exactRateLimiter.maintenance.error=定期维护时出现错误 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you re-use timebucket.maintenance.error
here?
/** | ||
* An accurate fixed window limiter. | ||
*/ | ||
public class ExactRateLimiter implements RateLimiter { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like there is scope for a common base class for this class and FastRateLimiter
replace #760: redo pr , change src branche from "main" to a dedicated branch "main_BZ69355".
for headers section, compliance with draft spec of "https://datatracker.ietf.org/doc/draft-ietf-httpapi-ratelimit-headers ".
comparing with no-ratelimit / or fast-ratelimiter, ab test of exact-ratelimiter performance shows that no significant throughout decrease (about -2% / -1%).