...
Parameter
| Description
| Required
|
---|---|---|
inbound.http.port | The port on which the e ndpoint listener should be started . | Yes |
keystore | The KeyStore location where keys are stored. | Yes |
truststore | The TrustStore location where keys are stored. | No |
SSLVerifyClient | Used when enabling mutual verification. | No |
HttpsProtocols | The supporting protocols. | No |
SSLProtocol | The supporting SSL protocol. | No |
CertificateRevocationVerifier | Verifying certificates and status of certificate When the | No |
Info | ||
---|---|---|
| ||
|
...
|
Worker pool configuration parameters
...
Parameter | Description | Default Value |
---|---|---|
| The initial number of threads in the worker thread pool. This value can be changed accordingly based on the number of messages to be processed. The maximum value that can be specified here is the value of the inbound.worker.pool.size.max parameter. | 400 |
| The maximum number of threads in the worker thread pool. Specify a maximum limit in order to avoid performance degradation that can occur due to context switching. | 500 |
| The keep-alive time for extra threads in the worker pool. This value should be less than the socket timeout. When this time is elapsed for an extra thread, it will be destroyed. The purpose of this parameter is to optimize the usage of resources by avoiding wastage that results from having extra threads that are not utilized. | 60 |
| The length of the queue that is used to hold runnable tasks to be executed by the worker pool. The thread pool starts queuing jobs when all existing threads are busy and the pool has reached the maximum number of threads. The value for this parameter should be -1 to use an unbounded queue. If a bound queue is used and the queue gets filled to its capacity, and any further attempt to submit jobs will fail causing synapse to drop some messages. | -1 |
| Unique Identifier of the thread group. | PassThrough inbound worker thread group |
| Unique Identifier of the thread. | PassThroughInboundWorkerThread |
dispatch.filter.pattern | The regular expression that defines the proxy services and API's to expose via the inbound endpoint. Provide the .* expression to expose all proxy services and API's or provide an expression similar to ^(/foo|/bar|/services/MyProxy)$ to define a set of services to expose via the inbound endpoint. If you do not provide an expression only the defined sequence of the inbound endpoint will be accessible. | blank |
Samples
For a sample that demonstrates how an HTTPS inbound endpoint can act as a dynamic https listener, see Sample 903: HTTPS Inbound Endpoint Sample.