|
|
|
Comment: CAMEL-7082
...
Name |
Default Value |
Description |
controllerDaemon |
true |
Camel 2.10: Indicates if the controller thread should be a daemon (not blocking JVM exit). |
controllerSleepTimeMs |
100 |
Camel 2.10: Time for the controller thread to sleep between each control. |
inboundBufferSize |
8192 |
Camel 2.10: The size of the buffer when reading messages. |
minThreads |
1 |
Camel 2.10: Minimum threads waiting to service requests. |
maxThreads |
10 |
Camel 2.10: Maximum threads that will service requests. |
lowThreads |
8 |
Camel 2.13: Number of worker threads determining when the connector is considered overloaded. |
maxQueued |
0 |
Camel 2.13: Maximum number of calls that can be queued if there aren't any worker thread available to service them. If the value is '0', then no queue is used and calls are rejected if no worker thread is immediately available. If the value is '-1', then an unbounded queue is used and calls are never rejected. |
maxConnectionsPerHost |
-1 |
Camel 2.10: Maximum number of concurrent connections per host (IP address). |
maxTotalConnections |
-1 |
Camel 2.10: Maximum number of concurrent connections in total. |
outboundBufferSize |
8192 |
Camel 2.10: The size of the buffer when writing messages. |
persistingConnections |
true |
Camel 2.10: Indicates if connections should be kept alive after a call. |
pipeliningConnections |
false |
Camel 2.10: Indicates if pipelining connections are supported. |
threadMaxIdleTimeMs |
60000 |
Camel 2.10: Time for an idle thread to wait for an operation before being collected. |
useForwardedForHeader |
false |
Camel 2.10: Lookup the "X-Forwarded-For" header supported by popular proxies and caches and uses it to populate the Request.getClientAddresses() method result. This information is only safe for intermediary components within your local network. Other addresses could easily be changed by setting a fake header and should not be trusted for serious security checks. |
reuseAddress |
true |
Camel 2.10.5/2.11.1: Enable/disable the SO_REUSEADDR socket option. See java.io.ServerSocket#reuseAddress property for additional details. |
...
|
|
|