public class QoSFilter extends Object implements javax.servlet.Filter
getPriority(ServletRequest)
method and are a value between 0 and the value given by the "maxPriority"
init parameter (default 10), with higher values having higher priority.
This filter is ideal to prevent wasting threads waiting for slow/limited resources such as a JDBC connection pool. It avoids the situation where all of a containers thread pool may be consumed blocking on such a slow resource. By limiting the number of active threads, a smaller thread pool may be used as the threads are not wasted waiting. Thus more memory may be available for use by the active threads.
Furthermore, this filter uses a priority when resuming waiting requests. So that if
a container is under load, and there are many requests waiting for resources,
the getPriority(ServletRequest)
method is used, so that more important
requests are serviced first. For example, this filter could be deployed with a
maxRequest limit slightly smaller than the containers thread pool and a high priority
allocated to admin users. Thus regardless of load, admin users would always be
able to access the web application.
The maxRequest limit is policed by a Semaphore
and the filter will wait a short while attempting to acquire
the semaphore. This wait is controlled by the "waitMs" init parameter and allows the expense of a suspend to be
avoided if the semaphore is shortly available. If the semaphore cannot be obtained, the request will be suspended
for the default suspend period of the container or the valued set as the "suspendMs" init parameter.
If the "managedAttr" init parameter is set to true, then this servlet is set as a ServletContext
attribute with the
filter name as the attribute name. This allows context external mechanism (eg JMX via ContextHandler.MANAGED_ATTRIBUTES
) to
manage the configuration of the filter.
Modifier and Type | Field and Description |
---|---|
protected int |
_maxRequests |
protected long |
_suspendMs |
protected long |
_waitMs |
Constructor and Description |
---|
QoSFilter() |
Modifier and Type | Method and Description |
---|---|
void |
destroy() |
void |
doFilter(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response,
javax.servlet.FilterChain chain) |
int |
getMaxRequests()
Get the maximum number of requests allowed to be processed
at the same time.
|
protected int |
getPriority(javax.servlet.ServletRequest request)
Get the request Priority.
|
long |
getSuspendMs()
Get the amount of time (in milliseconds) that the filter would suspend
a request for while waiting for the semaphore to become available.
|
long |
getWaitMs()
Get the (short) amount of time (in milliseconds) that the filter would wait
for the semaphore to become available before suspending a request.
|
void |
init(javax.servlet.FilterConfig filterConfig) |
void |
setMaxRequests(int value)
Set the maximum number of requests allowed to be processed
at the same time.
|
void |
setSuspendMs(long value)
Set the amount of time (in milliseconds) that the filter would suspend
a request for while waiting for the semaphore to become available.
|
void |
setWaitMs(long value)
Set the (short) amount of time (in milliseconds) that the filter would wait
for the semaphore to become available before suspending a request.
|
protected long _waitMs
protected long _suspendMs
protected int _maxRequests
public void init(javax.servlet.FilterConfig filterConfig)
init
in interface javax.servlet.Filter
Filter.init(javax.servlet.FilterConfig)
public void doFilter(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, javax.servlet.FilterChain chain) throws IOException, javax.servlet.ServletException
doFilter
in interface javax.servlet.Filter
IOException
javax.servlet.ServletException
Filter.doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain)
protected int getPriority(javax.servlet.ServletRequest request)
The default implementation assigns the following priorities:
request
- public void destroy()
destroy
in interface javax.servlet.Filter
Filter.destroy()
public long getWaitMs()
public void setWaitMs(long value)
value
- wait time (in milliseconds)public long getSuspendMs()
public void setSuspendMs(long value)
value
- suspend time (in milliseconds)public int getMaxRequests()
public void setMaxRequests(int value)
value
- the number of requestsCopyright © 1995-2013 Mort Bay Consulting. All Rights Reserved.