blob: f318cd95bac600b7df36ff364c337dcf94e4f2b9 [file] [log] [blame]
// kafka-connector options: START
[[camel-milo-client-kafka-connector-sink]]
= camel-milo-client-kafka-connector sink configuration
When using camel-milo-client-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-milo-client-kafka-connector</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel Kafka connector version -->
</dependency>
----
The camel-milo-client sink connector supports 34 options, which are listed below.
[width="100%",cols="2,5,^1,2",options="header"]
|===
| Name | Description | Default | Priority
| *camel.sink.path.endpointUri* | The OPC UA server endpoint | null | ConfigDef.Importance.HIGH
| *camel.sink.endpoint.clientId* | A virtual client id to force the creation of a new connection instance | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.default AwaitWrites* | Default await setting for writes | false | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.discovery EndpointSuffix* | A suffix for endpoint URI when discovering | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.discovery EndpointUri* | An alternative discovery URI | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.method* | The method definition (see Method ID) | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.node* | The node definition (see Node ID) | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.sampling Interval* | The sampling interval in milliseconds | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.lazyStart Producer* | 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 | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.basic PropertyBinding* | Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | ConfigDef.Importance.MEDIUM
| * camel.sink.endpoint.synchronous* | Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). | false | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.allowed SecurityPolicies* | A set of allowed security policy URIs. Default is to accept all and use the highest. | null | ConfigDef.Importance.MEDIUM
| * camel.sink.endpoint.application Name* | The application name | "Apache Camel adapter for Eclipse Milo" | ConfigDef.Importance.MEDIUM
| * camel.sink.endpoint.application Uri* | The application URI | "http://camel.apache.org/EclipseMilo/Client" | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.channel Lifetime* | Channel lifetime in milliseconds | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.keyAlias* | The name of the key in the keystore file | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.key Password* | The key password | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.keyStore Password* | The keystore password | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.keyStore Type* | The key store type | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.keyStore Url* | The URL where the key should be loaded from | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.maxPending PublishRequests* | The maximum number of pending publish requests | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.max ResponseMessageSize* | The maximum number of bytes a response message may have | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.override Host* | Override the server reported endpoint host with the host from the endpoint URI. | false | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.productUri* | The product URI | "http://camel.apache.org/EclipseMilo" | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.request Timeout* | Request timeout in milliseconds | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.session Name* | Session name | null | ConfigDef.Importance.MEDIUM
| *camel.sink.endpoint.session Timeout* | Session timeout in milliseconds | null | ConfigDef.Importance.MEDIUM
| * camel.component.milo-client.application Name* | Default application name | null | ConfigDef.Importance.MEDIUM
| * camel.component.milo-client.application Uri* | Default application URI | null | ConfigDef.Importance.MEDIUM
| * camel.component.milo-client.default Configuration* | All default options for client | null | ConfigDef.Importance.MEDIUM
| * camel.component.milo-client.product Uri* | Default product URI | null | ConfigDef.Importance.MEDIUM
| * camel.component.milo-client.reconnect Timeout* | Default reconnect timeout | null | ConfigDef.Importance.MEDIUM
| * camel.component.milo-client.lazy StartProducer* | 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 | ConfigDef.Importance.MEDIUM
| * camel.component.milo-client.basic PropertyBinding* | Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | ConfigDef.Importance.MEDIUM
|===
// kafka-connector options: END