blob: 929eeadada2fb0e5d7531fbd26453f50e122330f [file] [log] [blame]
{
"connector": {
"class": "org.apache.camel.kafkaconnector.seda.CamelSedaSinkConnector",
"artifactId": "camel-seda-kafka-connector",
"groupId": "org.apache.camel.kafkaconnector",
"id": "camel-seda-sink",
"type": "sink",
"version": "0.7.3",
"description": "Asynchronously call another endpoint from any Camel Context in the same JVM."
},
"properties": {
"camel.sink.path.name": {
"name": "camel.sink.path.name",
"description": "Name of queue",
"priority": "HIGH",
"required": "true"
},
"camel.sink.endpoint.size": {
"name": "camel.sink.endpoint.size",
"description": "The maximum capacity of the SEDA queue (i.e., the number of messages it can hold). Will by default use the defaultSize set on the SEDA component.",
"defaultValue": "1000",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.blockWhenFull": {
"name": "camel.sink.endpoint.blockWhenFull",
"description": "Whether a thread that sends messages to a full SEDA queue will block until the queue's capacity is no longer exhausted. By default, an exception will be thrown stating that the queue is full. By enabling this option, the calling thread will instead block and wait until the message can be accepted.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.discardIfNoConsumers": {
"name": "camel.sink.endpoint.discardIfNoConsumers",
"description": "Whether the producer should discard the message (do not add the message to the queue), when sending to a queue with no active consumers. Only one of the options discardIfNoConsumers and failIfNoConsumers can be enabled at the same time.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.discardWhenFull": {
"name": "camel.sink.endpoint.discardWhenFull",
"description": "Whether a thread that sends messages to a full SEDA queue will be discarded. By default, an exception will be thrown stating that the queue is full. By enabling this option, the calling thread will give up sending and continue, meaning that the message was not sent to the SEDA queue.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.failIfNoConsumers": {
"name": "camel.sink.endpoint.failIfNoConsumers",
"description": "Whether the producer should fail by throwing an exception, when sending to a queue with no active consumers. Only one of the options discardIfNoConsumers and failIfNoConsumers can be enabled at the same time.",
"defaultValue": "false",
"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.offerTimeout": {
"name": "camel.sink.endpoint.offerTimeout",
"description": "offerTimeout (in milliseconds) can be added to the block case when queue is full. You can disable timeout by using 0 or a negative value.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.timeout": {
"name": "camel.sink.endpoint.timeout",
"description": "Timeout (in milliseconds) before a SEDA producer will stop waiting for an asynchronous task to complete. You can disable timeout by using 0 or a negative value.",
"defaultValue": "30000L",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.waitForTaskToComplete": {
"name": "camel.sink.endpoint.waitForTaskToComplete",
"description": "Option to specify whether the caller should wait for the async task to complete or not before continuing. The following three options are supported: Always, Never or IfReplyExpected. The first two values are self-explanatory. The last value, IfReplyExpected, will only wait if the message is Request Reply based. The default option is IfReplyExpected. One of: [Never] [IfReplyExpected] [Always]",
"defaultValue": "\"IfReplyExpected\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"Never",
"IfReplyExpected",
"Always"
]
},
"camel.sink.endpoint.queue": {
"name": "camel.sink.endpoint.queue",
"description": "Define the queue instance which will be used by the endpoint",
"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.component.seda.defaultBlockWhenFull": {
"name": "camel.component.seda.defaultBlockWhenFull",
"description": "Whether a thread that sends messages to a full SEDA queue will block until the queue's capacity is no longer exhausted. By default, an exception will be thrown stating that the queue is full. By enabling this option, the calling thread will instead block and wait until the message can be accepted.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.seda.defaultDiscardWhenFull": {
"name": "camel.component.seda.defaultDiscardWhenFull",
"description": "Whether a thread that sends messages to a full SEDA queue will be discarded. By default, an exception will be thrown stating that the queue is full. By enabling this option, the calling thread will give up sending and continue, meaning that the message was not sent to the SEDA queue.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.seda.defaultOfferTimeout": {
"name": "camel.component.seda.defaultOfferTimeout",
"description": "Whether a thread that sends messages to a full SEDA queue will block until the queue's capacity is no longer exhausted. By default, an exception will be thrown stating that the queue is full. By enabling this option, where a configured timeout can be added to the block case. Utilizing the .offer(timeout) method of the underlining java queue",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.seda.lazyStartProducer": {
"name": "camel.component.seda.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.seda.autowiredEnabled": {
"name": "camel.component.seda.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.seda.defaultQueueFactory": {
"name": "camel.component.seda.defaultQueueFactory",
"description": "Sets the default queue factory.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.seda.queueSize": {
"name": "camel.component.seda.queueSize",
"description": "Sets the default maximum capacity of the SEDA queue (i.e., the number of messages it can hold).",
"defaultValue": "1000",
"priority": "MEDIUM",
"required": "false"
}
}
}