<a id="jms-source-connector-config"></a>

# Configuration Reference for JMS Source Connector for Confluent Platform

To use this connector, specify the name of the connector class in the
`connector.class` configuration property.

```properties
connector.class=io.confluent.connect.jms.JmsSourceConnector
```

Connector-specific configuration properties are described below.

## JMS Connection

`java.naming.provider.url`
: The url to connect to.
  <br/>
  * Type: string
  * Importance: high

`java.naming.factory.initial`
: The initial context for the JMS Provider See [Context.INITIAL_CONTEXT_FACTORY](https://docs.oracle.com/javase/7/docs/api/javax/naming/Context.html#INITIAL_CONTEXT_FACTORY)
  for more details.
  <br/>
  * Type: string
  * Importance: high

`connection.factory.name`
: The name that is passed to the [Context.lookup](https://docs.oracle.com/javase/7/docs/api/javax/naming/Context.html#lookup(java.lang.String))
  of the InitialContext specified in `java.naming.factory.initial`. This
  should return the [ConnectionFactory](https://docs.oracle.com/javaee/6/api/javax/jms/ConnectionFactory.html) for
  the JMS provider.
  <br/>
  * Type: string
  * Default: ConnectionFactory
  * Importance: high

`java.naming.security.principal`
: The security principal to connect with. This is typically a username. See
  [Context.SECURITY_PRINCIPAL](https://docs.oracle.com/javase/7/docs/api/javax/naming/Context.html#SECURITY_PRINCIPAL)
  for more details. The documentation for your JMS provider will be helpful as
  well.
  <br/>
  * Type: string
  * Default: “”
  * Importance: high

`java.naming.security.credentials`
: The security credentials to connect with. This is typically a password. See
  [Context.SECURITY_CREDENTIALS](https://docs.oracle.com/javase/7/docs/api/javax/naming/Context.html#SECURITY_CREDENTIALS)
  for more details. The documentation for your JMS provider will be helpful as
  well.
  <br/>
  * Type: password
  * Default: [hidden]
  * Importance: high

## JMS Session

`jms.destination.name`
: The name of the JMS destination (queue or topic) to read from.
  <br/>
  * Type: string
  * Importance: high

`jms.destination.type`
: The type of JMS destination, which is either `queue` or `topic`.
  <br/>
  * Type: string
  * Default: queue
  * Valid Values: [queue, topic]
  * Importance: high

`batch.size`
: The maximum number of records that a connector task may read from the JMS
  broker before writing to Kafka. The task holds these records until they are
  acknowledged in Kafka so this may affect memory usage.
  <br/>
  * Type: int
  * Default: 1024
  * Valid Values: [1,…]
  * Importance: low

`max.pending.messages`
: The maximum number of messages per task that can be received from JMS brokers
  and produced to Kafka before the task acknowledges the JMS session/messages.
  If the task fails and is restarted, this is the maximum number of JMS messages
  the task may duplicate in Kafka. This is typically set larger than
  `batch.size`. A smaller value than `batch.size` limits the size of the
  batches.
  <br/>
  * Type: int
  * Default: 4096
  * Valid Values: [1,…]
  * Importance: low

`max.poll.duration`
: The maximum amount of time each task can build a batch. The batch is closed
  and sent to Kafka if not enough messages are read during the time allotted.
  This helps limit connector lag when the JMS queue/topic has a lower
  throughput.
  <br/>
  * Type: int
  * Default: 60000
  * Valid Values: [1,…]
  * Importance: low

`max.retry.time`
: The maximum amount of time in milliseconds the connector
  retries after receiving a retriable exception. The `max.retry.time` must be
  set to a value of at least 100 milliseconds to be enabled. A value less than
  100 milliseconds disables retries. Note that some retriable exceptions might
  require establishing a new JMS session.
  <br/>
  * Type: long
  * Default: 1 hour
  * Importance: low

`character.encoding`
: The character encoding to use while receiving the message.
  <br/>
  * Type: string
  * Default: UTF-8
  * Valid Values: one of [ISO-8859-1, UTF-8, UTF-16, UTF-16LE, UTF-16BE, US-ASCII]
  * Importance: low

`jms.subscription.durable`
: Whether the subscription of the connector tasks to a JMS topic is durable or not.
  <br/>
  * Type: boolean
  * Default: false
  * Importance: medium

`jms.subscription.name`
: The name of the JMS subscription. Supported only in durable subscriptions and JMS topics.
  <br/>
  * Type: string
  * Default: null
  * Importance: medium

`jms.message.selector`
: The [message selector](https://docs.oracle.com/javaee/6/api/javax/jms/Session.html#createConsumer(javax.jms.Destination,java.lang.String,boolean)) that should be applied to messages in the
  destination.
  <br/>
  * Type: string
  * Default: “”
  * Importance: high

`jms.receive.block.duration`
: The maximum amount of time in milliseconds that a JMS receive call will be
  blocked. Setting the value helps in reducing the number of empty receive
  calls–the call will be blocked until the task receives a message.
  <br/>
  * Type: long
  * Default: 5
  * Valid Values: [5,….1800000]
  * Importance: low

## Behavior On Errors

`behavior.on.error`
: Determines how errors are managed by the connector. It must be set to one of the following:
  <br/>
  - `FAIL`: The connector task fails immediately when an error is encountered.
  - `IGNORE`: The connector ignores the error and continues processing.
  <br/>
  * Type: string
  * Default: FAIL
  * Valid Values: [FAIL, IGNORE]
  * Importance: medium

## Kafka

`kafka.topic`
: The name of the Kafka topic where the connector writes all records that were
  read from the JMS broker.
  <br/>
  * Type: string
  * Importance: high

## Auto topic creation

For more information about Auto topic creation, see [Configuring
Auto Topic Creation for Source
Connectors](/kafka-connectors/self-managed/userguide.html#configuring-auto-topic-creation-for-source-connectors).

Configuration properties accept regular expressions (regex) that are defined as
[Java regex](https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html).

`topic.creation.groups`
: A list of group aliases that are used to define per-group topic configurations for matching topics. A `default` group always exists and matches all topics.
  <br/>
  * Type: List of String types
  * Default: empty
  * Possible Values: The values of this property refer to any additional groups. A `default` group is always defined for topic configurations.

`topic.creation.$alias.replication.factor`
: The replication factor for new topics created by the connector. This value must not be larger than the number of brokers in the Kafka cluster. If this value is larger than the number of Kafka brokers, an error occurs when the connector attempts to create a topic. This is a **required property** for the `default` group. This property is optional for any other group defined in `topic.creation.groups`. Other groups use the Kafka broker default value.
  <br/>
  * Type: int
  * Default: n/a
  * Possible Values: `>= 1` for a specific valid value or `-1` to use the Kafka broker’s default value.

`topic.creation.$alias.partitions`
: The number of topic partitions created by this connector. This is a **required property** for the `default` group. This property is optional for any other group defined in `topic.creation.groups`. Other groups use the Kafka broker default value.
  <br/>
  * Type: int
  * Default: n/a
  * Possible Values: `>= 1` for a specific valid value or `-1` to use the Kafka broker’s default value.

`topic.creation.$alias.include`
: A list of strings that represent regular expressions that match topic names. This list is used to include topics with matching values, and apply this group’s specific configuration to the matching topics. `$alias` applies to any group defined in `topic.creation.groups`. This property does not apply to the `default` group.
  <br/>
  * Type: List of String types
  * Default: empty
  * Possible Values: Comma-separated list of exact topic names or regular expressions.

`topic.creation.$alias.exclude`
: A list of strings representing regular expressions that match topic names. This list is used to exclude topics with matching values from getting the group’s specfic configuration. `$alias` applies to any group defined in `topic.creation.groups`. This property does not apply to the `default` group. Note that exclusion rules override any inclusion rules for topics.
  <br/>
  * Type: List of String types
  * Default: empty
  * Possible Values: Comma-separated list of exact topic names or regular expressions.

`topic.creation.$alias.${kafkaTopicSpecificConfigName}`
: Any of the [Changing Broker Configurations Dynamically](/platform/current/kafka/dynamic-config.html#changing-broker-configurations-dynamically) for the version of the Kafka broker where the records will be written. The broker’s topic-level configuration value is used if the configuration is not specified for the rule. `$alias` applies to the `default` group as well as any group defined in `topic.creation.groups`.
  <br/>
  * Type: property values
  * Default: Kafka broker value

<!-- WARNING: THIS IS A SHARED FILE AND THE SOURCE IS LOCATED IN DOCS-COMMON. DO NOT ADD TO ANY OTHER REPO. -->

## CSFLE and CSPE configurations

`csfle.enabled`

Accepts a boolean value. CSFLE is enabled for the connector if `csfle.enabled` is set to True.

* Type: boolean
* Default: False

`auto.register.schemas`

Specifies if the Serializer should attempt to register the Schema with Schema Registry.

* Type: boolean
* Default: true
* Importance: medium

`use.latest.version`

Only applies when `auto.register.schemas` is set to false. If `auto.register.schemas` is set to false and `use.latest.version` is set to true, then instead of deriving a schema for the object passed to the client for serialization, Schema Registry uses the latest version of the schema in the subject for serialization.

* Type: boolean
* Default: true
* Importance: medium

<a id="jms-source-connector-license-config"></a>

## Confluent Platform license

`confluent.topic.bootstrap.servers`
: A list of host/port pairs to use for establishing the initial connection to
  the Kafka cluster used for licensing. All servers in the cluster will be
  discovered from the initial connection. This list should be in the form
  <br/>
  ```text
  host1:port1,host2:port2,...
  ```
  <br/>
  Since these servers are just used for the initial connection to discover the
  full cluster membership (which may change dynamically), this list need not
  contain the full set of servers (you may want more than one, though, in case a
  server is down).
  <br/>
  * Type: list
  * Importance: high

`confluent.topic`
: Name of the Kafka topic used for Confluent Platform configuration, including
  licensing information.
  <br/>
  * Type: string
  * Default: \_confluent-command
  * Importance: low

`confluent.topic.replication.factor`
: The replication factor for the Kafka topic used for Confluent Platform
  configuration, including licensing information. This is used only if the topic
  does not already exist, and the default of 3 is appropriate for production
  use. If you are using a development environment with less than 3 brokers, you
  must set this to the number of brokers (often 1).
  <br/>
  * Type: int
  * Default: 3
  * Importance: low

### Confluent license properties

You can put license-related properties in the connector configuration, or in license-related properties in the
[Connect worker configuration](https://docs.confluent.io/kafka-connectors/self-managed/license.html#centralized-license-in-the-kconnect-long-worker) instead of in each connector configuration.

This connector is proprietary and requires a license. The license information is stored in the `_confluent-command`
topic. If the broker requires SSL for connections, you must include the security-related `confluent.topic.*` properties
as described below.

`confluent.license`
: Confluent issues enterprise license keys to each subscriber. The license key is text that you can copy and
  paste as the value for `confluent.license`. A trial license allows using the connector for a 30-day trial period. A developer license allows using the connector indefinitely for single-broker development environments.
  <br/>
  If you are a subscriber, contact Confluent Support for more information.
  <br/>
  * Type: string
  * Default: “”
  * Valid Values: Confluent Platform license
  * Importance: high

`confluent.topic.ssl.truststore.location`
: The location of the trust store file.
  <br/>
  * Type: string
  * Default: null
  * Importance: high

`confluent.topic.ssl.truststore.password`
: The password for the trust store file. If a password is not set access to the truststore is still available, but
  integrity checking is disabled.
  <br/>
  * Type: password
  * Default: null
  * Importance: high

`confluent.topic.ssl.keystore.location`
: The location of the key store file. This is optional for client and can be used for two-way authentication for client.
  <br/>
  * Type: string
  * Default: null
  * Importance: high

`confluent.topic.ssl.keystore.password`
: The store password for the key store file. This is optional for client and only needed if ssl.keystore.location is configured.
  <br/>
  * Type: password
  * Default: null
  * Importance: high

`confluent.topic.ssl.key.password`
: The password of the private key in the key store file. This is optional for client.
  <br/>
  * Type: password
  * Default: null
  * Importance: high

`confluent.topic.security.protocol`
: Protocol used to communicate with brokers. Valid values are: PLAINTEXT, SSL, SASL_PLAINTEXT, SASL_SSL.
  <br/>
  * Type: string
  * Default: “PLAINTEXT”
  * Importance: medium

<a id="jms-source-license-topic-configuration"></a>

#### License topic configuration

A Confluent enterprise license is stored in the `_confluent-command` topic.
This topic is created by default and contains the license that corresponds to
the license key supplied through the `confluent.license` property. No public
keys are stored in Kafka topics.

The following describes how the default `_confluent-command` topic is
generated under different scenarios:

* A 30-day trial license is automatically generated for the `_confluent-command` topic if you do not add the `confluent.license` property or leave this property empty (for example, `confluent.license=`).
* Adding a valid license key (for example, `confluent.license=<valid-license-key>`) adds a valid license in the `_confluent-command` topic.

Here is an example of the minimal properties for development and testing.

You can change the name of the `_confluent-command` topic using the
`confluent.topic` property (for instance, if your environment has strict
naming conventions). The example below shows this change and the configured
Kafka bootstrap server.

```none
confluent.topic=foo_confluent-command
confluent.topic.bootstrap.servers=localhost:9092
```

The example above shows the minimally required bootstrap server property that
you can use for development and testing. For a production environment, you add
the normal producer, consumer, and topic configuration properties to the
connector properties, prefixed with `confluent.topic.`.

#### License topic ACLs

The `_confluent-command` topic contains the license that corresponds to the
license key supplied through the `confluent.license` property. It is created
by default. Connectors that access this topic require the following ACLs
configured:

* CREATE and DESCRIBE on the resource cluster, if the connector needs to create the topic.
* DESCRIBE, READ, and WRITE on the `_confluent-command` topic.

  #### IMPORTANT
  You can also use DESCRIBE and READ without WRITE to restrict access to
  read-only for license topic ACLs. If a topic exists, the LicenseManager
  will not try to create the topic.

You can provide access either individually for each principal that will
use the license or use a [wildcard entry](/platform/current/kafka/authorization.html#acl-wildcard-principals) to
allow all clients. The following examples show commands that you can use to
configure ACLs for the resource cluster and `_confluent-command` topic.

1. Set a CREATE and DESCRIBE ACL on the resource cluster:
   ```none
   kafka-acls --bootstrap-server localhost:9092 --command-config adminclient-configs.conf \
   --add --allow-principal User:<principal> \
   --operation CREATE --operation DESCRIBE --cluster
   ```
2. Set a DESCRIBE, READ, and WRITE ACL on the `_confluent-command` topic:
   ```none
   kafka-acls --bootstrap-server localhost:9092 --command-config adminclient-configs.conf \
   --add --allow-principal User:<principal> \
   --operation DESCRIBE --operation READ --operation WRITE --topic _confluent-command
   ```

#### License topic ACLs

The `_confluent-command` topic contains the license that corresponds to the
license key supplied through the `confluent.license` property. It is created
by default. Connectors that access this topic require the following ACLs
configured:

* CREATE and DESCRIBE on the resource cluster, if the connector needs to create the topic.
* DESCRIBE, READ, and WRITE on the `_confluent-command` topic.

  #### IMPORTANT
  You can also use DESCRIBE and READ without WRITE to restrict access to
  read-only for license topic ACLs. If a topic exists, the LicenseManager
  will not try to create the topic.

You can provide access either individually for each principal that will
use the license or use a [wildcard entry](/platform/current/kafka/authorization.html#acl-wildcard-principals) to
allow all clients. The following examples show commands that you can use to
configure ACLs for the resource cluster and `_confluent-command` topic.

1. Set a CREATE and DESCRIBE ACL on the resource cluster:
   ```none
   kafka-acls --bootstrap-server localhost:9092 --command-config adminclient-configs.conf \
   --add --allow-principal User:<principal> \
   --operation CREATE --operation DESCRIBE --cluster
   ```
2. Set a DESCRIBE, READ, and WRITE ACL on the `_confluent-command` topic:
   ```none
   kafka-acls --bootstrap-server localhost:9092 --command-config adminclient-configs.conf \
   --add --allow-principal User:<principal> \
   --operation DESCRIBE --operation READ --operation WRITE --topic _confluent-command
   ```

#### Override Default Configuration Properties

You can override the replication factor using
`confluent.topic.replication.factor`. For example, when using a Kafka cluster
as a destination with less than three brokers (for development and testing) you
should set the `confluent.topic.replication.factor` property to `1`.

You can override producer-specific properties by using the
`producer.override.*` prefix (for source connectors) and consumer-specific
properties by using the `consumer.override.*` prefix (for sink connectors).

You can use the defaults or customize the other properties as well. For example,
the `confluent.topic.client.id` property defaults to the name of the connector
with `-licensing` suffix. You can specify the configuration settings for
brokers that require SSL or SASL for client connections using this prefix.

You cannot override the cleanup policy of a topic because the topic always has a
single partition and is compacted. Also, do not specify serializers and
deserializers using this prefix; they are ignored if added.
