1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Add in mod_jk's disablereuse analog for mod_proxy.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627728 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jim Jagielski
2008-02-14 12:55:57 +00:00
parent e5efb68d5b
commit d1858ec213
5 changed files with 35 additions and 4 deletions

View File

@@ -2,6 +2,10 @@
Changes with Apache 2.3.0
[ When backported to 2.2.x, remove entry from this file ]
*) Added 'disablereuse' option for ProxyPass which, essentially,
disables connection pooling for the backend servers.
[Jim Jagielski]
*) Activate mod_cache, mod_file_cache and mod_disc_cache as part of the
'most' set for '--enable-modules' and '--enable-shared-mods'. Include
mod_mem_cache in 'all' as well. [Dirk-Willem van Gulik]

View File

@@ -693,6 +693,16 @@ expressions</description>
in the pool the Apache will return <code>SERVER_BUSY</code> status to
the client.
</td></tr>
<tr><td>disablereuse</td>
<td>Off</td>
<td>This parameter should be used when you want to force mod_proxy
to immediately close a connection to the backend after being used, and
thus, disable its persistant connection and pool for that backend.
This helps in various situations where a firewall between Apache and
the backend server (irregardless of protocol) tends to silently
drop connections. To prevent mod_proxy from reusing the backend connection,
set this property value to <code>On</code>.
</td></tr>
<tr><td>flushpackets</td>
<td>off</td>
<td>Determines whether the proxy module will auto-flush the output

View File

@@ -176,6 +176,15 @@ static const char *set_worker_param(apr_pool_t *p,
return "KeepAlive must be On|Off";
worker->keepalive_set = 1;
}
else if (!strcasecmp(key, "disablereuse")) {
if (!strcasecmp(val, "on"))
worker->disablereuse = 1;
else if (!strcasecmp(val, "off"))
worker->disablereuse = 0;
else
return "DisableReuse must be On|Off";
worker->disablereuse_set = 1;
}
else if (!strcasecmp(key, "route")) {
/* Worker route.
*/

View File

@@ -352,6 +352,8 @@ struct proxy_worker {
char ping_timeout_set;
int lbset; /* load balancer cluster set */
char retry_set;
char disablereuse;
char disablereuse_set;
};
/*

View File

@@ -1698,7 +1698,7 @@ static apr_status_t connection_cleanup(void *theconn)
}
/* determine if the connection need to be closed */
if (conn->close || !worker->is_address_reusable) {
if (conn->close || !worker->is_address_reusable || worker->disablereuse) {
apr_pool_t *p = conn->pool;
apr_pool_clear(p);
conn = apr_pcalloc(p, sizeof(proxy_conn_rec));
@@ -1902,8 +1902,13 @@ PROXY_DECLARE(apr_status_t) ap_proxy_initialize_worker(proxy_worker *worker, ser
if (!worker->retry_set) {
worker->retry = apr_time_from_sec(PROXY_WORKER_DEFAULT_RETRY);
}
/* By default address is reusable */
worker->is_address_reusable = 1;
/* By default address is reusable unless DisableReuse is set */
if (worker->disablereuse) {
worker->is_address_reusable = 0;
}
else {
worker->is_address_reusable = 1;
}
#if APR_HAS_THREADS
ap_mpm_query(AP_MPMQ_MAX_THREADS, &mpm_threads);
@@ -2114,7 +2119,8 @@ ap_proxy_determine_connection(apr_pool_t *p, request_rec *r,
*
* TODO: Handle this much better...
*/
if (!conn->hostname || !worker->is_address_reusable ||
if (!conn->hostname || !worker->is_address_reusable ||
worker->disablereuse ||
(r->connection->keepalives &&
(r->proxyreq == PROXYREQ_PROXY || r->proxyreq == PROXYREQ_REVERSE) &&
(strcasecmp(conn->hostname, uri->hostname) != 0) ) ) {