Class QoSHandler
- All Implemented Interfaces:
Handler, Handler.Container, Handler.Singleton, Request.Handler, Container, Destroyable, Dumpable, Dumpable.DumpableContainer, LifeCycle, Invocable
A quality of service Handler that conditionally
limits the number of concurrent requests, to provide more predictable
end-user experience in case descendant Handlers have limited
capacity.
This Handler limits the number of concurrent requests
to the number configured via setMaxRequestCount(int).
If more requests are received, they are suspended (that is, not
forwarded to the child Handler) and stored in a priority
queue.
The maximum number of suspended request can be set with
setMaxSuspendedRequestCount(int) to avoid out of memory errors.
When this limit is reached, the request will fail fast
with status code 503 (not available).
Priorities are determined via getPriority(Request),
that should return values between 0 (the lowest priority)
and positive numbers, typically in the range 0-10.
When a request that is being processed completes, the suspended request that current has the highest priority is resumed.
This Handler is ideal to avoid contending on slow/limited
resources such as a JDBC connection pool, avoiding the situation
where all server threads blocked contending on the limited
resource, therefore leaving threads free to process other
requests that do not require access to the limited resource.
Requests are resumed in priority order, so that when the server is under load, and there are many requests suspended to be processed, high priority request are processed first. For example, load balancer "ping" requests may have the highest priority, followed by requests performed by admin users, etc. so that regardless of the load, "ping" and "admin" requests will always be able to access the web application.
-
Nested Class Summary
Nested classes/interfaces inherited from class ConditionalHandler
ConditionalHandler.Abstract, ConditionalHandler.ConnectorPredicate, ConditionalHandler.DontHandle, ConditionalHandler.ElseNext, ConditionalHandler.InetAddressPatternPredicate, ConditionalHandler.MethodPredicate, ConditionalHandler.PathSpecPredicate, ConditionalHandler.PredicateSet, ConditionalHandler.Reject, ConditionalHandler.SkipNextNested classes/interfaces inherited from class Handler.Abstract
Handler.Abstract.NonBlockingNested classes/interfaces inherited from class AbstractLifeCycle
AbstractLifeCycle.AbstractLifeCycleListener, AbstractLifeCycle.StopExceptionNested classes/interfaces inherited from interface Container
Container.InheritedListener, Container.ListenerNested classes/interfaces inherited from interface Dumpable
Dumpable.DumpableContainerNested classes/interfaces inherited from interface Handler
Handler.AbstractContainer, Handler.Collection, Handler.Container, Handler.Sequence, Handler.Singleton, Handler.WrapperNested classes/interfaces inherited from interface Invocable
Invocable.Callable, Invocable.InvocationType, Invocable.ReadyTask, Invocable.TaskNested classes/interfaces inherited from interface LifeCycle
LifeCycle.ListenerNested classes/interfaces inherited from interface Request.Handler
Request.Handler.AbortException -
Field Summary
Fields inherited from interface Invocable
__nonBlocking, NOOP -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voiddoStart()Starts the managed lifecycle beans in the order they were added.protected voiddoStop()Stops the managed lifecycle beans in the reverse order they were added.protected voidfailSuspended(Request request, Response response, Callback callback, int status, Throwable failure) Fails the given suspended request/response with the given error code and failure.intGet the max duration of time a request may stay suspended.intprotected intgetPriority(Request request) Returns the priority of the given suspended request, a value greater than or equal to0.intbooleanonConditionsMet(Request request, Response response, Callback callback) Handle a request that has met the conditions.protected booleanonConditionsNotMet(Request request, Response response, Callback callback) This method is called when the request has not met the conditions and is not to be handled by this handler.voidsetMaxRequestCount(int maxRequests) Sets the max number of concurrent requests.voidsetMaxSuspend(Duration maxSuspend) Sets the max duration of time a request may stay suspended.voidsetMaxSuspendedRequestCount(int maxSuspendedRequests) Sets the max number of suspended requests.Methods inherited from class ConditionalHandler
clear, dump, exclude, exclude, exclude, excludeInetAddressPattern, excludeMethod, excludePath, from, from, handle, include, include, include, includeInetAddressPattern, includeMethod, includePath, nextHandlerMethods inherited from class Handler.Wrapper
getHandler, getInvocationType, setHandlerMethods inherited from class Handler.AbstractContainer
findContainerOf, getDescendant, getDescendants, isDynamic, setDynamic, setServerMethods inherited from class Handler.Abstract
destroy, getServerMethods inherited from class ContainerLifeCycle
addBean, addBean, addEventListener, addManaged, contains, dump, dump, dumpObjects, dumpStdErr, getBean, getBeans, getBeans, getContainedBeans, getContainedBeans, installBean, installBean, isAuto, isManaged, isUnmanaged, manage, removeBean, removeBeans, removeEventListener, setBeans, start, stop, unmanage, updateBean, updateBean, updateBeans, updateBeansMethods inherited from class AbstractLifeCycle
getEventListeners, getState, getState, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, setEventListeners, start, stop, toStringMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface Container
getCachedBeans, getEventListenersMethods inherited from interface Destroyable
destroyMethods inherited from interface Dumpable.DumpableContainer
isDumpableMethods inherited from interface Handler.Container
getContainer, getDescendant, getDescendants, getDescendantsMethods inherited from interface Handler.Singleton
getHandlers, getTail, insertHandler, setHandlerMethods inherited from interface LifeCycle
addEventListener, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeEventListener, start, stop
-
Constructor Details
-
QoSHandler
public QoSHandler() -
QoSHandler
-
-
Method Details
-
getMaxRequestCount
@ManagedAttribute(value="The maximum number of concurrent requests", readonly=true) public int getMaxRequestCount()- Returns:
- the max number of concurrent requests
-
setMaxRequestCount
public void setMaxRequestCount(int maxRequests) Sets the max number of concurrent requests.
A negative or zero value indicates to calculate a value based on heuristics, drawn from the number the size of the server thread pool and/or the number of CPU cores.
- Parameters:
maxRequests- the max number of concurrent requests
-
getMaxSuspendedRequestCount
@ManagedAttribute(value="The maximum number of suspended requests", readonly=true) public int getMaxSuspendedRequestCount()- Returns:
- the max number of suspended requests
-
setMaxSuspendedRequestCount
public void setMaxSuspendedRequestCount(int maxSuspendedRequests) Sets the max number of suspended requests.
Once the max suspended request limit is reached, the request is failed with a HTTP status of
503 Service unavailable.A negative value indicate an unlimited number of suspended requests.
- Parameters:
maxSuspendedRequests- the max number of suspended requests
-
getMaxSuspend
Get the max duration of time a request may stay suspended.- Returns:
- the max duration of time a request may stay suspended
-
setMaxSuspend
Sets the max duration of time a request may stay suspended.
Once the duration expires, the request is failed with an HTTP status of
503 Service Unavailable.Duration.ZEROmeans that the request may stay suspended forever.- Parameters:
maxSuspend- the max duration of time a request may stay suspended
-
getSuspendedRequestCount
-
doStart
Description copied from class:ContainerLifeCycleStarts the managed lifecycle beans in the order they were added.- Overrides:
doStartin classConditionalHandler- Throws:
Exception- If there was a problem starting. Will cause a transition to FAILED state
-
doStop
Description copied from class:ContainerLifeCycleStops the managed lifecycle beans in the reverse order they were added.- Overrides:
doStopin classHandler.Abstract- Throws:
Exception- If there was a problem stopping. Will cause a transition to FAILED state
-
onConditionsMet
public boolean onConditionsMet(Request request, Response response, Callback callback) throws Exception Description copied from class:ConditionalHandlerHandle a request that has met the conditions. Typically, the implementation will provide optional handling and then call theConditionalHandler.nextHandler(Request, Response, Callback)method to continue handling.- Specified by:
onConditionsMetin classConditionalHandler- Parameters:
request- The request to handleresponse- The response to generatecallback- The callback for completion- Returns:
- True if this handler will complete the callback
- Throws:
Exception- If there is a problem handling- See Also:
-
onConditionsNotMet
protected boolean onConditionsNotMet(Request request, Response response, Callback callback) throws Exception Description copied from class:ConditionalHandlerThis method is called when the request has not met the conditions and is not to be handled by this handler. Implementations may return false; send an error response; or handle the request differently.- Specified by:
onConditionsNotMetin classConditionalHandler- Parameters:
request- The request to handleresponse- The response to generatecallback- The callback for completion- Returns:
- True if this handler will complete the callback
- Throws:
Exception- If there is a problem handling- See Also:
-
getPriority
Returns the priority of the given suspended request, a value greater than or equal to
0.Priority
0is the lowest priority.The set of returned priorities should be stable over time, typically constrained in the range
0-10.- Parameters:
request- the suspended request to compute the priority for- Returns:
- the priority of the given suspended request, a value
>= 0
-
failSuspended
protected void failSuspended(Request request, Response response, Callback callback, int status, Throwable failure) Fails the given suspended request/response with the given error code and failure.
This method is called only for suspended requests, in case of timeout while suspended, or in case of failure when trying to handle a resumed request.
- Parameters:
request- the request to failresponse- the response to failcallback- the callback to completestatus- the failure status codefailure- the failure
-