blob: 67deb8bba644c6801668bc745d37aa2e669e579e [file] [log] [blame]
{
"connector": {
"class": "org.apache.camel.kafkaconnector.kafka.CamelKafkaSinkConnector",
"artifactId": "camel-kafka-kafka-connector",
"groupId": "org.apache.camel.kafkaconnector",
"id": "camel-kafka-sink",
"type": "sink",
"version": "0.7.0",
"description": "Sent and receive messages to\/from an Apache Kafka broker."
},
"properties": {
"camel.sink.path.topic": {
"name": "camel.sink.path.topic",
"description": "Name of the topic to use. On the consumer you can use comma to separate multiple topics. A producer can only send a message to a single topic.",
"priority": "HIGH",
"required": "true"
},
"camel.sink.endpoint.additionalProperties": {
"name": "camel.sink.endpoint.additionalProperties",
"description": "Sets additional properties for either kafka consumer or kafka producer in case they can't be set directly on the camel configurations (e.g: new Kafka properties that are not reflected yet in Camel configurations), the properties have to be prefixed with additionalProperties.. E.g: additionalProperties.transactional.id=12345&additionalProperties.schema.registry.url=http:\/\/localhost:8811\/avro",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.brokers": {
"name": "camel.sink.endpoint.brokers",
"description": "URL of the Kafka brokers to use. The format is host1:port1,host2:port2, and the list can be a subset of brokers or a VIP pointing to a subset of brokers. This option is known as bootstrap.servers in the Kafka documentation.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.clientId": {
"name": "camel.sink.endpoint.clientId",
"description": "The client id is a user-specified string sent in each request to help trace calls. It should logically identify the application making the request.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.headerFilterStrategy": {
"name": "camel.sink.endpoint.headerFilterStrategy",
"description": "To use a custom HeaderFilterStrategy to filter header to and from Camel message.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.reconnectBackoffMaxMs": {
"name": "camel.sink.endpoint.reconnectBackoffMaxMs",
"description": "The maximum amount of time in milliseconds to wait when reconnecting to a broker that has repeatedly failed to connect. If provided, the backoff per host will increase exponentially for each consecutive connection failure, up to this maximum. After calculating the backoff increase, 20% random jitter is added to avoid connection storms.",
"defaultValue": "\"1000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.shutdownTimeout": {
"name": "camel.sink.endpoint.shutdownTimeout",
"description": "Timeout in milli seconds to wait gracefully for the consumer or producer to shutdown and terminate its worker threads.",
"defaultValue": "30000",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.bufferMemorySize": {
"name": "camel.sink.endpoint.bufferMemorySize",
"description": "The total bytes of memory the producer can use to buffer records waiting to be sent to the server. If records are sent faster than they can be delivered to the server the producer will either block or throw an exception based on the preference specified by block.on.buffer.full.This setting should correspond roughly to the total memory the producer will use, but is not a hard bound since not all memory the producer uses is used for buffering. Some additional memory will be used for compression (if compression is enabled) as well as for maintaining in-flight requests.",
"defaultValue": "\"33554432\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.compressionCodec": {
"name": "camel.sink.endpoint.compressionCodec",
"description": "This parameter allows you to specify the compression codec for all data generated by this producer. Valid values are none, gzip and snappy. One of: [none] [gzip] [snappy] [lz4]",
"defaultValue": "\"none\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"none",
"gzip",
"snappy",
"lz4"
]
},
"camel.sink.endpoint.connectionMaxIdleMs": {
"name": "camel.sink.endpoint.connectionMaxIdleMs",
"description": "Close idle connections after the number of milliseconds specified by this config.",
"defaultValue": "\"540000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.enableIdempotence": {
"name": "camel.sink.endpoint.enableIdempotence",
"description": "If set to 'true' the producer will ensure that exactly one copy of each message is written in the stream. If 'false', producer retries may write duplicates of the retried message in the stream. If set to true this option will require max.in.flight.requests.per.connection to be set to 1 and retries cannot be zero and additionally acks must be set to 'all'.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.headerSerializer": {
"name": "camel.sink.endpoint.headerSerializer",
"description": "To use a custom KafkaHeaderSerializer to serialize kafka headers values",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.key": {
"name": "camel.sink.endpoint.key",
"description": "The record key (or null if no key is specified). If this option has been configured then it take precedence over header KafkaConstants#KEY",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.keySerializer": {
"name": "camel.sink.endpoint.keySerializer",
"description": "The serializer class for keys (defaults to the same as for messages if nothing is given).",
"defaultValue": "\"org.apache.kafka.common.serialization.StringSerializer\"",
"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.lingerMs": {
"name": "camel.sink.endpoint.lingerMs",
"description": "The producer groups together any records that arrive in between request transmissions into a single batched request. Normally this occurs only under load when records arrive faster than they can be sent out. However in some circumstances the client may want to reduce the number of requests even under moderate load. This setting accomplishes this by adding a small amount of artificial delay that is, rather than immediately sending out a record the producer will wait for up to the given delay to allow other records to be sent so that the sends can be batched together. This can be thought of as analogous to Nagle's algorithm in TCP. This setting gives the upper bound on the delay for batching: once we get batch.size worth of records for a partition it will be sent immediately regardless of this setting, however if we have fewer than this many bytes accumulated for this partition we will 'linger' for the specified time waiting for more records to show up. This setting defaults to 0 (i.e. no delay). Setting linger.ms=5, for example, would have the effect of reducing the number of requests sent but would add up to 5ms of latency to records sent in the absense of load.",
"defaultValue": "\"0\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.maxBlockMs": {
"name": "camel.sink.endpoint.maxBlockMs",
"description": "The configuration controls how long sending to kafka will block. These methods can be blocked for multiple reasons. For e.g: buffer full, metadata unavailable.This configuration imposes maximum limit on the total time spent in fetching metadata, serialization of key and value, partitioning and allocation of buffer memory when doing a send(). In case of partitionsFor(), this configuration imposes a maximum time threshold on waiting for metadata",
"defaultValue": "\"60000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.maxInFlightRequest": {
"name": "camel.sink.endpoint.maxInFlightRequest",
"description": "The maximum number of unacknowledged requests the client will send on a single connection before blocking. Note that if this setting is set to be greater than 1 and there are failed sends, there is a risk of message re-ordering due to retries (i.e., if retries are enabled).",
"defaultValue": "\"5\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.maxRequestSize": {
"name": "camel.sink.endpoint.maxRequestSize",
"description": "The maximum size of a request. This is also effectively a cap on the maximum record size. Note that the server has its own cap on record size which may be different from this. This setting will limit the number of record batches the producer will send in a single request to avoid sending huge requests.",
"defaultValue": "\"1048576\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.metadataMaxAgeMs": {
"name": "camel.sink.endpoint.metadataMaxAgeMs",
"description": "The period of time in milliseconds after which we force a refresh of metadata even if we haven't seen any partition leadership changes to proactively discover any new brokers or partitions.",
"defaultValue": "\"300000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.metricReporters": {
"name": "camel.sink.endpoint.metricReporters",
"description": "A list of classes to use as metrics reporters. Implementing the MetricReporter interface allows plugging in classes that will be notified of new metric creation. The JmxReporter is always included to register JMX statistics.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.metricsSampleWindowMs": {
"name": "camel.sink.endpoint.metricsSampleWindowMs",
"description": "The number of samples maintained to compute metrics.",
"defaultValue": "\"30000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.noOfMetricsSample": {
"name": "camel.sink.endpoint.noOfMetricsSample",
"description": "The number of samples maintained to compute metrics.",
"defaultValue": "\"2\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.partitioner": {
"name": "camel.sink.endpoint.partitioner",
"description": "The partitioner class for partitioning messages amongst sub-topics. The default partitioner is based on the hash of the key.",
"defaultValue": "\"org.apache.kafka.clients.producer.internals.DefaultPartitioner\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.partitionKey": {
"name": "camel.sink.endpoint.partitionKey",
"description": "The partition to which the record will be sent (or null if no partition was specified). If this option has been configured then it take precedence over header KafkaConstants#PARTITION_KEY",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.producerBatchSize": {
"name": "camel.sink.endpoint.producerBatchSize",
"description": "The producer will attempt to batch records together into fewer requests whenever multiple records are being sent to the same partition. This helps performance on both the client and the server. This configuration controls the default batch size in bytes. No attempt will be made to batch records larger than this size.Requests sent to brokers will contain multiple batches, one for each partition with data available to be sent.A small batch size will make batching less common and may reduce throughput (a batch size of zero will disable batching entirely). A very large batch size may use memory a bit more wastefully as we will always allocate a buffer of the specified batch size in anticipation of additional records.",
"defaultValue": "\"16384\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.queueBufferingMaxMessages": {
"name": "camel.sink.endpoint.queueBufferingMaxMessages",
"description": "The maximum number of unsent messages that can be queued up the producer when using async mode before either the producer must be blocked or data must be dropped.",
"defaultValue": "\"10000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.receiveBufferBytes": {
"name": "camel.sink.endpoint.receiveBufferBytes",
"description": "The size of the TCP receive buffer (SO_RCVBUF) to use when reading data.",
"defaultValue": "\"65536\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.reconnectBackoffMs": {
"name": "camel.sink.endpoint.reconnectBackoffMs",
"description": "The amount of time to wait before attempting to reconnect to a given host. This avoids repeatedly connecting to a host in a tight loop. This backoff applies to all requests sent by the consumer to the broker.",
"defaultValue": "\"50\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.recordMetadata": {
"name": "camel.sink.endpoint.recordMetadata",
"description": "Whether the producer should store the RecordMetadata results from sending to Kafka. The results are stored in a List containing the RecordMetadata metadata's. The list is stored on a header with the key KafkaConstants#KAFKA_RECORDMETA",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.requestRequiredAcks": {
"name": "camel.sink.endpoint.requestRequiredAcks",
"description": "The number of acknowledgments the producer requires the leader to have received before considering a request complete. This controls the durability of records that are sent. The following settings are common: acks=0 If set to zero then the producer will not wait for any acknowledgment from the server at all. The record will be immediately added to the socket buffer and considered sent. No guarantee can be made that the server has received the record in this case, and the retries configuration will not take effect (as the client won't generally know of any failures). The offset given back for each record will always be set to -1. acks=1 This will mean the leader will write the record to its local log but will respond without awaiting full acknowledgement from all followers. In this case should the leader fail immediately after acknowledging the record but before the followers have replicated it then the record will be lost. acks=all This means the leader will wait for the full set of in-sync replicas to acknowledge the record. This guarantees that the record will not be lost as long as at least one in-sync replica remains alive. This is the strongest available guarantee. One of: [-1] [0] [1] [all]",
"defaultValue": "\"1\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"-1",
"0",
"1",
"all"
]
},
"camel.sink.endpoint.requestTimeoutMs": {
"name": "camel.sink.endpoint.requestTimeoutMs",
"description": "The amount of time the broker will wait trying to meet the request.required.acks requirement before sending back an error to the client.",
"defaultValue": "\"30000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.retries": {
"name": "camel.sink.endpoint.retries",
"description": "Setting a value greater than zero will cause the client to resend any record whose send fails with a potentially transient error. Note that this retry is no different than if the client resent the record upon receiving the error. Allowing retries will potentially change the ordering of records because if two records are sent to a single partition, and the first fails and is retried but the second succeeds, then the second record may appear first.",
"defaultValue": "\"0\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.retryBackoffMs": {
"name": "camel.sink.endpoint.retryBackoffMs",
"description": "Before each retry, the producer refreshes the metadata of relevant topics to see if a new leader has been elected. Since leader election takes a bit of time, this property specifies the amount of time that the producer waits before refreshing the metadata.",
"defaultValue": "\"100\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sendBufferBytes": {
"name": "camel.sink.endpoint.sendBufferBytes",
"description": "Socket write buffer size",
"defaultValue": "\"131072\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.valueSerializer": {
"name": "camel.sink.endpoint.valueSerializer",
"description": "The serializer class for messages.",
"defaultValue": "\"org.apache.kafka.common.serialization.StringSerializer\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.workerPool": {
"name": "camel.sink.endpoint.workerPool",
"description": "To use a custom worker pool for continue routing Exchange after kafka server has acknowledge the message that was sent to it from KafkaProducer using asynchronous non-blocking processing. If using this option then you must handle the lifecycle of the thread pool to shut the pool down when no longer needed.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.workerPoolCoreSize": {
"name": "camel.sink.endpoint.workerPoolCoreSize",
"description": "Number of core threads for the worker pool for continue routing Exchange after kafka server has acknowledge the message that was sent to it from KafkaProducer using asynchronous non-blocking processing.",
"defaultValue": "\"10\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.workerPoolMaxSize": {
"name": "camel.sink.endpoint.workerPoolMaxSize",
"description": "Maximum number of threads for the worker pool for continue routing Exchange after kafka server has acknowledge the message that was sent to it from KafkaProducer using asynchronous non-blocking processing.",
"defaultValue": "\"20\"",
"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.schemaRegistryURL": {
"name": "camel.sink.endpoint.schemaRegistryURL",
"description": "URL of the Confluent Platform schema registry servers to use. The format is host1:port1,host2:port2. This is known as schema.registry.url in the Confluent Platform documentation. This option is only available in the Confluent Platform (not standard Apache Kafka)",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.interceptorClasses": {
"name": "camel.sink.endpoint.interceptorClasses",
"description": "Sets interceptors for producer or consumers. Producer interceptors have to be classes implementing org.apache.kafka.clients.producer.ProducerInterceptor Consumer interceptors have to be classes implementing org.apache.kafka.clients.consumer.ConsumerInterceptor Note that if you use Producer interceptor on a consumer it will throw a class cast exception in runtime",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.kerberosBeforeReloginMinTime": {
"name": "camel.sink.endpoint.kerberosBeforeReloginMinTime",
"description": "Login thread sleep time between refresh attempts.",
"defaultValue": "\"60000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.kerberosInitCmd": {
"name": "camel.sink.endpoint.kerberosInitCmd",
"description": "Kerberos kinit command path. Default is \/usr\/bin\/kinit",
"defaultValue": "\"\/usr\/bin\/kinit\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.kerberosPrincipalToLocalRules": {
"name": "camel.sink.endpoint.kerberosPrincipalToLocalRules",
"description": "A list of rules for mapping from principal names to short names (typically operating system usernames). The rules are evaluated in order and the first rule that matches a principal name is used to map it to a short name. Any later rules in the list are ignored. By default, principal names of the form {username}\/{hostname}{REALM} are mapped to {username}. For more details on the format please see the security authorization and acls documentation.. Multiple values can be separated by comma",
"defaultValue": "\"DEFAULT\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.kerberosRenewJitter": {
"name": "camel.sink.endpoint.kerberosRenewJitter",
"description": "Percentage of random jitter added to the renewal time.",
"defaultValue": "\"0.05\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.kerberosRenewWindowFactor": {
"name": "camel.sink.endpoint.kerberosRenewWindowFactor",
"description": "Login thread will sleep until the specified window factor of time from last refresh to ticket's expiry has been reached, at which time it will try to renew the ticket.",
"defaultValue": "\"0.8\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.saslJaasConfig": {
"name": "camel.sink.endpoint.saslJaasConfig",
"description": "Expose the kafka sasl.jaas.config parameter Example: org.apache.kafka.common.security.plain.PlainLoginModule required username=USERNAME password=PASSWORD;",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.saslKerberosServiceName": {
"name": "camel.sink.endpoint.saslKerberosServiceName",
"description": "The Kerberos principal name that Kafka runs as. This can be defined either in Kafka's JAAS config or in Kafka's config.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.saslMechanism": {
"name": "camel.sink.endpoint.saslMechanism",
"description": "The Simple Authentication and Security Layer (SASL) Mechanism used. For the valid values see http:\/\/www.iana.org\/assignments\/sasl-mechanisms\/sasl-mechanisms.xhtml",
"defaultValue": "\"GSSAPI\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.securityProtocol": {
"name": "camel.sink.endpoint.securityProtocol",
"description": "Protocol used to communicate with brokers. SASL_PLAINTEXT, PLAINTEXT and SSL are supported",
"defaultValue": "\"PLAINTEXT\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslCipherSuites": {
"name": "camel.sink.endpoint.sslCipherSuites",
"description": "A list of cipher suites. This is a named combination of authentication, encryption, MAC and key exchange algorithm used to negotiate the security settings for a network connection using TLS or SSL network protocol.By default all the available cipher suites are supported.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslContextParameters": {
"name": "camel.sink.endpoint.sslContextParameters",
"description": "SSL configuration using a Camel SSLContextParameters object. If configured it's applied before the other SSL endpoint parameters. NOTE: Kafka only supports loading keystore from file locations, so prefix the location with file: in the KeyStoreParameters.resource option.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslEnabledProtocols": {
"name": "camel.sink.endpoint.sslEnabledProtocols",
"description": "The list of protocols enabled for SSL connections. TLSv1.2, TLSv1.1 and TLSv1 are enabled by default.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslEndpointAlgorithm": {
"name": "camel.sink.endpoint.sslEndpointAlgorithm",
"description": "The endpoint identification algorithm to validate server hostname using server certificate.",
"defaultValue": "\"https\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslKeymanagerAlgorithm": {
"name": "camel.sink.endpoint.sslKeymanagerAlgorithm",
"description": "The algorithm used by key manager factory for SSL connections. Default value is the key manager factory algorithm configured for the Java Virtual Machine.",
"defaultValue": "\"SunX509\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslKeyPassword": {
"name": "camel.sink.endpoint.sslKeyPassword",
"description": "The password of the private key in the key store file. This is optional for client.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslKeystoreLocation": {
"name": "camel.sink.endpoint.sslKeystoreLocation",
"description": "The location of the key store file. This is optional for client and can be used for two-way authentication for client.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslKeystorePassword": {
"name": "camel.sink.endpoint.sslKeystorePassword",
"description": "The store password for the key store file.This is optional for client and only needed if ssl.keystore.location is configured.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslKeystoreType": {
"name": "camel.sink.endpoint.sslKeystoreType",
"description": "The file format of the key store file. This is optional for client. Default value is JKS",
"defaultValue": "\"JKS\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslProtocol": {
"name": "camel.sink.endpoint.sslProtocol",
"description": "The SSL protocol used to generate the SSLContext. Default setting is TLS, which is fine for most cases. Allowed values in recent JVMs are TLS, TLSv1.1 and TLSv1.2. SSL, SSLv2 and SSLv3 may be supported in older JVMs, but their usage is discouraged due to known security vulnerabilities.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslProvider": {
"name": "camel.sink.endpoint.sslProvider",
"description": "The name of the security provider used for SSL connections. Default value is the default security provider of the JVM.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslTrustmanagerAlgorithm": {
"name": "camel.sink.endpoint.sslTrustmanagerAlgorithm",
"description": "The algorithm used by trust manager factory for SSL connections. Default value is the trust manager factory algorithm configured for the Java Virtual Machine.",
"defaultValue": "\"PKIX\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslTruststoreLocation": {
"name": "camel.sink.endpoint.sslTruststoreLocation",
"description": "The location of the trust store file.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslTruststorePassword": {
"name": "camel.sink.endpoint.sslTruststorePassword",
"description": "The password for the trust store file.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslTruststoreType": {
"name": "camel.sink.endpoint.sslTruststoreType",
"description": "The file format of the trust store file. Default value is JKS.",
"defaultValue": "\"JKS\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.additionalProperties": {
"name": "camel.component.kafka.additionalProperties",
"description": "Sets additional properties for either kafka consumer or kafka producer in case they can't be set directly on the camel configurations (e.g: new Kafka properties that are not reflected yet in Camel configurations), the properties have to be prefixed with additionalProperties.. E.g: additionalProperties.transactional.id=12345&additionalProperties.schema.registry.url=http:\/\/localhost:8811\/avro",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.brokers": {
"name": "camel.component.kafka.brokers",
"description": "URL of the Kafka brokers to use. The format is host1:port1,host2:port2, and the list can be a subset of brokers or a VIP pointing to a subset of brokers. This option is known as bootstrap.servers in the Kafka documentation.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.clientId": {
"name": "camel.component.kafka.clientId",
"description": "The client id is a user-specified string sent in each request to help trace calls. It should logically identify the application making the request.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.configuration": {
"name": "camel.component.kafka.configuration",
"description": "Allows to pre-configure the Kafka component with common options that the endpoints will reuse.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.headerFilterStrategy": {
"name": "camel.component.kafka.headerFilterStrategy",
"description": "To use a custom HeaderFilterStrategy to filter header to and from Camel message.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.reconnectBackoffMaxMs": {
"name": "camel.component.kafka.reconnectBackoffMaxMs",
"description": "The maximum amount of time in milliseconds to wait when reconnecting to a broker that has repeatedly failed to connect. If provided, the backoff per host will increase exponentially for each consecutive connection failure, up to this maximum. After calculating the backoff increase, 20% random jitter is added to avoid connection storms.",
"defaultValue": "\"1000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.shutdownTimeout": {
"name": "camel.component.kafka.shutdownTimeout",
"description": "Timeout in milli seconds to wait gracefully for the consumer or producer to shutdown and terminate its worker threads.",
"defaultValue": "30000",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.bufferMemorySize": {
"name": "camel.component.kafka.bufferMemorySize",
"description": "The total bytes of memory the producer can use to buffer records waiting to be sent to the server. If records are sent faster than they can be delivered to the server the producer will either block or throw an exception based on the preference specified by block.on.buffer.full.This setting should correspond roughly to the total memory the producer will use, but is not a hard bound since not all memory the producer uses is used for buffering. Some additional memory will be used for compression (if compression is enabled) as well as for maintaining in-flight requests.",
"defaultValue": "\"33554432\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.compressionCodec": {
"name": "camel.component.kafka.compressionCodec",
"description": "This parameter allows you to specify the compression codec for all data generated by this producer. Valid values are none, gzip and snappy. One of: [none] [gzip] [snappy] [lz4]",
"defaultValue": "\"none\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"none",
"gzip",
"snappy",
"lz4"
]
},
"camel.component.kafka.connectionMaxIdleMs": {
"name": "camel.component.kafka.connectionMaxIdleMs",
"description": "Close idle connections after the number of milliseconds specified by this config.",
"defaultValue": "\"540000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.enableIdempotence": {
"name": "camel.component.kafka.enableIdempotence",
"description": "If set to 'true' the producer will ensure that exactly one copy of each message is written in the stream. If 'false', producer retries may write duplicates of the retried message in the stream. If set to true this option will require max.in.flight.requests.per.connection to be set to 1 and retries cannot be zero and additionally acks must be set to 'all'.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.headerSerializer": {
"name": "camel.component.kafka.headerSerializer",
"description": "To use a custom KafkaHeaderSerializer to serialize kafka headers values",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.key": {
"name": "camel.component.kafka.key",
"description": "The record key (or null if no key is specified). If this option has been configured then it take precedence over header KafkaConstants#KEY",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.keySerializer": {
"name": "camel.component.kafka.keySerializer",
"description": "The serializer class for keys (defaults to the same as for messages if nothing is given).",
"defaultValue": "\"org.apache.kafka.common.serialization.StringSerializer\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.lazyStartProducer": {
"name": "camel.component.kafka.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.kafka.lingerMs": {
"name": "camel.component.kafka.lingerMs",
"description": "The producer groups together any records that arrive in between request transmissions into a single batched request. Normally this occurs only under load when records arrive faster than they can be sent out. However in some circumstances the client may want to reduce the number of requests even under moderate load. This setting accomplishes this by adding a small amount of artificial delay that is, rather than immediately sending out a record the producer will wait for up to the given delay to allow other records to be sent so that the sends can be batched together. This can be thought of as analogous to Nagle's algorithm in TCP. This setting gives the upper bound on the delay for batching: once we get batch.size worth of records for a partition it will be sent immediately regardless of this setting, however if we have fewer than this many bytes accumulated for this partition we will 'linger' for the specified time waiting for more records to show up. This setting defaults to 0 (i.e. no delay). Setting linger.ms=5, for example, would have the effect of reducing the number of requests sent but would add up to 5ms of latency to records sent in the absense of load.",
"defaultValue": "\"0\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.maxBlockMs": {
"name": "camel.component.kafka.maxBlockMs",
"description": "The configuration controls how long sending to kafka will block. These methods can be blocked for multiple reasons. For e.g: buffer full, metadata unavailable.This configuration imposes maximum limit on the total time spent in fetching metadata, serialization of key and value, partitioning and allocation of buffer memory when doing a send(). In case of partitionsFor(), this configuration imposes a maximum time threshold on waiting for metadata",
"defaultValue": "\"60000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.maxInFlightRequest": {
"name": "camel.component.kafka.maxInFlightRequest",
"description": "The maximum number of unacknowledged requests the client will send on a single connection before blocking. Note that if this setting is set to be greater than 1 and there are failed sends, there is a risk of message re-ordering due to retries (i.e., if retries are enabled).",
"defaultValue": "\"5\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.maxRequestSize": {
"name": "camel.component.kafka.maxRequestSize",
"description": "The maximum size of a request. This is also effectively a cap on the maximum record size. Note that the server has its own cap on record size which may be different from this. This setting will limit the number of record batches the producer will send in a single request to avoid sending huge requests.",
"defaultValue": "\"1048576\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.metadataMaxAgeMs": {
"name": "camel.component.kafka.metadataMaxAgeMs",
"description": "The period of time in milliseconds after which we force a refresh of metadata even if we haven't seen any partition leadership changes to proactively discover any new brokers or partitions.",
"defaultValue": "\"300000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.metricReporters": {
"name": "camel.component.kafka.metricReporters",
"description": "A list of classes to use as metrics reporters. Implementing the MetricReporter interface allows plugging in classes that will be notified of new metric creation. The JmxReporter is always included to register JMX statistics.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.metricsSampleWindowMs": {
"name": "camel.component.kafka.metricsSampleWindowMs",
"description": "The number of samples maintained to compute metrics.",
"defaultValue": "\"30000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.noOfMetricsSample": {
"name": "camel.component.kafka.noOfMetricsSample",
"description": "The number of samples maintained to compute metrics.",
"defaultValue": "\"2\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.partitioner": {
"name": "camel.component.kafka.partitioner",
"description": "The partitioner class for partitioning messages amongst sub-topics. The default partitioner is based on the hash of the key.",
"defaultValue": "\"org.apache.kafka.clients.producer.internals.DefaultPartitioner\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.partitionKey": {
"name": "camel.component.kafka.partitionKey",
"description": "The partition to which the record will be sent (or null if no partition was specified). If this option has been configured then it take precedence over header KafkaConstants#PARTITION_KEY",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.producerBatchSize": {
"name": "camel.component.kafka.producerBatchSize",
"description": "The producer will attempt to batch records together into fewer requests whenever multiple records are being sent to the same partition. This helps performance on both the client and the server. This configuration controls the default batch size in bytes. No attempt will be made to batch records larger than this size.Requests sent to brokers will contain multiple batches, one for each partition with data available to be sent.A small batch size will make batching less common and may reduce throughput (a batch size of zero will disable batching entirely). A very large batch size may use memory a bit more wastefully as we will always allocate a buffer of the specified batch size in anticipation of additional records.",
"defaultValue": "\"16384\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.queueBufferingMaxMessages": {
"name": "camel.component.kafka.queueBufferingMaxMessages",
"description": "The maximum number of unsent messages that can be queued up the producer when using async mode before either the producer must be blocked or data must be dropped.",
"defaultValue": "\"10000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.receiveBufferBytes": {
"name": "camel.component.kafka.receiveBufferBytes",
"description": "The size of the TCP receive buffer (SO_RCVBUF) to use when reading data.",
"defaultValue": "\"65536\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.reconnectBackoffMs": {
"name": "camel.component.kafka.reconnectBackoffMs",
"description": "The amount of time to wait before attempting to reconnect to a given host. This avoids repeatedly connecting to a host in a tight loop. This backoff applies to all requests sent by the consumer to the broker.",
"defaultValue": "\"50\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.recordMetadata": {
"name": "camel.component.kafka.recordMetadata",
"description": "Whether the producer should store the RecordMetadata results from sending to Kafka. The results are stored in a List containing the RecordMetadata metadata's. The list is stored on a header with the key KafkaConstants#KAFKA_RECORDMETA",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.requestRequiredAcks": {
"name": "camel.component.kafka.requestRequiredAcks",
"description": "The number of acknowledgments the producer requires the leader to have received before considering a request complete. This controls the durability of records that are sent. The following settings are common: acks=0 If set to zero then the producer will not wait for any acknowledgment from the server at all. The record will be immediately added to the socket buffer and considered sent. No guarantee can be made that the server has received the record in this case, and the retries configuration will not take effect (as the client won't generally know of any failures). The offset given back for each record will always be set to -1. acks=1 This will mean the leader will write the record to its local log but will respond without awaiting full acknowledgement from all followers. In this case should the leader fail immediately after acknowledging the record but before the followers have replicated it then the record will be lost. acks=all This means the leader will wait for the full set of in-sync replicas to acknowledge the record. This guarantees that the record will not be lost as long as at least one in-sync replica remains alive. This is the strongest available guarantee. One of: [-1] [0] [1] [all]",
"defaultValue": "\"1\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"-1",
"0",
"1",
"all"
]
},
"camel.component.kafka.requestTimeoutMs": {
"name": "camel.component.kafka.requestTimeoutMs",
"description": "The amount of time the broker will wait trying to meet the request.required.acks requirement before sending back an error to the client.",
"defaultValue": "\"30000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.retries": {
"name": "camel.component.kafka.retries",
"description": "Setting a value greater than zero will cause the client to resend any record whose send fails with a potentially transient error. Note that this retry is no different than if the client resent the record upon receiving the error. Allowing retries will potentially change the ordering of records because if two records are sent to a single partition, and the first fails and is retried but the second succeeds, then the second record may appear first.",
"defaultValue": "\"0\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.retryBackoffMs": {
"name": "camel.component.kafka.retryBackoffMs",
"description": "Before each retry, the producer refreshes the metadata of relevant topics to see if a new leader has been elected. Since leader election takes a bit of time, this property specifies the amount of time that the producer waits before refreshing the metadata.",
"defaultValue": "\"100\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sendBufferBytes": {
"name": "camel.component.kafka.sendBufferBytes",
"description": "Socket write buffer size",
"defaultValue": "\"131072\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.valueSerializer": {
"name": "camel.component.kafka.valueSerializer",
"description": "The serializer class for messages.",
"defaultValue": "\"org.apache.kafka.common.serialization.StringSerializer\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.workerPool": {
"name": "camel.component.kafka.workerPool",
"description": "To use a custom worker pool for continue routing Exchange after kafka server has acknowledge the message that was sent to it from KafkaProducer using asynchronous non-blocking processing. If using this option then you must handle the lifecycle of the thread pool to shut the pool down when no longer needed.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.workerPoolCoreSize": {
"name": "camel.component.kafka.workerPoolCoreSize",
"description": "Number of core threads for the worker pool for continue routing Exchange after kafka server has acknowledge the message that was sent to it from KafkaProducer using asynchronous non-blocking processing.",
"defaultValue": "\"10\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.workerPoolMaxSize": {
"name": "camel.component.kafka.workerPoolMaxSize",
"description": "Maximum number of threads for the worker pool for continue routing Exchange after kafka server has acknowledge the message that was sent to it from KafkaProducer using asynchronous non-blocking processing.",
"defaultValue": "\"20\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.autowiredEnabled": {
"name": "camel.component.kafka.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.kafka.schemaRegistryURL": {
"name": "camel.component.kafka.schemaRegistryURL",
"description": "URL of the Confluent Platform schema registry servers to use. The format is host1:port1,host2:port2. This is known as schema.registry.url in the Confluent Platform documentation. This option is only available in the Confluent Platform (not standard Apache Kafka)",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.interceptorClasses": {
"name": "camel.component.kafka.interceptorClasses",
"description": "Sets interceptors for producer or consumers. Producer interceptors have to be classes implementing org.apache.kafka.clients.producer.ProducerInterceptor Consumer interceptors have to be classes implementing org.apache.kafka.clients.consumer.ConsumerInterceptor Note that if you use Producer interceptor on a consumer it will throw a class cast exception in runtime",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.kerberosBeforeReloginMinTime": {
"name": "camel.component.kafka.kerberosBeforeReloginMinTime",
"description": "Login thread sleep time between refresh attempts.",
"defaultValue": "\"60000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.kerberosInitCmd": {
"name": "camel.component.kafka.kerberosInitCmd",
"description": "Kerberos kinit command path. Default is \/usr\/bin\/kinit",
"defaultValue": "\"\/usr\/bin\/kinit\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.kerberosPrincipalToLocalRules": {
"name": "camel.component.kafka.kerberosPrincipalToLocalRules",
"description": "A list of rules for mapping from principal names to short names (typically operating system usernames). The rules are evaluated in order and the first rule that matches a principal name is used to map it to a short name. Any later rules in the list are ignored. By default, principal names of the form {username}\/{hostname}{REALM} are mapped to {username}. For more details on the format please see the security authorization and acls documentation.. Multiple values can be separated by comma",
"defaultValue": "\"DEFAULT\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.kerberosRenewJitter": {
"name": "camel.component.kafka.kerberosRenewJitter",
"description": "Percentage of random jitter added to the renewal time.",
"defaultValue": "\"0.05\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.kerberosRenewWindowFactor": {
"name": "camel.component.kafka.kerberosRenewWindowFactor",
"description": "Login thread will sleep until the specified window factor of time from last refresh to ticket's expiry has been reached, at which time it will try to renew the ticket.",
"defaultValue": "\"0.8\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.saslJaasConfig": {
"name": "camel.component.kafka.saslJaasConfig",
"description": "Expose the kafka sasl.jaas.config parameter Example: org.apache.kafka.common.security.plain.PlainLoginModule required username=USERNAME password=PASSWORD;",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.saslKerberosServiceName": {
"name": "camel.component.kafka.saslKerberosServiceName",
"description": "The Kerberos principal name that Kafka runs as. This can be defined either in Kafka's JAAS config or in Kafka's config.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.saslMechanism": {
"name": "camel.component.kafka.saslMechanism",
"description": "The Simple Authentication and Security Layer (SASL) Mechanism used. For the valid values see http:\/\/www.iana.org\/assignments\/sasl-mechanisms\/sasl-mechanisms.xhtml",
"defaultValue": "\"GSSAPI\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.securityProtocol": {
"name": "camel.component.kafka.securityProtocol",
"description": "Protocol used to communicate with brokers. SASL_PLAINTEXT, PLAINTEXT and SSL are supported",
"defaultValue": "\"PLAINTEXT\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslCipherSuites": {
"name": "camel.component.kafka.sslCipherSuites",
"description": "A list of cipher suites. This is a named combination of authentication, encryption, MAC and key exchange algorithm used to negotiate the security settings for a network connection using TLS or SSL network protocol.By default all the available cipher suites are supported.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslContextParameters": {
"name": "camel.component.kafka.sslContextParameters",
"description": "SSL configuration using a Camel SSLContextParameters object. If configured it's applied before the other SSL endpoint parameters. NOTE: Kafka only supports loading keystore from file locations, so prefix the location with file: in the KeyStoreParameters.resource option.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslEnabledProtocols": {
"name": "camel.component.kafka.sslEnabledProtocols",
"description": "The list of protocols enabled for SSL connections. TLSv1.2, TLSv1.1 and TLSv1 are enabled by default.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslEndpointAlgorithm": {
"name": "camel.component.kafka.sslEndpointAlgorithm",
"description": "The endpoint identification algorithm to validate server hostname using server certificate.",
"defaultValue": "\"https\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslKeymanagerAlgorithm": {
"name": "camel.component.kafka.sslKeymanagerAlgorithm",
"description": "The algorithm used by key manager factory for SSL connections. Default value is the key manager factory algorithm configured for the Java Virtual Machine.",
"defaultValue": "\"SunX509\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslKeyPassword": {
"name": "camel.component.kafka.sslKeyPassword",
"description": "The password of the private key in the key store file. This is optional for client.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslKeystoreLocation": {
"name": "camel.component.kafka.sslKeystoreLocation",
"description": "The location of the key store file. This is optional for client and can be used for two-way authentication for client.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslKeystorePassword": {
"name": "camel.component.kafka.sslKeystorePassword",
"description": "The store password for the key store file.This is optional for client and only needed if ssl.keystore.location is configured.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslKeystoreType": {
"name": "camel.component.kafka.sslKeystoreType",
"description": "The file format of the key store file. This is optional for client. Default value is JKS",
"defaultValue": "\"JKS\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslProtocol": {
"name": "camel.component.kafka.sslProtocol",
"description": "The SSL protocol used to generate the SSLContext. Default setting is TLS, which is fine for most cases. Allowed values in recent JVMs are TLS, TLSv1.1 and TLSv1.2. SSL, SSLv2 and SSLv3 may be supported in older JVMs, but their usage is discouraged due to known security vulnerabilities.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslProvider": {
"name": "camel.component.kafka.sslProvider",
"description": "The name of the security provider used for SSL connections. Default value is the default security provider of the JVM.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslTrustmanagerAlgorithm": {
"name": "camel.component.kafka.sslTrustmanagerAlgorithm",
"description": "The algorithm used by trust manager factory for SSL connections. Default value is the trust manager factory algorithm configured for the Java Virtual Machine.",
"defaultValue": "\"PKIX\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslTruststoreLocation": {
"name": "camel.component.kafka.sslTruststoreLocation",
"description": "The location of the trust store file.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslTruststorePassword": {
"name": "camel.component.kafka.sslTruststorePassword",
"description": "The password for the trust store file.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.sslTruststoreType": {
"name": "camel.component.kafka.sslTruststoreType",
"description": "The file format of the trust store file. Default value is JKS.",
"defaultValue": "\"JKS\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.useGlobalSslContextParameters": {
"name": "camel.component.kafka.useGlobalSslContextParameters",
"description": "Enable usage of global SSL context parameters.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
}
}
}