blob: 45c0caca5470aab1fb5b18e01f72eb2ab2e9bdf0 [file] [log] [blame]
// kafka-connector options: START
[[camel-jdbc-kafka-connector-sink]]
= camel-jdbc-kafka-connector sink configuration
When using camel-jdbc-kafka-connector as sink make sure to use the following Maven dependency to have support for the connector:
[source,xml]
----
<dependency>
<groupId>org.apache.camel.kafkaconnector</groupId>
<artifactId>camel-jdbc-kafka-connector</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel Kafka connector version -->
</dependency>
----
The camel-jdbc sink connector supports 19 options, which are listed below.
[width="100%",cols="2,5,^1,2",options="header"]
|===
| Name | Description | Default | Priority
| *camel.sink.path.dataSourceName* | Name of DataSource to lookup in the Registry. If the name is dataSource or default, then Camel will attempt to lookup a default DataSource from the registry, meaning if there is a only one instance of DataSource found, then this DataSource will be used. | null | HIGH
| *camel.sink.endpoint.allowNamedParameters* | Whether to allow using named parameters in the queries. | true | MEDIUM
| *camel.sink.endpoint.lazyStartProducer* | 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. | false | MEDIUM
| *camel.sink.endpoint.outputClass* | Specify the full package and class name to use as conversion when outputType=SelectOne or SelectList. | null | MEDIUM
| *camel.sink.endpoint.outputType* | Determines the output the producer should use. One of: [SelectOne] [SelectList] [StreamList] | "SelectList" | MEDIUM
| *camel.sink.endpoint.parameters* | Optional parameters to the java.sql.Statement. For example to set maxRows, fetchSize etc. | null | MEDIUM
| *camel.sink.endpoint.readSize* | The default maximum number of rows that can be read by a polling query. The default value is 0. | null | MEDIUM
| *camel.sink.endpoint.resetAutoCommit* | Camel will set the autoCommit on the JDBC connection to be false, commit the change after executed the statement and reset the autoCommit flag of the connection at the end, if the resetAutoCommit is true. If the JDBC connection doesn't support to reset the autoCommit flag, you can set the resetAutoCommit flag to be false, and Camel will not try to reset the autoCommit flag. When used with XA transactions you most likely need to set it to false so that the transaction manager is in charge of committing this tx. | true | MEDIUM
| *camel.sink.endpoint.transacted* | Whether transactions are in use. | false | MEDIUM
| *camel.sink.endpoint.useGetBytesForBlob* | To read BLOB columns as bytes instead of string data. This may be needed for certain databases such as Oracle where you must read BLOB columns as bytes. | false | MEDIUM
| *camel.sink.endpoint.useHeadersAsParameters* | Set this option to true to use the prepareStatementStrategy with named parameters. This allows to define queries with named placeholders, and use headers with the dynamic values for the query placeholders. | false | MEDIUM
| *camel.sink.endpoint.useJDBC4ColumnNameAndLabel Semantics* | Sets whether to use JDBC 4 or JDBC 3.0 or older semantic when retrieving column name. JDBC 4.0 uses columnLabel to get the column name where as JDBC 3.0 uses both columnName or columnLabel. Unfortunately JDBC drivers behave differently so you can use this option to work out issues around your JDBC driver if you get problem using this component This option is default true. | true | MEDIUM
| *camel.sink.endpoint.basicPropertyBinding* | Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | MEDIUM
| *camel.sink.endpoint.beanRowMapper* | To use a custom org.apache.camel.component.jdbc.BeanRowMapper when using outputClass. The default implementation will lower case the row names and skip underscores, and dashes. For example CUST_ID is mapped as custId. | null | MEDIUM
| *camel.sink.endpoint.prepareStatementStrategy* | Allows the plugin to use a custom org.apache.camel.component.jdbc.JdbcPrepareStatementStrategy to control preparation of the query and prepared statement. | null | MEDIUM
| *camel.sink.endpoint.synchronous* | Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). | false | MEDIUM
| *camel.component.jdbc.dataSource* | To use the DataSource instance instead of looking up the data source by name from the registry. | null | MEDIUM
| *camel.component.jdbc.lazyStartProducer* | 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. | false | MEDIUM
| *camel.component.jdbc.basicPropertyBinding* | Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | MEDIUM
|===
// kafka-connector options: END