Add component definition: kudu

This commit is contained in:
gitea_admin 2026-03-11 14:31:32 +00:00
parent daeda04d0c
commit d076518267

186
component.json Normal file
View File

@ -0,0 +1,186 @@
{
"component": {
"kind": "component",
"name": "kudu",
"title": "Kudu",
"description": "Interact with Apache Kudu, a free and open source column-oriented data store of the Apache Hadoop ecosystem.",
"deprecated": false,
"firstVersion": "3.0",
"label": "database,iot,cloud",
"javaType": "org.apache.camel.component.kudu.KuduComponent",
"supportLevel": "Stable",
"groupId": "org.apache.camel",
"artifactId": "camel-kudu",
"version": "4.10.2",
"scheme": "kudu",
"extendsScheme": "",
"syntax": "kudu:host:port/tableName",
"async": false,
"api": false,
"consumerOnly": false,
"producerOnly": true,
"lenientProperties": false,
"browsable": false,
"remote": true
},
"headers": {
"CamelKuduSchema": {
"index": 0,
"kind": "header",
"displayName": "",
"group": "producer",
"label": "",
"required": false,
"javaType": "org.apache.kudu.Schema",
"deprecated": false,
"deprecationNote": "",
"autowired": false,
"secret": false,
"description": "The schema",
"constantName": "org.apache.camel.component.kudu.KuduConstants#CAMEL_KUDU_SCHEMA"
},
"CamelKuduTableOptions": {
"index": 1,
"kind": "header",
"displayName": "",
"group": "producer",
"label": "",
"required": false,
"javaType": "org.apache.kudu.client.CreateTableOptions",
"deprecated": false,
"deprecationNote": "",
"autowired": false,
"secret": false,
"description": "The create table options",
"constantName": "org.apache.camel.component.kudu.KuduConstants#CAMEL_KUDU_TABLE_OPTIONS"
},
"CamelKuduScanColumnNames": {
"index": 2,
"kind": "header",
"displayName": "",
"group": "producer",
"label": "",
"required": false,
"javaType": "java.util.List<String>",
"deprecated": false,
"deprecationNote": "",
"autowired": false,
"secret": false,
"description": "The projected column names for scan operation",
"constantName": "org.apache.camel.component.kudu.KuduConstants#CAMEL_KUDU_SCAN_COLUMN_NAMES"
},
"CamelKuduScanPredicate": {
"index": 3,
"kind": "header",
"displayName": "",
"group": "producer",
"label": "",
"required": false,
"javaType": "org.apache.kudu.client.KuduPredicate",
"deprecated": false,
"deprecationNote": "",
"autowired": false,
"secret": false,
"description": "The predicate for scan operation",
"constantName": "org.apache.camel.component.kudu.KuduConstants#CAMEL_KUDU_SCAN_PREDICATE"
},
"CamelKuduScanLimit": {
"index": 4,
"kind": "header",
"displayName": "",
"group": "producer",
"label": "",
"required": false,
"javaType": "long",
"deprecated": false,
"deprecationNote": "",
"autowired": false,
"secret": false,
"description": "The limit on the number of rows for scan operation",
"constantName": "org.apache.camel.component.kudu.KuduConstants#CAMEL_KUDU_SCAN_LIMIT"
}
},
"properties": {
"host": {
"index": 0,
"kind": "path",
"displayName": "Host",
"group": "common",
"label": "common",
"required": true,
"type": "string",
"javaType": "java.lang.String",
"deprecated": false,
"deprecationNote": "",
"autowired": false,
"secret": false,
"description": "Host of the server to connect to"
},
"port": {
"index": 1,
"kind": "path",
"displayName": "Port",
"group": "common",
"label": "common",
"required": true,
"type": "string",
"javaType": "java.lang.String",
"deprecated": false,
"deprecationNote": "",
"autowired": false,
"secret": false,
"description": "Port of the server to connect to"
},
"tableName": {
"index": 2,
"kind": "path",
"displayName": "Table Name",
"group": "common",
"label": "common",
"required": false,
"type": "string",
"javaType": "java.lang.String",
"deprecated": false,
"autowired": false,
"secret": false,
"description": "Table to connect to"
},
"operation": {
"index": 3,
"kind": "parameter",
"displayName": "Operation",
"group": "producer",
"label": "",
"required": false,
"type": "object",
"javaType": "org.apache.camel.component.kudu.KuduOperations",
"enum": [
"INSERT",
"DELETE",
"UPDATE",
"UPSERT",
"CREATE_TABLE",
"SCAN"
],
"deprecated": false,
"autowired": false,
"secret": false,
"description": "Operation to perform"
},
"lazyStartProducer": {
"index": 4,
"kind": "parameter",
"displayName": "Lazy Start Producer",
"group": "producer (advanced)",
"label": "producer,advanced",
"required": false,
"type": "boolean",
"javaType": "boolean",
"deprecated": false,
"autowired": false,
"secret": false,
"defaultValue": false,
"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."
}
}
}