blob: e9dc99de8ca29d6d7a70e742320943cac74527ac [file] [log] [blame]
{
"connector": {
"class": "org.apache.camel.kafkaconnector.kafka.CamelKafkaSourceConnector",
"artifactId": "camel-kafka-kafka-connector",
"groupId": "org.apache.camel.kafkaconnector",
"id": "camel-kafka-source",
"type": "source",
"version": "0.7.2",
"description": "Sent and receive messages to\/from an Apache Kafka broker."
},
"properties": {
"camel.source.path.topic": {
"name": "camel.source.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.source.endpoint.additionalProperties": {
"name": "camel.source.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.source.endpoint.brokers": {
"name": "camel.source.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.source.endpoint.clientId": {
"name": "camel.source.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.source.endpoint.headerFilterStrategy": {
"name": "camel.source.endpoint.headerFilterStrategy",
"description": "To use a custom HeaderFilterStrategy to filter header to and from Camel message.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.reconnectBackoffMaxMs": {
"name": "camel.source.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.source.endpoint.shutdownTimeout": {
"name": "camel.source.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.source.endpoint.allowManualCommit": {
"name": "camel.source.endpoint.allowManualCommit",
"description": "Whether to allow doing manual commits via KafkaManualCommit. If this option is enabled then an instance of KafkaManualCommit is stored on the Exchange message header, which allows end users to access this API and perform manual offset commits via the Kafka consumer.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.autoCommitEnable": {
"name": "camel.source.endpoint.autoCommitEnable",
"description": "If true, periodically commit to ZooKeeper the offset of messages already fetched by the consumer. This committed offset will be used when the process fails as the position from which the new consumer will begin.",
"defaultValue": "\"true\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.autoCommitIntervalMs": {
"name": "camel.source.endpoint.autoCommitIntervalMs",
"description": "The frequency in ms that the consumer offsets are committed to zookeeper.",
"defaultValue": "\"5000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.autoCommitOnStop": {
"name": "camel.source.endpoint.autoCommitOnStop",
"description": "Whether to perform an explicit auto commit when the consumer stops to ensure the broker has a commit from the last consumed message. This requires the option autoCommitEnable is turned on. The possible values are: sync, async, or none. And sync is the default value. One of: [sync] [async] [none]",
"defaultValue": "\"sync\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"sync",
"async",
"none"
]
},
"camel.source.endpoint.autoOffsetReset": {
"name": "camel.source.endpoint.autoOffsetReset",
"description": "What to do when there is no initial offset in ZooKeeper or if an offset is out of range: earliest : automatically reset the offset to the earliest offset latest : automatically reset the offset to the latest offset fail: throw exception to the consumer One of: [latest] [earliest] [none]",
"defaultValue": "\"latest\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"latest",
"earliest",
"none"
]
},
"camel.source.endpoint.breakOnFirstError": {
"name": "camel.source.endpoint.breakOnFirstError",
"description": "This options controls what happens when a consumer is processing an exchange and it fails. If the option is false then the consumer continues to the next message and processes it. If the option is true then the consumer breaks out, and will seek back to offset of the message that caused a failure, and then re-attempt to process this message. However this can lead to endless processing of the same message if its bound to fail every time, eg a poison message. Therefore its recommended to deal with that for example by using Camel's error handler.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.bridgeErrorHandler": {
"name": "camel.source.endpoint.bridgeErrorHandler",
"description": "Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.checkCrcs": {
"name": "camel.source.endpoint.checkCrcs",
"description": "Automatically check the CRC32 of the records consumed. This ensures no on-the-wire or on-disk corruption to the messages occurred. This check adds some overhead, so it may be disabled in cases seeking extreme performance.",
"defaultValue": "\"true\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.consumerRequestTimeoutMs": {
"name": "camel.source.endpoint.consumerRequestTimeoutMs",
"description": "The configuration controls the maximum amount of time the client will wait for the response of a request. If the response is not received before the timeout elapses the client will resend the request if necessary or fail the request if retries are exhausted.",
"defaultValue": "\"40000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.consumersCount": {
"name": "camel.source.endpoint.consumersCount",
"description": "The number of consumers that connect to kafka server",
"defaultValue": "1",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.consumerStreams": {
"name": "camel.source.endpoint.consumerStreams",
"description": "Number of concurrent consumers on the consumer",
"defaultValue": "10",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.fetchMaxBytes": {
"name": "camel.source.endpoint.fetchMaxBytes",
"description": "The maximum amount of data the server should return for a fetch request This is not an absolute maximum, if the first message in the first non-empty partition of the fetch is larger than this value, the message will still be returned to ensure that the consumer can make progress. The maximum message size accepted by the broker is defined via message.max.bytes (broker config) or max.message.bytes (topic config). Note that the consumer performs multiple fetches in parallel.",
"defaultValue": "\"52428800\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.fetchMinBytes": {
"name": "camel.source.endpoint.fetchMinBytes",
"description": "The minimum amount of data the server should return for a fetch request. If insufficient data is available the request will wait for that much data to accumulate before answering the request.",
"defaultValue": "\"1\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.fetchWaitMaxMs": {
"name": "camel.source.endpoint.fetchWaitMaxMs",
"description": "The maximum amount of time the server will block before answering the fetch request if there isn't sufficient data to immediately satisfy fetch.min.bytes",
"defaultValue": "\"500\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.groupId": {
"name": "camel.source.endpoint.groupId",
"description": "A string that uniquely identifies the group of consumer processes to which this consumer belongs. By setting the same group id multiple processes indicate that they are all part of the same consumer group. This option is required for consumers.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.headerDeserializer": {
"name": "camel.source.endpoint.headerDeserializer",
"description": "To use a custom KafkaHeaderDeserializer to deserialize kafka headers values",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.heartbeatIntervalMs": {
"name": "camel.source.endpoint.heartbeatIntervalMs",
"description": "The expected time between heartbeats to the consumer coordinator when using Kafka's group management facilities. Heartbeats are used to ensure that the consumer's session stays active and to facilitate rebalancing when new consumers join or leave the group. The value must be set lower than session.timeout.ms, but typically should be set no higher than 1\/3 of that value. It can be adjusted even lower to control the expected time for normal rebalances.",
"defaultValue": "\"3000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.keyDeserializer": {
"name": "camel.source.endpoint.keyDeserializer",
"description": "Deserializer class for key that implements the Deserializer interface.",
"defaultValue": "\"org.apache.kafka.common.serialization.StringDeserializer\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.maxPartitionFetchBytes": {
"name": "camel.source.endpoint.maxPartitionFetchBytes",
"description": "The maximum amount of data per-partition the server will return. The maximum total memory used for a request will be #partitions max.partition.fetch.bytes. This size must be at least as large as the maximum message size the server allows or else it is possible for the producer to send messages larger than the consumer can fetch. If that happens, the consumer can get stuck trying to fetch a large message on a certain partition.",
"defaultValue": "\"1048576\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.maxPollIntervalMs": {
"name": "camel.source.endpoint.maxPollIntervalMs",
"description": "The maximum delay between invocations of poll() when using consumer group management. This places an upper bound on the amount of time that the consumer can be idle before fetching more records. If poll() is not called before expiration of this timeout, then the consumer is considered failed and the group will rebalance in order to reassign the partitions to another member.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.maxPollRecords": {
"name": "camel.source.endpoint.maxPollRecords",
"description": "The maximum number of records returned in a single call to poll()",
"defaultValue": "\"500\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.offsetRepository": {
"name": "camel.source.endpoint.offsetRepository",
"description": "The offset repository to use in order to locally store the offset of each partition of the topic. Defining one will disable the autocommit.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.partitionAssignor": {
"name": "camel.source.endpoint.partitionAssignor",
"description": "The class name of the partition assignment strategy that the client will use to distribute partition ownership amongst consumer instances when group management is used",
"defaultValue": "\"org.apache.kafka.clients.consumer.RangeAssignor\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.pollTimeoutMs": {
"name": "camel.source.endpoint.pollTimeoutMs",
"description": "The timeout used when polling the KafkaConsumer.",
"defaultValue": "\"5000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.seekTo": {
"name": "camel.source.endpoint.seekTo",
"description": "Set if KafkaConsumer will read from beginning or end on startup: beginning : read from beginning end : read from end This is replacing the earlier property seekToBeginning One of: [beginning] [end]",
"priority": "MEDIUM",
"required": "false",
"enum": [
"beginning",
"end"
]
},
"camel.source.endpoint.sessionTimeoutMs": {
"name": "camel.source.endpoint.sessionTimeoutMs",
"description": "The timeout used to detect failures when using Kafka's group management facilities.",
"defaultValue": "\"10000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.specificAvroReader": {
"name": "camel.source.endpoint.specificAvroReader",
"description": "This enables the use of a specific Avro reader for use with the Confluent Platform schema registry and the io.confluent.kafka.serializers.KafkaAvroDeserializer. This option is only available in the Confluent Platform (not standard Apache Kafka)",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.topicIsPattern": {
"name": "camel.source.endpoint.topicIsPattern",
"description": "Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.valueDeserializer": {
"name": "camel.source.endpoint.valueDeserializer",
"description": "Deserializer class for value that implements the Deserializer interface.",
"defaultValue": "\"org.apache.kafka.common.serialization.StringDeserializer\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.exceptionHandler": {
"name": "camel.source.endpoint.exceptionHandler",
"description": "To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.exchangePattern": {
"name": "camel.source.endpoint.exchangePattern",
"description": "Sets the exchange pattern when the consumer creates an exchange. One of: [InOnly] [InOut] [InOptionalOut]",
"priority": "MEDIUM",
"required": "false",
"enum": [
"InOnly",
"InOut",
"InOptionalOut"
]
},
"camel.source.endpoint.synchronous": {
"name": "camel.source.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.source.endpoint.schemaRegistryURL": {
"name": "camel.source.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.source.endpoint.interceptorClasses": {
"name": "camel.source.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.source.endpoint.kerberosBeforeReloginMinTime": {
"name": "camel.source.endpoint.kerberosBeforeReloginMinTime",
"description": "Login thread sleep time between refresh attempts.",
"defaultValue": "\"60000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.kerberosInitCmd": {
"name": "camel.source.endpoint.kerberosInitCmd",
"description": "Kerberos kinit command path. Default is \/usr\/bin\/kinit",
"defaultValue": "\"\/usr\/bin\/kinit\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.kerberosPrincipalToLocalRules": {
"name": "camel.source.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.source.endpoint.kerberosRenewJitter": {
"name": "camel.source.endpoint.kerberosRenewJitter",
"description": "Percentage of random jitter added to the renewal time.",
"defaultValue": "\"0.05\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.kerberosRenewWindowFactor": {
"name": "camel.source.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.source.endpoint.saslJaasConfig": {
"name": "camel.source.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.source.endpoint.saslKerberosServiceName": {
"name": "camel.source.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.source.endpoint.saslMechanism": {
"name": "camel.source.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.source.endpoint.securityProtocol": {
"name": "camel.source.endpoint.securityProtocol",
"description": "Protocol used to communicate with brokers. SASL_PLAINTEXT, PLAINTEXT and SSL are supported",
"defaultValue": "\"PLAINTEXT\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.sslCipherSuites": {
"name": "camel.source.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.source.endpoint.sslContextParameters": {
"name": "camel.source.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.source.endpoint.sslEnabledProtocols": {
"name": "camel.source.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.source.endpoint.sslEndpointAlgorithm": {
"name": "camel.source.endpoint.sslEndpointAlgorithm",
"description": "The endpoint identification algorithm to validate server hostname using server certificate.",
"defaultValue": "\"https\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.sslKeymanagerAlgorithm": {
"name": "camel.source.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.source.endpoint.sslKeystoreType": {
"name": "camel.source.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.source.endpoint.sslProtocol": {
"name": "camel.source.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.source.endpoint.sslProvider": {
"name": "camel.source.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.source.endpoint.sslTrustmanagerAlgorithm": {
"name": "camel.source.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.source.endpoint.sslTruststoreType": {
"name": "camel.source.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.allowManualCommit": {
"name": "camel.component.kafka.allowManualCommit",
"description": "Whether to allow doing manual commits via KafkaManualCommit. If this option is enabled then an instance of KafkaManualCommit is stored on the Exchange message header, which allows end users to access this API and perform manual offset commits via the Kafka consumer.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.autoCommitEnable": {
"name": "camel.component.kafka.autoCommitEnable",
"description": "If true, periodically commit to ZooKeeper the offset of messages already fetched by the consumer. This committed offset will be used when the process fails as the position from which the new consumer will begin.",
"defaultValue": "\"true\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.autoCommitIntervalMs": {
"name": "camel.component.kafka.autoCommitIntervalMs",
"description": "The frequency in ms that the consumer offsets are committed to zookeeper.",
"defaultValue": "\"5000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.autoCommitOnStop": {
"name": "camel.component.kafka.autoCommitOnStop",
"description": "Whether to perform an explicit auto commit when the consumer stops to ensure the broker has a commit from the last consumed message. This requires the option autoCommitEnable is turned on. The possible values are: sync, async, or none. And sync is the default value. One of: [sync] [async] [none]",
"defaultValue": "\"sync\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"sync",
"async",
"none"
]
},
"camel.component.kafka.autoOffsetReset": {
"name": "camel.component.kafka.autoOffsetReset",
"description": "What to do when there is no initial offset in ZooKeeper or if an offset is out of range: earliest : automatically reset the offset to the earliest offset latest : automatically reset the offset to the latest offset fail: throw exception to the consumer One of: [latest] [earliest] [none]",
"defaultValue": "\"latest\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"latest",
"earliest",
"none"
]
},
"camel.component.kafka.breakOnFirstError": {
"name": "camel.component.kafka.breakOnFirstError",
"description": "This options controls what happens when a consumer is processing an exchange and it fails. If the option is false then the consumer continues to the next message and processes it. If the option is true then the consumer breaks out, and will seek back to offset of the message that caused a failure, and then re-attempt to process this message. However this can lead to endless processing of the same message if its bound to fail every time, eg a poison message. Therefore its recommended to deal with that for example by using Camel's error handler.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.bridgeErrorHandler": {
"name": "camel.component.kafka.bridgeErrorHandler",
"description": "Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.checkCrcs": {
"name": "camel.component.kafka.checkCrcs",
"description": "Automatically check the CRC32 of the records consumed. This ensures no on-the-wire or on-disk corruption to the messages occurred. This check adds some overhead, so it may be disabled in cases seeking extreme performance.",
"defaultValue": "\"true\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.consumerRequestTimeoutMs": {
"name": "camel.component.kafka.consumerRequestTimeoutMs",
"description": "The configuration controls the maximum amount of time the client will wait for the response of a request. If the response is not received before the timeout elapses the client will resend the request if necessary or fail the request if retries are exhausted.",
"defaultValue": "\"40000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.consumersCount": {
"name": "camel.component.kafka.consumersCount",
"description": "The number of consumers that connect to kafka server",
"defaultValue": "1",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.consumerStreams": {
"name": "camel.component.kafka.consumerStreams",
"description": "Number of concurrent consumers on the consumer",
"defaultValue": "10",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.fetchMaxBytes": {
"name": "camel.component.kafka.fetchMaxBytes",
"description": "The maximum amount of data the server should return for a fetch request This is not an absolute maximum, if the first message in the first non-empty partition of the fetch is larger than this value, the message will still be returned to ensure that the consumer can make progress. The maximum message size accepted by the broker is defined via message.max.bytes (broker config) or max.message.bytes (topic config). Note that the consumer performs multiple fetches in parallel.",
"defaultValue": "\"52428800\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.fetchMinBytes": {
"name": "camel.component.kafka.fetchMinBytes",
"description": "The minimum amount of data the server should return for a fetch request. If insufficient data is available the request will wait for that much data to accumulate before answering the request.",
"defaultValue": "\"1\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.fetchWaitMaxMs": {
"name": "camel.component.kafka.fetchWaitMaxMs",
"description": "The maximum amount of time the server will block before answering the fetch request if there isn't sufficient data to immediately satisfy fetch.min.bytes",
"defaultValue": "\"500\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.groupId": {
"name": "camel.component.kafka.groupId",
"description": "A string that uniquely identifies the group of consumer processes to which this consumer belongs. By setting the same group id multiple processes indicate that they are all part of the same consumer group. This option is required for consumers.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.headerDeserializer": {
"name": "camel.component.kafka.headerDeserializer",
"description": "To use a custom KafkaHeaderDeserializer to deserialize kafka headers values",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.heartbeatIntervalMs": {
"name": "camel.component.kafka.heartbeatIntervalMs",
"description": "The expected time between heartbeats to the consumer coordinator when using Kafka's group management facilities. Heartbeats are used to ensure that the consumer's session stays active and to facilitate rebalancing when new consumers join or leave the group. The value must be set lower than session.timeout.ms, but typically should be set no higher than 1\/3 of that value. It can be adjusted even lower to control the expected time for normal rebalances.",
"defaultValue": "\"3000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.keyDeserializer": {
"name": "camel.component.kafka.keyDeserializer",
"description": "Deserializer class for key that implements the Deserializer interface.",
"defaultValue": "\"org.apache.kafka.common.serialization.StringDeserializer\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.maxPartitionFetchBytes": {
"name": "camel.component.kafka.maxPartitionFetchBytes",
"description": "The maximum amount of data per-partition the server will return. The maximum total memory used for a request will be #partitions max.partition.fetch.bytes. This size must be at least as large as the maximum message size the server allows or else it is possible for the producer to send messages larger than the consumer can fetch. If that happens, the consumer can get stuck trying to fetch a large message on a certain partition.",
"defaultValue": "\"1048576\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.maxPollIntervalMs": {
"name": "camel.component.kafka.maxPollIntervalMs",
"description": "The maximum delay between invocations of poll() when using consumer group management. This places an upper bound on the amount of time that the consumer can be idle before fetching more records. If poll() is not called before expiration of this timeout, then the consumer is considered failed and the group will rebalance in order to reassign the partitions to another member.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.maxPollRecords": {
"name": "camel.component.kafka.maxPollRecords",
"description": "The maximum number of records returned in a single call to poll()",
"defaultValue": "\"500\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.offsetRepository": {
"name": "camel.component.kafka.offsetRepository",
"description": "The offset repository to use in order to locally store the offset of each partition of the topic. Defining one will disable the autocommit.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.partitionAssignor": {
"name": "camel.component.kafka.partitionAssignor",
"description": "The class name of the partition assignment strategy that the client will use to distribute partition ownership amongst consumer instances when group management is used",
"defaultValue": "\"org.apache.kafka.clients.consumer.RangeAssignor\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.pollTimeoutMs": {
"name": "camel.component.kafka.pollTimeoutMs",
"description": "The timeout used when polling the KafkaConsumer.",
"defaultValue": "\"5000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.seekTo": {
"name": "camel.component.kafka.seekTo",
"description": "Set if KafkaConsumer will read from beginning or end on startup: beginning : read from beginning end : read from end This is replacing the earlier property seekToBeginning One of: [beginning] [end]",
"priority": "MEDIUM",
"required": "false",
"enum": [
"beginning",
"end"
]
},
"camel.component.kafka.sessionTimeoutMs": {
"name": "camel.component.kafka.sessionTimeoutMs",
"description": "The timeout used to detect failures when using Kafka's group management facilities.",
"defaultValue": "\"10000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.specificAvroReader": {
"name": "camel.component.kafka.specificAvroReader",
"description": "This enables the use of a specific Avro reader for use with the Confluent Platform schema registry and the io.confluent.kafka.serializers.KafkaAvroDeserializer. This option is only available in the Confluent Platform (not standard Apache Kafka)",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.topicIsPattern": {
"name": "camel.component.kafka.topicIsPattern",
"description": "Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.valueDeserializer": {
"name": "camel.component.kafka.valueDeserializer",
"description": "Deserializer class for value that implements the Deserializer interface.",
"defaultValue": "\"org.apache.kafka.common.serialization.StringDeserializer\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.kafka.kafkaManualCommitFactory": {
"name": "camel.component.kafka.kafkaManualCommitFactory",
"description": "Factory to use for creating KafkaManualCommit instances. This allows to plugin a custom factory to create custom KafkaManualCommit instances in case special logic is needed when doing manual commits that deviates from the default implementation that comes out of the box.",
"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.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.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"
}
}
}