blob: 61fb0663f5c8898cf7610ea5d8435b55a912fb96 [file] [log] [blame]
{
"connector": {
"class": "org.apache.camel.kafkaconnector.netty.CamelNettySinkConnector",
"artifactId": "camel-netty-kafka-connector",
"groupId": "org.apache.camel.kafkaconnector",
"id": "camel-netty-sink",
"type": "sink",
"version": "0.7.0",
"description": "Socket level networking using TCP or UDP with the Netty 4.x."
},
"properties": {
"camel.sink.path.protocol": {
"name": "camel.sink.path.protocol",
"description": "The protocol to use which can be tcp or udp. One of: [tcp] [udp]",
"priority": "HIGH",
"required": "true",
"enum": [
"tcp",
"udp"
]
},
"camel.sink.path.host": {
"name": "camel.sink.path.host",
"description": "The hostname. For the consumer the hostname is localhost or 0.0.0.0. For the producer the hostname is the remote host to connect to",
"priority": "HIGH",
"required": "true"
},
"camel.sink.path.port": {
"name": "camel.sink.path.port",
"description": "The host port number",
"priority": "HIGH",
"required": "true"
},
"camel.sink.endpoint.disconnect": {
"name": "camel.sink.endpoint.disconnect",
"description": "Whether or not to disconnect(close) from Netty Channel right after use. Can be used for both consumer and producer.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.keepAlive": {
"name": "camel.sink.endpoint.keepAlive",
"description": "Setting to ensure socket is not closed due to inactivity",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.reuseAddress": {
"name": "camel.sink.endpoint.reuseAddress",
"description": "Setting to facilitate socket multiplexing",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.reuseChannel": {
"name": "camel.sink.endpoint.reuseChannel",
"description": "This option allows producers and consumers (in client mode) to reuse the same Netty Channel for the lifecycle of processing the Exchange. This is useful if you need to call a server multiple times in a Camel route and want to use the same network connection. When using this, the channel is not returned to the connection pool until the Exchange is done; or disconnected if the disconnect option is set to true. The reused Channel is stored on the Exchange as an exchange property with the key NettyConstants#NETTY_CHANNEL which allows you to obtain the channel during routing and use it as well.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sync": {
"name": "camel.sink.endpoint.sync",
"description": "Setting to set endpoint as one-way or request-response",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.tcpNoDelay": {
"name": "camel.sink.endpoint.tcpNoDelay",
"description": "Setting to improve TCP protocol performance",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.connectTimeout": {
"name": "camel.sink.endpoint.connectTimeout",
"description": "Time to wait for a socket connection to be available. Value is in milliseconds.",
"defaultValue": "10000",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.lazyStartProducer": {
"name": "camel.sink.endpoint.lazyStartProducer",
"description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.requestTimeout": {
"name": "camel.sink.endpoint.requestTimeout",
"description": "Allows to use a timeout for the Netty producer when calling a remote server. By default no timeout is in use. The value is in milli seconds, so eg 30000 is 30 seconds. The requestTimeout is using Netty's ReadTimeoutHandler to trigger the timeout.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.clientInitializerFactory": {
"name": "camel.sink.endpoint.clientInitializerFactory",
"description": "To use a custom ClientInitializerFactory",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.correlationManager": {
"name": "camel.sink.endpoint.correlationManager",
"description": "To use a custom correlation manager to manage how request and reply messages are mapped when using request\/reply with the netty producer. This should only be used if you have a way to map requests together with replies such as if there is correlation ids in both the request and reply messages. This can be used if you want to multiplex concurrent messages on the same channel (aka connection) in netty. When doing this you must have a way to correlate the request and reply messages so you can store the right reply on the inflight Camel Exchange before its continued routed. We recommend extending the TimeoutCorrelationManagerSupport when you build custom correlation managers. This provides support for timeout and other complexities you otherwise would need to implement as well. See also the producerPoolEnabled option for more details.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.lazyChannelCreation": {
"name": "camel.sink.endpoint.lazyChannelCreation",
"description": "Channels can be lazily created to avoid exceptions, if the remote server is not up and running when the Camel producer is started.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.producerPoolEnabled": {
"name": "camel.sink.endpoint.producerPoolEnabled",
"description": "Whether producer pool is enabled or not. Important: If you turn this off then a single shared connection is used for the producer, also if you are doing request\/reply. That means there is a potential issue with interleaved responses if replies comes back out-of-order. Therefore you need to have a correlation id in both the request and reply messages so you can properly correlate the replies to the Camel callback that is responsible for continue processing the message in Camel. To do this you need to implement NettyCamelStateCorrelationManager as correlation manager and configure it via the correlationManager option. See also the correlationManager option for more details.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.producerPoolMaxActive": {
"name": "camel.sink.endpoint.producerPoolMaxActive",
"description": "Sets the cap on the number of objects that can be allocated by the pool (checked out to clients, or idle awaiting checkout) at a given time. Use a negative value for no limit.",
"defaultValue": "-1",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.producerPoolMaxIdle": {
"name": "camel.sink.endpoint.producerPoolMaxIdle",
"description": "Sets the cap on the number of idle instances in the pool.",
"defaultValue": "100",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.producerPoolMinEvictableIdle": {
"name": "camel.sink.endpoint.producerPoolMinEvictableIdle",
"description": "Sets the minimum amount of time (value in millis) an object may sit idle in the pool before it is eligible for eviction by the idle object evictor.",
"defaultValue": "300000L",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.producerPoolMinIdle": {
"name": "camel.sink.endpoint.producerPoolMinIdle",
"description": "Sets the minimum number of instances allowed in the producer pool before the evictor thread (if active) spawns new objects.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.udpConnectionlessSending": {
"name": "camel.sink.endpoint.udpConnectionlessSending",
"description": "This option supports connection less udp sending which is a real fire and forget. A connected udp send receive the PortUnreachableException if no one is listen on the receiving port.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.useByteBuf": {
"name": "camel.sink.endpoint.useByteBuf",
"description": "If the useByteBuf is true, netty producer will turn the message body into ByteBuf before sending it out.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.allowSerializedHeaders": {
"name": "camel.sink.endpoint.allowSerializedHeaders",
"description": "Only used for TCP when transferExchange is true. When set to true, serializable objects in headers and properties will be added to the exchange. Otherwise Camel will exclude any non-serializable objects and log it at WARN level.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.channelGroup": {
"name": "camel.sink.endpoint.channelGroup",
"description": "To use a explicit ChannelGroup.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.nativeTransport": {
"name": "camel.sink.endpoint.nativeTransport",
"description": "Whether to use native transport instead of NIO. Native transport takes advantage of the host operating system and is only supported on some platforms. You need to add the netty JAR for the host operating system you are using. See more details at: http:\/\/netty.io\/wiki\/native-transports.html",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.options": {
"name": "camel.sink.endpoint.options",
"description": "Allows to configure additional netty options using option. as prefix. For example option.child.keepAlive=false to set the netty option child.keepAlive=false. See the Netty documentation for possible options that can be used.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.receiveBufferSize": {
"name": "camel.sink.endpoint.receiveBufferSize",
"description": "The TCP\/UDP buffer sizes to be used during inbound communication. Size is bytes.",
"defaultValue": "65536",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.receiveBufferSizePredictor": {
"name": "camel.sink.endpoint.receiveBufferSizePredictor",
"description": "Configures the buffer size predictor. See details at Jetty documentation and this mail thread.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sendBufferSize": {
"name": "camel.sink.endpoint.sendBufferSize",
"description": "The TCP\/UDP buffer sizes to be used during outbound communication. Size is bytes.",
"defaultValue": "65536",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.synchronous": {
"name": "camel.sink.endpoint.synchronous",
"description": "Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.transferExchange": {
"name": "camel.sink.endpoint.transferExchange",
"description": "Only used for TCP. You can transfer the exchange over the wire instead of just the body. The following fields are transferred: In body, Out body, fault body, In headers, Out headers, fault headers, exchange properties, exchange exception. This requires that the objects are serializable. Camel will exclude any non-serializable objects and log it at WARN level.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.udpByteArrayCodec": {
"name": "camel.sink.endpoint.udpByteArrayCodec",
"description": "For UDP only. If enabled the using byte array codec instead of Java serialization protocol.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.workerCount": {
"name": "camel.sink.endpoint.workerCount",
"description": "When netty works on nio mode, it uses default workerCount parameter from Netty (which is cpu_core_threads x 2). User can use this option to override the default workerCount from Netty.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.workerGroup": {
"name": "camel.sink.endpoint.workerGroup",
"description": "To use a explicit EventLoopGroup as the boss thread pool. For example to share a thread pool with multiple consumers or producers. By default each consumer or producer has their own worker pool with 2 x cpu count core threads.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.allowDefaultCodec": {
"name": "camel.sink.endpoint.allowDefaultCodec",
"description": "The netty component installs a default codec if both, encoder\/decoder is null and textline is false. Setting allowDefaultCodec to false prevents the netty component from installing a default codec as the first element in the filter chain.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.autoAppendDelimiter": {
"name": "camel.sink.endpoint.autoAppendDelimiter",
"description": "Whether or not to auto append missing end delimiter when sending using the textline codec.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.decoderMaxLineLength": {
"name": "camel.sink.endpoint.decoderMaxLineLength",
"description": "The max line length to use for the textline codec.",
"defaultValue": "1024",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.decoders": {
"name": "camel.sink.endpoint.decoders",
"description": "A list of decoders to be used. You can use a String which have values separated by comma, and have the values be looked up in the Registry. Just remember to prefix the value with # so Camel knows it should lookup.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.delimiter": {
"name": "camel.sink.endpoint.delimiter",
"description": "The delimiter to use for the textline codec. Possible values are LINE and NULL. One of: [LINE] [NULL]",
"defaultValue": "\"LINE\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"LINE",
"NULL"
]
},
"camel.sink.endpoint.encoders": {
"name": "camel.sink.endpoint.encoders",
"description": "A list of encoders to be used. You can use a String which have values separated by comma, and have the values be looked up in the Registry. Just remember to prefix the value with # so Camel knows it should lookup.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.encoding": {
"name": "camel.sink.endpoint.encoding",
"description": "The encoding (a charset name) to use for the textline codec. If not provided, Camel will use the JVM default Charset.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.textline": {
"name": "camel.sink.endpoint.textline",
"description": "Only used for TCP. If no codec is specified, you can use this flag to indicate a text line based codec; if not specified or the value is false, then Object Serialization is assumed over TCP - however only Strings are allowed to be serialized by default.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.enabledProtocols": {
"name": "camel.sink.endpoint.enabledProtocols",
"description": "Which protocols to enable when using SSL",
"defaultValue": "\"TLSv1,TLSv1.1,TLSv1.2\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.keyStoreFile": {
"name": "camel.sink.endpoint.keyStoreFile",
"description": "Client side certificate keystore to be used for encryption",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.keyStoreFormat": {
"name": "camel.sink.endpoint.keyStoreFormat",
"description": "Keystore format to be used for payload encryption. Defaults to JKS if not set",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.keyStoreResource": {
"name": "camel.sink.endpoint.keyStoreResource",
"description": "Client side certificate keystore to be used for encryption. Is loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.passphrase": {
"name": "camel.sink.endpoint.passphrase",
"description": "Password setting to use in order to encrypt\/decrypt payloads sent using SSH",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.securityProvider": {
"name": "camel.sink.endpoint.securityProvider",
"description": "Security provider to be used for payload encryption. Defaults to SunX509 if not set.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.ssl": {
"name": "camel.sink.endpoint.ssl",
"description": "Setting to specify whether SSL encryption is applied to this endpoint",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslClientCertHeaders": {
"name": "camel.sink.endpoint.sslClientCertHeaders",
"description": "When enabled and in SSL mode, then the Netty consumer will enrich the Camel Message with headers having information about the client certificate such as subject name, issuer name, serial number, and the valid date range.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslContextParameters": {
"name": "camel.sink.endpoint.sslContextParameters",
"description": "To configure security using SSLContextParameters",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslHandler": {
"name": "camel.sink.endpoint.sslHandler",
"description": "Reference to a class that could be used to return an SSL Handler",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.trustStoreFile": {
"name": "camel.sink.endpoint.trustStoreFile",
"description": "Server side certificate keystore to be used for encryption",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.trustStoreResource": {
"name": "camel.sink.endpoint.trustStoreResource",
"description": "Server side certificate keystore to be used for encryption. Is loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.configuration": {
"name": "camel.component.netty.configuration",
"description": "To use the NettyConfiguration as configuration when creating endpoints.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.disconnect": {
"name": "camel.component.netty.disconnect",
"description": "Whether or not to disconnect(close) from Netty Channel right after use. Can be used for both consumer and producer.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.keepAlive": {
"name": "camel.component.netty.keepAlive",
"description": "Setting to ensure socket is not closed due to inactivity",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.reuseAddress": {
"name": "camel.component.netty.reuseAddress",
"description": "Setting to facilitate socket multiplexing",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.reuseChannel": {
"name": "camel.component.netty.reuseChannel",
"description": "This option allows producers and consumers (in client mode) to reuse the same Netty Channel for the lifecycle of processing the Exchange. This is useful if you need to call a server multiple times in a Camel route and want to use the same network connection. When using this, the channel is not returned to the connection pool until the Exchange is done; or disconnected if the disconnect option is set to true. The reused Channel is stored on the Exchange as an exchange property with the key NettyConstants#NETTY_CHANNEL which allows you to obtain the channel during routing and use it as well.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.sync": {
"name": "camel.component.netty.sync",
"description": "Setting to set endpoint as one-way or request-response",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.tcpNoDelay": {
"name": "camel.component.netty.tcpNoDelay",
"description": "Setting to improve TCP protocol performance",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.connectTimeout": {
"name": "camel.component.netty.connectTimeout",
"description": "Time to wait for a socket connection to be available. Value is in milliseconds.",
"defaultValue": "10000",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.lazyStartProducer": {
"name": "camel.component.netty.lazyStartProducer",
"description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.requestTimeout": {
"name": "camel.component.netty.requestTimeout",
"description": "Allows to use a timeout for the Netty producer when calling a remote server. By default no timeout is in use. The value is in milli seconds, so eg 30000 is 30 seconds. The requestTimeout is using Netty's ReadTimeoutHandler to trigger the timeout.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.clientInitializerFactory": {
"name": "camel.component.netty.clientInitializerFactory",
"description": "To use a custom ClientInitializerFactory",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.correlationManager": {
"name": "camel.component.netty.correlationManager",
"description": "To use a custom correlation manager to manage how request and reply messages are mapped when using request\/reply with the netty producer. This should only be used if you have a way to map requests together with replies such as if there is correlation ids in both the request and reply messages. This can be used if you want to multiplex concurrent messages on the same channel (aka connection) in netty. When doing this you must have a way to correlate the request and reply messages so you can store the right reply on the inflight Camel Exchange before its continued routed. We recommend extending the TimeoutCorrelationManagerSupport when you build custom correlation managers. This provides support for timeout and other complexities you otherwise would need to implement as well. See also the producerPoolEnabled option for more details.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.lazyChannelCreation": {
"name": "camel.component.netty.lazyChannelCreation",
"description": "Channels can be lazily created to avoid exceptions, if the remote server is not up and running when the Camel producer is started.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.producerPoolEnabled": {
"name": "camel.component.netty.producerPoolEnabled",
"description": "Whether producer pool is enabled or not. Important: If you turn this off then a single shared connection is used for the producer, also if you are doing request\/reply. That means there is a potential issue with interleaved responses if replies comes back out-of-order. Therefore you need to have a correlation id in both the request and reply messages so you can properly correlate the replies to the Camel callback that is responsible for continue processing the message in Camel. To do this you need to implement NettyCamelStateCorrelationManager as correlation manager and configure it via the correlationManager option. See also the correlationManager option for more details.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.producerPoolMaxActive": {
"name": "camel.component.netty.producerPoolMaxActive",
"description": "Sets the cap on the number of objects that can be allocated by the pool (checked out to clients, or idle awaiting checkout) at a given time. Use a negative value for no limit.",
"defaultValue": "-1",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.producerPoolMaxIdle": {
"name": "camel.component.netty.producerPoolMaxIdle",
"description": "Sets the cap on the number of idle instances in the pool.",
"defaultValue": "100",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.producerPoolMinEvictableIdle": {
"name": "camel.component.netty.producerPoolMinEvictableIdle",
"description": "Sets the minimum amount of time (value in millis) an object may sit idle in the pool before it is eligible for eviction by the idle object evictor.",
"defaultValue": "300000L",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.producerPoolMinIdle": {
"name": "camel.component.netty.producerPoolMinIdle",
"description": "Sets the minimum number of instances allowed in the producer pool before the evictor thread (if active) spawns new objects.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.udpConnectionlessSending": {
"name": "camel.component.netty.udpConnectionlessSending",
"description": "This option supports connection less udp sending which is a real fire and forget. A connected udp send receive the PortUnreachableException if no one is listen on the receiving port.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.useByteBuf": {
"name": "camel.component.netty.useByteBuf",
"description": "If the useByteBuf is true, netty producer will turn the message body into ByteBuf before sending it out.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.allowSerializedHeaders": {
"name": "camel.component.netty.allowSerializedHeaders",
"description": "Only used for TCP when transferExchange is true. When set to true, serializable objects in headers and properties will be added to the exchange. Otherwise Camel will exclude any non-serializable objects and log it at WARN level.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.autowiredEnabled": {
"name": "camel.component.netty.autowiredEnabled",
"description": "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.channelGroup": {
"name": "camel.component.netty.channelGroup",
"description": "To use a explicit ChannelGroup.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.nativeTransport": {
"name": "camel.component.netty.nativeTransport",
"description": "Whether to use native transport instead of NIO. Native transport takes advantage of the host operating system and is only supported on some platforms. You need to add the netty JAR for the host operating system you are using. See more details at: http:\/\/netty.io\/wiki\/native-transports.html",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.options": {
"name": "camel.component.netty.options",
"description": "Allows to configure additional netty options using option. as prefix. For example option.child.keepAlive=false to set the netty option child.keepAlive=false. See the Netty documentation for possible options that can be used.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.receiveBufferSize": {
"name": "camel.component.netty.receiveBufferSize",
"description": "The TCP\/UDP buffer sizes to be used during inbound communication. Size is bytes.",
"defaultValue": "65536",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.receiveBufferSizePredictor": {
"name": "camel.component.netty.receiveBufferSizePredictor",
"description": "Configures the buffer size predictor. See details at Jetty documentation and this mail thread.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.sendBufferSize": {
"name": "camel.component.netty.sendBufferSize",
"description": "The TCP\/UDP buffer sizes to be used during outbound communication. Size is bytes.",
"defaultValue": "65536",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.transferExchange": {
"name": "camel.component.netty.transferExchange",
"description": "Only used for TCP. You can transfer the exchange over the wire instead of just the body. The following fields are transferred: In body, Out body, fault body, In headers, Out headers, fault headers, exchange properties, exchange exception. This requires that the objects are serializable. Camel will exclude any non-serializable objects and log it at WARN level.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.udpByteArrayCodec": {
"name": "camel.component.netty.udpByteArrayCodec",
"description": "For UDP only. If enabled the using byte array codec instead of Java serialization protocol.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.workerCount": {
"name": "camel.component.netty.workerCount",
"description": "When netty works on nio mode, it uses default workerCount parameter from Netty (which is cpu_core_threads x 2). User can use this option to override the default workerCount from Netty.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.workerGroup": {
"name": "camel.component.netty.workerGroup",
"description": "To use a explicit EventLoopGroup as the boss thread pool. For example to share a thread pool with multiple consumers or producers. By default each consumer or producer has their own worker pool with 2 x cpu count core threads.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.allowDefaultCodec": {
"name": "camel.component.netty.allowDefaultCodec",
"description": "The netty component installs a default codec if both, encoder\/decoder is null and textline is false. Setting allowDefaultCodec to false prevents the netty component from installing a default codec as the first element in the filter chain.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.autoAppendDelimiter": {
"name": "camel.component.netty.autoAppendDelimiter",
"description": "Whether or not to auto append missing end delimiter when sending using the textline codec.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.decoderMaxLineLength": {
"name": "camel.component.netty.decoderMaxLineLength",
"description": "The max line length to use for the textline codec.",
"defaultValue": "1024",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.decoders": {
"name": "camel.component.netty.decoders",
"description": "A list of decoders to be used. You can use a String which have values separated by comma, and have the values be looked up in the Registry. Just remember to prefix the value with # so Camel knows it should lookup.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.delimiter": {
"name": "camel.component.netty.delimiter",
"description": "The delimiter to use for the textline codec. Possible values are LINE and NULL. One of: [LINE] [NULL]",
"defaultValue": "\"LINE\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"LINE",
"NULL"
]
},
"camel.component.netty.encoders": {
"name": "camel.component.netty.encoders",
"description": "A list of encoders to be used. You can use a String which have values separated by comma, and have the values be looked up in the Registry. Just remember to prefix the value with # so Camel knows it should lookup.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.encoding": {
"name": "camel.component.netty.encoding",
"description": "The encoding (a charset name) to use for the textline codec. If not provided, Camel will use the JVM default Charset.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.textline": {
"name": "camel.component.netty.textline",
"description": "Only used for TCP. If no codec is specified, you can use this flag to indicate a text line based codec; if not specified or the value is false, then Object Serialization is assumed over TCP - however only Strings are allowed to be serialized by default.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.enabledProtocols": {
"name": "camel.component.netty.enabledProtocols",
"description": "Which protocols to enable when using SSL",
"defaultValue": "\"TLSv1,TLSv1.1,TLSv1.2\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.keyStoreFile": {
"name": "camel.component.netty.keyStoreFile",
"description": "Client side certificate keystore to be used for encryption",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.keyStoreFormat": {
"name": "camel.component.netty.keyStoreFormat",
"description": "Keystore format to be used for payload encryption. Defaults to JKS if not set",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.keyStoreResource": {
"name": "camel.component.netty.keyStoreResource",
"description": "Client side certificate keystore to be used for encryption. Is loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.passphrase": {
"name": "camel.component.netty.passphrase",
"description": "Password setting to use in order to encrypt\/decrypt payloads sent using SSH",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.securityProvider": {
"name": "camel.component.netty.securityProvider",
"description": "Security provider to be used for payload encryption. Defaults to SunX509 if not set.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.ssl": {
"name": "camel.component.netty.ssl",
"description": "Setting to specify whether SSL encryption is applied to this endpoint",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.sslClientCertHeaders": {
"name": "camel.component.netty.sslClientCertHeaders",
"description": "When enabled and in SSL mode, then the Netty consumer will enrich the Camel Message with headers having information about the client certificate such as subject name, issuer name, serial number, and the valid date range.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.sslContextParameters": {
"name": "camel.component.netty.sslContextParameters",
"description": "To configure security using SSLContextParameters",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.sslHandler": {
"name": "camel.component.netty.sslHandler",
"description": "Reference to a class that could be used to return an SSL Handler",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.trustStoreFile": {
"name": "camel.component.netty.trustStoreFile",
"description": "Server side certificate keystore to be used for encryption",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.trustStoreResource": {
"name": "camel.component.netty.trustStoreResource",
"description": "Server side certificate keystore to be used for encryption. Is loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty.useGlobalSslContextParameters": {
"name": "camel.component.netty.useGlobalSslContextParameters",
"description": "Enable usage of global SSL context parameters.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
}
}
}