This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new fb386e7  [CAMEL-14096] Adding Kudu component.  (#3290)
fb386e7 is described below

commit fb386e7fa98654612aab5eafa35cbb9ac7314931
Author: MarĂ­a Arias de Reyna <ariasdere...@redhat.com>
AuthorDate: Wed Nov 6 08:23:17 2019 +0100

    [CAMEL-14096] Adding Kudu component.  (#3290)
    
    * [CAMEL-14096] Adding Kudu component.
    Backported from Syndesis and adapting to Camel standards and
    requirements.
    
    Co-authored-by: Luis Garcia Acosta <lgarci...@gmail.com>
    
    * Adapt Kudu component to Camel master (3.x)
    
    * Changing Camel URL to use a more standard
    host:port/TableName?options...
    
    * Using parent/pom version
    
    * Code improvements
    
    * Removing Consumer. Everything on Producer now. Source check fixed.
    
    * Documentation for Camel-Kudu component
    
    * Adding producer only annotation.
    
    Co-Authored-By: Omar Al-Safi <omars...@gmail.com>
    
    * Removing debug exception trace
    
    * Cleaning up endpoint to add better docs.
    Fixing version on docs which should be 3.0
---
 apache-camel/pom.xml                               |  10 +
 apache-camel/src/main/descriptors/common-bin.xml   |   2 +
 bom/camel-bom/pom.xml                              |  10 +
 components/camel-kudu/pom.xml                      | 108 +++++++++++
 .../camel-kudu/src/main/docs/kudu-component.adoc   | 119 ++++++++++++
 .../apache/camel/component/kudu/KuduComponent.java |  46 +++++
 .../apache/camel/component/kudu/KuduConstants.java |  25 +++
 .../apache/camel/component/kudu/KuduEndpoint.java  | 165 +++++++++++++++++
 .../camel/component/kudu/KuduOperations.java       |  21 +++
 .../apache/camel/component/kudu/KuduProducer.java  | 108 +++++++++++
 .../org/apache/camel/component/kudu/KuduUtils.java |  73 ++++++++
 .../src/main/resources/META-INF/LICENSE.txt        | 203 ++++++++++++++++++++
 .../src/main/resources/META-INF/NOTICE.txt         |  11 ++
 .../services/org/apache/camel/component/kudu       |  16 ++
 .../camel/component/kudu/AbstractKuduTest.java     | 124 +++++++++++++
 .../kudu/IntegrationKuduConfiguration.java         |  66 +++++++
 .../kudu/KuduComponentConfigurationTest.java       |  47 +++++
 .../camel/component/kudu/KuduProducerTest.java     | 144 +++++++++++++++
 .../apache/camel/component/kudu/KuduScanTest.java  | 135 ++++++++++++++
 .../src/test/resources/log4j2.properties           |  27 +++
 components/pom.xml                                 |   1 +
 .../endpoint/dsl/KuduEndpointBuilderFactory.java   | 205 +++++++++++++++++++++
 docs/components/modules/ROOT/nav.adoc              |   1 +
 docs/components/modules/ROOT/pages/index.adoc      |   2 +
 .../modules/ROOT/pages/kudu-component.adoc         | 121 ++++++++++++
 parent/pom.xml                                     |  12 ++
 .../karaf/features/src/main/resources/features.xml |   6 +
 .../components-starter/camel-kudu-starter/pom.xml  |  53 ++++++
 .../springboot/KuduComponentAutoConfiguration.java | 128 +++++++++++++
 .../springboot/KuduComponentConfiguration.java     |  54 ++++++
 .../src/main/resources/META-INF/LICENSE.txt        | 203 ++++++++++++++++++++
 .../src/main/resources/META-INF/NOTICE.txt         |  11 ++
 .../src/main/resources/META-INF/spring.factories   |  19 ++
 .../src/main/resources/META-INF/spring.provides    |  17 ++
 platforms/spring-boot/components-starter/pom.xml   |   1 +
 .../camel-spring-boot-dependencies/pom.xml         |  10 +
 .../apache/camel/itest/karaf/CamelKuduTest.java    |  33 ++++
 .../camel/itest/springboot/CamelKuduTest.java      |  50 +++++
 38 files changed, 2387 insertions(+)

diff --git a/apache-camel/pom.xml b/apache-camel/pom.xml
index 82343aa..8712db7 100644
--- a/apache-camel/pom.xml
+++ b/apache-camel/pom.xml
@@ -938,6 +938,11 @@
     </dependency>
     <dependency>
       <groupId>org.apache.camel</groupId>
+      <artifactId>camel-kudu</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
       <artifactId>camel-kura</artifactId>
       <version>${project.version}</version>
     </dependency>
@@ -2522,6 +2527,11 @@
     </dependency>
     <dependency>
       <groupId>org.apache.camel</groupId>
+      <artifactId>camel-kudu-starter</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
       <artifactId>camel-kura-starter</artifactId>
       <version>${project.version}</version>
     </dependency>
diff --git a/apache-camel/src/main/descriptors/common-bin.xml 
b/apache-camel/src/main/descriptors/common-bin.xml
index 4348697..226a2f9 100644
--- a/apache-camel/src/main/descriptors/common-bin.xml
+++ b/apache-camel/src/main/descriptors/common-bin.xml
@@ -208,6 +208,7 @@
         <include>org.apache.camel:camel-jt400</include>
         <include>org.apache.camel:camel-kafka</include>
         <include>org.apache.camel:camel-kubernetes</include>
+        <include>org.apache.camel:camel-kudu</include>
         <include>org.apache.camel:camel-kura</include>
         <include>org.apache.camel:camel-language</include>
         <include>org.apache.camel:camel-ldap</include>
@@ -564,6 +565,7 @@
         <include>org.apache.camel:camel-jt400-starter</include>
         <include>org.apache.camel:camel-kafka-starter</include>
         <include>org.apache.camel:camel-kubernetes-starter</include>
+        <include>org.apache.camel:camel-kudu-starter</include>
         <include>org.apache.camel:camel-kura-starter</include>
         <include>org.apache.camel:camel-language-starter</include>
         <include>org.apache.camel:camel-ldap-starter</include>
diff --git a/bom/camel-bom/pom.xml b/bom/camel-bom/pom.xml
index f51ef5b..79daa7a 100644
--- a/bom/camel-bom/pom.xml
+++ b/bom/camel-bom/pom.xml
@@ -1779,6 +1779,16 @@
       </dependency>
       <dependency>
         <groupId>org.apache.camel</groupId>
+        <artifactId>camel-kudu</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.camel</groupId>
+        <artifactId>camel-kudu-starter</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.camel</groupId>
         <artifactId>camel-kura</artifactId>
         <version>${project.version}</version>
       </dependency>
diff --git a/components/camel-kudu/pom.xml b/components/camel-kudu/pom.xml
new file mode 100644
index 0000000..00ccd23
--- /dev/null
+++ b/components/camel-kudu/pom.xml
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+-->
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+         xmlns="http://maven.apache.org/POM/4.0.0";
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.camel</groupId>
+        <artifactId>components</artifactId>
+        <version>3.0.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>camel-kudu</artifactId>
+    <packaging>jar</packaging>
+    <name>Camel :: Kudu</name>
+    <description>Camel Apache Kudu support</description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-support</artifactId>
+        </dependency>
+
+        <!-- KUDU dependencies -->
+        <dependency>
+            <groupId>org.apache.kudu</groupId>
+            <artifactId>kudu-client</artifactId>
+            <version>${kudu-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.yetus</groupId>
+            <artifactId>audience-annotations</artifactId>
+            <version>${yetus-audience-annotations-version}</version>
+        </dependency>
+
+        <!-- TESTING -->
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-test</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>
+            <artifactId>log4j-api</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>
+            <artifactId>log4j-core</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>
+            <artifactId>log4j-slf4j-impl</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+        <!-- Spin a kudu cluster to run integration tests -->
+        <!-- as described in
+        
https://kudu.apache.org/docs/developing.html#_using_the_kudu_binary_test_jar -->
+        <dependency>
+            <groupId>org.apache.kudu</groupId>
+            <artifactId>kudu-test-utils</artifactId>
+            <version>${kudu-version}</version>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.kudu</groupId>
+            <artifactId>kudu-binary</artifactId>
+            <version>${kudu-version}</version>
+            <!--suppress UnresolvedMavenProperty -->
+            <classifier>${os.detected.classifier}</classifier>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <extensions>
+            <!-- Used to find the right kudu-binary artifact with the Maven
+                 property ${os.detected.classifier} -->
+            <extension>
+                <groupId>kr.motd.maven</groupId>
+                <artifactId>os-maven-plugin</artifactId>
+                <version>${os-maven-plugin-version}</version>
+            </extension>
+        </extensions>
+    </build>
+</project>
diff --git a/components/camel-kudu/src/main/docs/kudu-component.adoc 
b/components/camel-kudu/src/main/docs/kudu-component.adoc
new file mode 100644
index 0000000..70a7cee
--- /dev/null
+++ b/components/camel-kudu/src/main/docs/kudu-component.adoc
@@ -0,0 +1,119 @@
+[[kudu-component]]
+= Apache Kudu Component
+
+*Since Camel 3.0*
+
+The Kudu component supports storing and retrieving data from/to 
https://kudu.apache.org/[Apache Kudu], a free and open source column-oriented 
data store of the Apache Hadoop ecosystem.
+
+== Prerequisites
+
+You must have a valid Kudu instance running. More information are available at 
https://kudu.apache.org/[Apache Kudu].
+
+
+// component options: START
+The Apache Kudu component supports 1 options, which are listed below.
+
+
+
+[width="100%",cols="2,5,^1,2",options="header"]
+|===
+| Name | Description | Default | Type
+| *basicPropertyBinding* (advanced) | Whether the component should use basic 
property binding (Camel 2.x) or the newer property binding with additional 
capabilities | false | boolean
+|===
+// component options: END
+
+// endpoint options: START
+The Apache Kudu endpoint is configured using URI syntax:
+
+----
+kudu:host:port/tableName
+----
+
+with the following path and query parameters:
+
+=== Path Parameters (3 parameters):
+
+
+[width="100%",cols="2,5,^1,2",options="header"]
+|===
+| Name | Description | Default | Type
+| *host* | Kudu master to connect to |  | String
+| *port* | Port where kudu service is listening |  | String
+| *tableName* | The name of the table where the rows are stored |  | String
+|===
+
+
+=== Query Parameters (4 parameters):
+
+
+[width="100%",cols="2,5,^1,2",options="header"]
+|===
+| Name | Description | Default | Type
+| *lazyStartProducer* (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 [...]
+| *operation* (producer) | What kind of operation is to be performed in the 
table |  | KuduOperations
+| *basicPropertyBinding* (advanced) | Whether the endpoint should use basic 
property binding (Camel 2.x) or the newer property binding with additional 
capabilities | false | boolean
+| *synchronous* (advanced) | Sets whether synchronous processing should be 
strictly used, or Camel is allowed to use asynchronous processing (if 
supported). | false | boolean
+|===
+// endpoint options: END
+
+== Input Body formats
+
+=== Insert
+
+The input body format has to be a java.util.Map<String, Object>. This map will 
represent a row of the table whose elements are columns, where the key is the 
column name and the value is the value of the column. 
+
+== Output Body formats
+
+=== Scan
+
+The output body format will be a java.util.List<java.util.Map<String, 
Object>>. Each element of the list will be a different row of the table. Each 
row is a Map<String, Object> whose elements will be each pair of column name 
and column value for that row.
+
+
+== Dependencies
+
+Maven users will need to add the following dependency to their pom.xml.
+
+*pom.xml*
+
+[source,xml]
+---------------------------------------
+<dependency>
+    <groupId>org.apache.camel</groupId>
+    <artifactId>camel-kudu</artifactId>
+    <version>${camel-version}</version>
+</dependency>
+---------------------------------------
+
+where `$\{camel-version\}` must be replaced by the actual version of Camel 
(3.0 or higher).
+
+
+== Spring Boot Auto-Configuration
+
+When using Spring Boot make sure to use the following Maven dependency to have 
support for auto configuration:
+
+[source,xml]
+----
+<dependency>
+  <groupId>org.apache.camel</groupId>
+  <artifactId>camel-kudu-starter</artifactId>
+  <version>x.x.x</version>
+  <!-- use the same version as your Camel core version -->
+</dependency>
+----
+
+
+
+== Camel Kudu Starter
+
+A starter module is available to spring-boot users.
+
+To use this feature, add the following dependencies to your spring boot 
pom.xml file:
+
+[source,xml]
+----
+<dependency>
+    <groupId>org.apache.camel</groupId>
+    <artifactId>camel-kudu-starter</artifactId>
+    <version>${camel.version}</version> <!-- use the same version as your 
Camel core version -->
+</dependency>
+----
diff --git 
a/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduComponent.java
 
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduComponent.java
new file mode 100644
index 0000000..6020df0
--- /dev/null
+++ 
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduComponent.java
@@ -0,0 +1,46 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.kudu;
+
+import java.util.Map;
+import org.apache.camel.CamelContext;
+import org.apache.camel.Endpoint;
+import org.apache.camel.spi.annotations.Component;
+import org.apache.camel.support.DefaultComponent;
+
+/**
+ * Represents the component that manages {@link KuduEndpoint}.
+ */
+@Component("kudu")
+public class KuduComponent extends DefaultComponent {
+    public KuduComponent(CamelContext context) {
+        super(context);
+    }
+
+    public KuduComponent() {
+        super();
+    }
+
+
+
+    @Override
+    protected Endpoint createEndpoint(String uri, String remaining, 
Map<String, Object> parameters) throws Exception {
+        Endpoint endpoint = new KuduEndpoint(remaining, this);
+        setProperties(endpoint, parameters);
+        return endpoint;
+    }
+}
diff --git 
a/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduConstants.java
 
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduConstants.java
new file mode 100644
index 0000000..fbc91d6
--- /dev/null
+++ 
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduConstants.java
@@ -0,0 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.kudu;
+
+public final class KuduConstants {
+    public static final String CAMEL_KUDU_SCHEMA = "CamelKuduSchema";
+    public static final String CAMEL_KUDU_TABLE_OPTIONS = 
"CamelKuduTableOptions";
+
+    private KuduConstants() {
+    }
+}
diff --git 
a/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduEndpoint.java
 
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduEndpoint.java
new file mode 100644
index 0000000..f977e1a
--- /dev/null
+++ 
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduEndpoint.java
@@ -0,0 +1,165 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.kudu;
+
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+import org.apache.camel.Consumer;
+import org.apache.camel.Processor;
+import org.apache.camel.Producer;
+import org.apache.camel.spi.UriEndpoint;
+import org.apache.camel.spi.UriParam;
+import org.apache.camel.spi.UriPath;
+import org.apache.camel.support.DefaultEndpoint;
+import org.apache.kudu.client.KuduClient;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * Represents a Kudu endpoint. A kudu endpoint allows you to interact with
+ * <a href="https://kudu.apache.org/";>Apache Kudu</a>, a free and open source
+ * column-oriented data store of the Apache Hadoop ecosystem.
+ */
+@UriEndpoint(firstVersion = "3.0",
+    scheme = "kudu",
+    title = "Apache Kudu", syntax = "kudu:host:port/tableName",
+    label = "cloud,database,iot", producerOnly = true)
+public class KuduEndpoint extends DefaultEndpoint {
+
+    private static final Logger LOG = 
LoggerFactory.getLogger(KuduEndpoint.class);
+    private KuduClient kuduClient;
+
+    @UriPath(name = "host", displayName = "Host", label = "common", 
description = "Host of the server to connect to")
+    private String host;
+
+    @UriPath(name = "port", displayName = "Port", label = "common", 
description = "Port of the server to connect to")
+    private String port;
+
+    @UriParam(description = "Operation to perform")
+    private KuduOperations operation;
+
+    @UriPath(name = "tableName", displayName = "Table Name", label = "common", 
description = "Table to connect to")
+    private String tableName;
+
+    public KuduEndpoint(String uri, KuduComponent component) {
+        super(uri, component);
+        Pattern p = Pattern.compile("^(\\S+)\\:(\\d+)\\/(\\S+)$");
+        Matcher m = p.matcher(uri);
+
+        if (!m.matches()) {
+            throw new RuntimeException("Unrecognizable url: " + uri);
+        }
+
+        this.setHost(m.group(1));
+        this.setPort(m.group(2));
+        this.setTableName(m.group(3));
+    }
+
+    @Override
+    protected void doStart() throws Exception {
+        LOG.trace("Connection: {}, {}", getHost(), getPort());
+
+        //To facilitate tests, if the client is already created, do not 
recreate.
+        if (this.getKuduClient() == null) {
+            setKuduClient(new KuduClient.KuduClientBuilder(getHost() + ":" + 
getPort()).build());
+        }
+        LOG.debug("Resolved the host with the name {} as {}", getHost(), 
getKuduClient());
+        super.doStart();
+    }
+
+    @Override
+    protected void doStop() throws Exception {
+        try {
+            LOG.info("doStop()");
+            getKuduClient().shutdown();
+        } catch (Exception e) {
+            LOG.error("Unable to shutdown kudu client", e);
+        }
+
+        super.doStop();
+    }
+
+    public String getHost() {
+        return host;
+    }
+
+    /**
+     * Kudu master to connect to
+     */
+    public void setHost(String host) {
+        this.host = host;
+    }
+
+    public String getPort() {
+        return port;
+    }
+
+    public KuduClient getKuduClient() {
+        return kuduClient;
+    }
+
+    /**
+     * Set the client to connect to a kudu resource
+     */
+    public void setKuduClient(KuduClient kuduClient) {
+        this.kuduClient = kuduClient;
+    }
+
+    /**
+     * Port where kudu service is listening
+     */
+    public void setPort(String port) {
+        this.port = port;
+    }
+
+    @Override
+    public Producer createProducer() {
+        return new KuduProducer(this);
+    }
+
+    @Override
+    public Consumer createConsumer(Processor processor) throws 
UnsupportedOperationException {
+        throw new UnsupportedOperationException("You cannot create consumers 
on this endpoint");
+    }
+
+    @Override
+    public boolean isSingleton() {
+        return true;
+    }
+
+    public String getTableName() {
+        return tableName;
+    }
+
+    /**
+     * The name of the table where the rows are stored
+     */
+    public void setTableName(String tableName) {
+        this.tableName = tableName;
+    }
+
+    public KuduOperations getOperation() {
+        return operation;
+    }
+
+    /**
+     * What kind of operation is to be performed in the table
+     */
+    public void setOperation(KuduOperations operation) {
+        this.operation = operation;
+    }
+}
diff --git 
a/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduOperations.java
 
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduOperations.java
new file mode 100644
index 0000000..fef6d32
--- /dev/null
+++ 
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduOperations.java
@@ -0,0 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.kudu;
+
+public enum KuduOperations {
+    INSERT, CREATE_TABLE, SCAN
+}
diff --git 
a/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduProducer.java
 
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduProducer.java
new file mode 100644
index 0000000..3cd2cdd
--- /dev/null
+++ 
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduProducer.java
@@ -0,0 +1,108 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.kudu;
+
+import java.util.Map;
+import org.apache.camel.Exchange;
+import org.apache.camel.support.DefaultProducer;
+import org.apache.kudu.Schema;
+import org.apache.kudu.client.CreateTableOptions;
+import org.apache.kudu.client.Insert;
+import org.apache.kudu.client.KuduClient;
+import org.apache.kudu.client.KuduException;
+import org.apache.kudu.client.KuduTable;
+import org.apache.kudu.client.PartialRow;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * The Kudu producer.
+ *
+ * @see org.apache.camel.component.kudu.KuduEndpoint
+ */
+public class KuduProducer extends DefaultProducer {
+
+    private static final Logger LOG = 
LoggerFactory.getLogger(KuduProducer.class);
+
+    private final KuduEndpoint endpoint;
+
+    public KuduProducer(KuduEndpoint endpoint) {
+        super(endpoint);
+
+        if (endpoint == null || endpoint.getKuduClient() == null) {
+            throw new IllegalArgumentException("Can't create a producer when 
the database connection is null");
+        }
+        this.endpoint = endpoint;
+    }
+
+    @Override
+    public void process(Exchange exchange) throws Exception {
+        String table = endpoint.getTableName();
+        switch (endpoint.getOperation()) {
+        case INSERT:
+            doInsert(exchange, table);
+            break;
+        case CREATE_TABLE:
+            doCreateTable(exchange, table);
+            break;
+        case SCAN:
+            doScan(exchange, table);
+            break;
+        default:
+            throw new IllegalArgumentException("The operation " + 
endpoint.getOperation() + " is not supported");
+        }
+    }
+
+    private void doInsert(Exchange exchange, String tableName) throws 
KuduException {
+        LOG.trace("Insert on table {}", tableName);
+        KuduClient connection = endpoint.getKuduClient();
+        KuduTable table = connection.openTable(tableName);
+
+
+        Insert insert = table.newInsert();
+        PartialRow row = insert.getRow();
+
+        Map<?, ?> rows = exchange.getIn().getBody(Map.class);
+        for (Map.Entry<?, ?> entry : rows.entrySet()) {
+            final String colName = entry.getKey().toString();
+            final Object value = entry.getValue();
+            //Add only if column exist
+            //If not, this will throw an IllegalArgumentException
+            if (table.getSchema().getColumn(colName) != null) {
+                row.addObject(colName, value);
+            }
+        }
+
+        connection.newSession().apply(insert);
+    }
+
+    private void doCreateTable(Exchange exchange, String tableName) throws 
KuduException {
+        LOG.trace("Creating table {}", tableName);
+        KuduClient connection = endpoint.getKuduClient();
+
+        Schema schema = (Schema) 
exchange.getIn().getHeader(KuduConstants.CAMEL_KUDU_SCHEMA);
+        CreateTableOptions builder = (CreateTableOptions)
+                                         exchange.getIn()
+                                             
.getHeader(KuduConstants.CAMEL_KUDU_TABLE_OPTIONS);
+        connection.createTable(tableName, schema, builder);
+
+    }
+
+    private void doScan(Exchange exchange, String tableName) throws 
KuduException {
+        exchange.getIn().setBody(KuduUtils.doScan(tableName, 
endpoint.getKuduClient()));
+    }
+}
diff --git 
a/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduUtils.java
 
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduUtils.java
new file mode 100644
index 0000000..b84873a
--- /dev/null
+++ 
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduUtils.java
@@ -0,0 +1,73 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.kudu;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import org.apache.kudu.ColumnSchema;
+import org.apache.kudu.client.KuduClient;
+import org.apache.kudu.client.KuduException;
+import org.apache.kudu.client.KuduScanner;
+import org.apache.kudu.client.KuduScannerIterator;
+import org.apache.kudu.client.KuduTable;
+import org.apache.kudu.client.RowResult;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public final class KuduUtils {
+
+    private static final Logger LOG = LoggerFactory.getLogger(KuduUtils.class);
+    
+    private KuduUtils() {
+    }
+
+    /**
+     * Convert results to a more Java friendly type
+     */
+    public static List<Map<String, Object>> scannerToList(KuduTable table, 
KuduScanner scanner) {
+        KuduScannerIterator it = scanner.iterator();
+        List<Map<String, Object>> res = new ArrayList<Map<String, Object>>();
+        while (it.hasNext()) {
+            RowResult row = it.next();
+            Map<String, Object> r = new HashMap<String, Object>();
+            res.add(r);
+            for (ColumnSchema columnSchema : table.getSchema().getColumns()) {
+                final String name = columnSchema.getName();
+                r.put(name, row.getObject(name));
+            }
+        }
+        return res;
+    }
+
+    public static List<Map<String, Object>> doScan(String tableName, 
KuduClient connection) throws KuduException {
+        LOG.trace("Scanning table {}", tableName);
+        KuduTable table = connection.openTable(tableName);
+
+        List<String> projectColumns = new ArrayList<>(1);
+
+        for (ColumnSchema columnSchema : table.getSchema().getColumns()) {
+            projectColumns.add(columnSchema.getName());
+        }
+
+        KuduScanner scanner = connection.newScannerBuilder(table)
+                                  .setProjectedColumnNames(projectColumns)
+                                  .build();
+        return KuduUtils.scannerToList(table, scanner);
+    }
+}
diff --git a/components/camel-kudu/src/main/resources/META-INF/LICENSE.txt 
b/components/camel-kudu/src/main/resources/META-INF/LICENSE.txt
new file mode 100644
index 0000000..6b0b127
--- /dev/null
+++ b/components/camel-kudu/src/main/resources/META-INF/LICENSE.txt
@@ -0,0 +1,203 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
diff --git a/components/camel-kudu/src/main/resources/META-INF/NOTICE.txt 
b/components/camel-kudu/src/main/resources/META-INF/NOTICE.txt
new file mode 100644
index 0000000..2e215bf
--- /dev/null
+++ b/components/camel-kudu/src/main/resources/META-INF/NOTICE.txt
@@ -0,0 +1,11 @@
+   =========================================================================
+   ==  NOTICE file corresponding to the section 4 d of                    ==
+   ==  the Apache License, Version 2.0,                                   ==
+   ==  in this case for the Apache Camel distribution.                    ==
+   =========================================================================
+
+   This product includes software developed by
+   The Apache Software Foundation (http://www.apache.org/).
+
+   Please read the different LICENSE files present in the licenses directory of
+   this distribution.
diff --git 
a/components/camel-kudu/src/main/resources/META-INF/services/org/apache/camel/component/kudu
 
b/components/camel-kudu/src/main/resources/META-INF/services/org/apache/camel/component/kudu
new file mode 100644
index 0000000..07a8d22
--- /dev/null
+++ 
b/components/camel-kudu/src/main/resources/META-INF/services/org/apache/camel/component/kudu
@@ -0,0 +1,16 @@
+#
+# Copyright (C) 2016 Red Hat, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+class=org.apache.camel.component.kudu.KuduComponent
diff --git 
a/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/AbstractKuduTest.java
 
b/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/AbstractKuduTest.java
new file mode 100644
index 0000000..8acece8
--- /dev/null
+++ 
b/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/AbstractKuduTest.java
@@ -0,0 +1,124 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.kudu;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import org.apache.camel.test.junit4.CamelTestSupport;
+import org.apache.kudu.ColumnSchema;
+import org.apache.kudu.Schema;
+import org.apache.kudu.Type;
+import org.apache.kudu.client.CreateTableOptions;
+import org.apache.kudu.client.Insert;
+import org.apache.kudu.client.KuduClient;
+import org.apache.kudu.client.KuduException;
+import org.apache.kudu.client.KuduTable;
+import org.apache.kudu.client.PartialRow;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Rule;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class AbstractKuduTest extends CamelTestSupport {
+    private static final Logger LOG = 
LoggerFactory.getLogger(AbstractKuduTest.class);
+
+    @Rule
+    /**
+     * This is the class that connects our Camel test with the
+     * Kudu testing framework to spin up a Kudu local endpoint.
+     */
+    public IntegrationKuduConfiguration ikc = new 
IntegrationKuduConfiguration();
+
+    private Integer id = 1;
+
+    protected void createTestTable(String tableName) {
+        LOG.trace("Creating table " + tableName + ".");
+        KuduClient client = ikc.getClient();
+
+        List<ColumnSchema> columns = new ArrayList<>(5);
+        final List<String> columnNames = Arrays.asList("id", "title", "name", 
"lastname", "address");
+
+        for (int i = 0; i < columnNames.size(); i++) {
+            Type type = i == 0 ? Type.INT32 : Type.STRING;
+            columns.add(
+                new ColumnSchema.ColumnSchemaBuilder(columnNames.get(i), type)
+                    .key(i == 0)
+                    .build()
+            );
+        }
+
+        List<String> rangeKeys = new ArrayList<>();
+        rangeKeys.add("id");
+
+        try {
+            client.createTable(tableName,
+                new Schema(columns),
+                new CreateTableOptions().setRangePartitionColumns(rangeKeys));
+        } catch (Exception e) {
+            LOG.error(e.getMessage(), e);
+        }
+        LOG.trace("Table " + tableName + " created.");
+    }
+
+    @Before
+    public void setUp() throws Exception {
+        super.setUp();
+        ikc.setupCamelContext(this.context);
+    }
+
+    @After
+    public void tearDown() {
+        deleteTestTable("TestTable");
+    }
+
+    protected void deleteTestTable(String tableName) {
+        LOG.trace("Removing table " + tableName + ".");
+        KuduClient client = ikc.getClient();
+        try {
+            client.deleteTable(tableName);
+        } catch (Exception e) {
+            LOG.error(e.getMessage(), e);
+        }
+        LOG.trace("Table " + tableName + " removed.");
+    }
+
+    protected void insertRowInTestTable(String tableName) {
+        LOG.trace("Inserting row on table " + tableName + ".");
+        KuduClient client = ikc.getClient();
+
+        try {
+            KuduTable table = client.openTable(tableName);
+
+            Insert insert = table.newInsert();
+            PartialRow row = insert.getRow();
+
+            row.addInt("id", id++);
+            row.addString("title", "Mr.");
+            row.addString("name", "Samuel");
+            row.addString("lastname", "Smith");
+            row.addString("address", "4359  Plainfield Avenue");
+
+            client.newSession().apply(insert);
+        } catch (KuduException e) {
+
+            LOG.error(e.getMessage(), e);
+        }
+        LOG.trace("Row inserted on table " + tableName + ".");
+    }
+}
diff --git 
a/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/IntegrationKuduConfiguration.java
 
b/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/IntegrationKuduConfiguration.java
new file mode 100644
index 0000000..6abdea5
--- /dev/null
+++ 
b/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/IntegrationKuduConfiguration.java
@@ -0,0 +1,66 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.kudu;
+
+import org.apache.camel.CamelContext;
+import org.apache.camel.Endpoint;
+import org.apache.kudu.client.KuduClient;
+import org.apache.kudu.test.KuduTestHarness;
+import org.junit.Assert;
+
+/**
+ * Use this class to run tests agains a local basic Kudu server. This
+ * local kudu server is spinned up by
+ * https://kudu.apache.org/docs/developing.html#_using_the_kudu_binary_test_jar
+ */
+public class IntegrationKuduConfiguration extends KuduTestHarness {
+
+    public IntegrationKuduConfiguration() {
+        super();
+    }
+
+    /**
+     * Setup the Camel Context and make sure all KuduEndpoints use the
+     * special KuduClient that connects to the local server.
+     *
+     * @param context
+     */
+    public void setupCamelContext(CamelContext context) {
+        KuduClient client = this.getClient();
+        Assert.assertNotNull(client);
+        Assert.assertNotNull(context);
+        for (Endpoint endpoint : context.getEndpoints()) {
+            if (endpoint instanceof KuduEndpoint) {
+                ((KuduEndpoint) endpoint).setKuduClient(this.getClient());
+            }
+        }
+    }
+
+    /**
+     * Needed because we have to shutdown the local cluster, but as
+     * Camel already closed the client, it will always throw an 
IllegalStateException.
+     */
+    @Override
+    public void after() {
+        try {
+            super.after();
+        } catch (java.lang.IllegalStateException e) {
+            //Camel already closed the client so an exception will be thrown
+            //no need to worry
+        }
+    }
+}
diff --git 
a/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/KuduComponentConfigurationTest.java
 
b/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/KuduComponentConfigurationTest.java
new file mode 100644
index 0000000..b9121c0
--- /dev/null
+++ 
b/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/KuduComponentConfigurationTest.java
@@ -0,0 +1,47 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.kudu;
+
+import org.apache.camel.test.junit4.CamelTestSupport;
+import org.junit.Test;
+
+public class KuduComponentConfigurationTest extends CamelTestSupport {
+
+    @Test
+    public void createEndpoint() throws Exception {
+        String host = "localhost";
+        String port = "7051";
+        String tableName = "TableName";
+        KuduOperations operation = KuduOperations.SCAN;
+
+        KuduComponent component = new KuduComponent(this.context());
+        KuduEndpoint endpoint = (KuduEndpoint) 
component.createEndpoint("kudu:" + host + ":" + port + "/" + tableName + 
"?operation=" + operation);
+
+        assertEquals("Host was not correctly detected. ", host, 
endpoint.getHost());
+        assertEquals("Port was not correctly detected. ", port, 
endpoint.getPort());
+        assertEquals("Table name was not correctly detected. ", tableName, 
endpoint.getTableName());
+        assertEquals("Operation was not correctly detected. ", operation, 
endpoint.getOperation());
+    }
+
+
+    @Test(expected = Exception.class)
+    public void wrongUrl() throws Exception {
+
+        KuduComponent component = new KuduComponent(this.context());
+        component.createEndpoint("wrong url");
+    }
+}
\ No newline at end of file
diff --git 
a/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/KuduProducerTest.java
 
b/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/KuduProducerTest.java
new file mode 100644
index 0000000..9b21846
--- /dev/null
+++ 
b/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/KuduProducerTest.java
@@ -0,0 +1,144 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.kudu;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.concurrent.ThreadLocalRandom;
+import org.apache.camel.EndpointInject;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.kudu.ColumnSchema;
+import org.apache.kudu.Schema;
+import org.apache.kudu.Type;
+import org.apache.kudu.client.CreateTableOptions;
+import org.junit.Before;
+import org.junit.Test;
+
+public class KuduProducerTest extends AbstractKuduTest {
+
+    @EndpointInject(value = "mock:result")
+    public MockEndpoint successEndpoint;
+
+    @EndpointInject(value = "mock:error")
+    public MockEndpoint errorEndpoint;
+
+    @Override
+    protected RouteBuilder createRouteBuilder() {
+        return new RouteBuilder() {
+            @Override
+            public void configure() {
+
+                
errorHandler(deadLetterChannel("mock:error").redeliveryDelay(0).maximumRedeliveries(0));
+
+                //integration test route
+                from("direct:create")
+                    .to("kudu:localhost:7051/TestTable?operation=create_table")
+                    .to("mock:result");
+
+                from("direct:insert")
+                    .to("kudu:localhost:7051/TestTable?operation=insert")
+                    .to("mock:result");
+
+                from("direct:data")
+                    .to("kudu:localhost:7051/TestTable?operation=insert")
+                    .to("mock:result");
+            }
+        };
+    }
+
+    @Before
+    public void resetEndpoints() {
+        errorEndpoint.reset();
+        successEndpoint.reset();
+        deleteTestTable("TestTable");
+    }
+
+    @Test
+    public void createTable() throws InterruptedException {
+
+        errorEndpoint.expectedMessageCount(0);
+        successEndpoint.expectedMessageCount(1);
+
+        final Map<String, Object> headers = new HashMap<>();
+
+        List<ColumnSchema> columns = new ArrayList<>(5);
+        final List<String> columnNames = Arrays.asList("id", "title", "name", 
"lastname", "address");
+
+        for (int i = 0; i < columnNames.size(); i++) {
+            columns.add(
+                new ColumnSchema.ColumnSchemaBuilder(columnNames.get(i), 
Type.STRING)
+                    .key(i == 0)
+                    .build()
+            );
+        }
+
+        List<String> rangeKeys = new ArrayList<>();
+        rangeKeys.add("id");
+
+        headers.put(KuduConstants.CAMEL_KUDU_SCHEMA, new Schema(columns));
+        headers.put(KuduConstants.CAMEL_KUDU_TABLE_OPTIONS, new 
CreateTableOptions().setRangePartitionColumns(rangeKeys));
+
+        template().requestBodyAndHeaders("direct://create", null, headers);
+
+        errorEndpoint.assertIsSatisfied();
+        successEndpoint.assertIsSatisfied();
+    }
+
+    @Test
+    public void insertRow() throws InterruptedException {
+        createTestTable("TestTable");
+
+        errorEndpoint.expectedMessageCount(0);
+        successEndpoint.expectedMessageCount(1);
+
+        // Create a sample row that can be inserted in the test table
+        Map<String, Object> row = new HashMap<>();
+        row.put("id", 5);
+        row.put("title", "Mr.");
+        row.put("name", "Samuel");
+        row.put("lastname", "Smith");
+        row.put("address", "4359  Plainfield Avenue");
+
+        sendBody("direct:insert", row);
+
+        errorEndpoint.assertIsSatisfied();
+        successEndpoint.assertIsSatisfied();
+    }
+
+    @Test
+    public void insertRowDifferentData() throws InterruptedException {
+        createTestTable("TestTable");
+        errorEndpoint.expectedMessageCount(1);
+        successEndpoint.expectedMessageCount(0);
+
+        Map<String, Object> row = new HashMap<>();
+        row.put("id", ThreadLocalRandom.current().nextInt(1, 99));
+        row.put("_integer", ThreadLocalRandom.current().nextInt(1, 99));
+        row.put("_long", ThreadLocalRandom.current().nextLong(500, 600));
+        row.put("_double", ThreadLocalRandom.current().nextDouble(9000, 9999));
+        row.put("_float", ThreadLocalRandom.current().nextFloat() * (499 - 
100) + 100);
+
+        sendBody("direct:data", row);
+
+        errorEndpoint.assertIsSatisfied();
+        successEndpoint.assertIsSatisfied();
+    }
+}
diff --git 
a/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/KuduScanTest.java
 
b/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/KuduScanTest.java
new file mode 100644
index 0000000..40cafb6
--- /dev/null
+++ 
b/components/camel-kudu/src/test/java/org/apache/camel/component/kudu/KuduScanTest.java
@@ -0,0 +1,135 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.kudu;
+
+import java.util.List;
+import java.util.Map;
+import org.apache.camel.EndpointInject;
+import org.apache.camel.Exchange;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.junit.Before;
+import org.junit.Test;
+
+public class KuduScanTest extends AbstractKuduTest {
+
+    public static final String TABLE = "ScanTableTest";
+
+    @EndpointInject(value = "mock:result")
+    public MockEndpoint successEndpoint;
+
+    @EndpointInject(value = "mock:error")
+    public MockEndpoint errorEndpoint;
+
+    @Override
+    protected RouteBuilder createRouteBuilder() {
+        return new RouteBuilder() {
+            @Override
+            public void configure() {
+                
errorHandler(deadLetterChannel("mock:error").redeliveryDelay(0).maximumRedeliveries(0));
+
+                //integration test route
+                from("direct:scan").to("kudu:localhost:7051/" + TABLE + 
"?operation=scan")
+                    .to("mock:result");
+
+                from("direct:scan2")
+                    .to("kudu:localhost:7051/TestTable?operation=scan")
+                    .to("mock:result");
+            }
+        };
+    }
+
+    @Before
+    public void setup() {
+        deleteTestTable(TABLE);
+        createTestTable(TABLE);
+        insertRowInTestTable(TABLE);
+        insertRowInTestTable(TABLE);
+    }
+
+    @Test
+    public void scan() throws InterruptedException {
+
+        errorEndpoint.expectedMessageCount(0);
+        successEndpoint.expectedMessageCount(1);
+
+        sendBody("direct:scan", null);
+        
+        errorEndpoint.assertIsSatisfied();
+        successEndpoint.assertIsSatisfied();
+
+        List<Exchange> exchanges = successEndpoint.getReceivedExchanges();
+        assertEquals(1, exchanges.size());
+
+        List<Map<String, Object>> results = 
exchanges.get(0).getIn().getBody(List.class);
+
+        assertEquals("Wrong number of results.", 2, results.size());
+
+        Map<String, Object> row = results.get(0);
+
+        // INT32 id=??, STRING title=Mr.,
+        // STRING name=Samuel, STRING lastname=Smith,
+        // STRING address=4359  Plainfield Avenue
+        assertTrue(row.containsKey("id"));
+        assertEquals("Mr.", row.get("title"));
+        assertEquals("Samuel", row.get("name"));
+        assertEquals("Smith", row.get("lastname"));
+        assertEquals("4359  Plainfield Avenue", row.get("address"));
+
+        row = results.get(1);
+
+        // INT32 id=??, STRING title=Mr.,
+        // STRING name=Samuel, STRING lastname=Smith,
+        // STRING address=4359  Plainfield Avenue
+        assertTrue(row.containsKey("id"));
+        assertEquals("Mr.", row.get("title"));
+        assertEquals("Samuel", row.get("name"));
+        assertEquals("Smith", row.get("lastname"));
+        assertEquals("4359  Plainfield Avenue", row.get("address"));
+
+    }
+
+    @Test
+    public void scanTable() throws InterruptedException {
+        createTestTable("TestTable");
+        insertRowInTestTable("TestTable");
+
+        errorEndpoint.expectedMessageCount(0);
+        successEndpoint.expectedMessageCount(1);
+
+        sendBody("direct:scan2", null);
+
+        errorEndpoint.assertIsSatisfied();
+        successEndpoint.assertIsSatisfied();
+
+        List<Map<String, Object>> results = (List<Map<String, Object>>) 
successEndpoint.getReceivedExchanges()
+                                                                            
.get(0).getIn().getBody(List.class);
+
+        assertEquals("Wrong number of results.", results.size(), 1);
+
+        Map<String, Object> row = results.get(0);
+
+        // INT32 id=??, STRING title=Mr.,
+        // STRING name=Samuel, STRING lastname=Smith,
+        // STRING address=4359  Plainfield Avenue
+        assertTrue(row.containsKey("id"));
+        assertEquals("Mr.", row.get("title"));
+        assertEquals("Samuel", row.get("name"));
+        assertEquals("Smith", row.get("lastname"));
+        assertEquals("4359  Plainfield Avenue", row.get("address"));
+    }
+}
\ No newline at end of file
diff --git a/components/camel-kudu/src/test/resources/log4j2.properties 
b/components/camel-kudu/src/test/resources/log4j2.properties
new file mode 100644
index 0000000..87d3f69
--- /dev/null
+++ b/components/camel-kudu/src/test/resources/log4j2.properties
@@ -0,0 +1,27 @@
+## ---------------------------------------------------------------------------
+## Licensed to the Apache Software Foundation (ASF) under one or more
+## contributor license agreements.  See the NOTICE file distributed with
+## this work for additional information regarding copyright ownership.
+## The ASF licenses this file to You under the Apache License, Version 2.0
+## (the "License"); you may not use this file except in compliance with
+## the License.  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+## Unless required by applicable law or agreed to in writing, software
+## distributed under the License is distributed on an "AS IS" BASIS,
+## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+## See the License for the specific language governing permissions and
+## limitations under the License.
+## ---------------------------------------------------------------------------
+appender.file.type=File
+appender.file.name=file
+appender.file.fileName=target/camel-kudu-test.log
+appender.file.layout.type=PatternLayout
+appender.file.layout.pattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
+appender.out.type=Console
+appender.out.name=out
+appender.out.layout.type=PatternLayout
+appender.out.layout.pattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
+rootLogger.level=DEBUG
+rootLogger.appenderRef.file.ref=file
diff --git a/components/pom.xml b/components/pom.xml
index 4e27792..cb1421c 100644
--- a/components/pom.xml
+++ b/components/pom.xml
@@ -232,6 +232,7 @@
         <module>camel-jt400</module>
         <module>camel-kafka</module>
         <module>camel-kubernetes</module>
+        <module>camel-kudu</module>
         <module>camel-kura</module>
         <module>camel-ldap</module>
         <module>camel-ldif</module>
diff --git 
a/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/KuduEndpointBuilderFactory.java
 
b/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/KuduEndpointBuilderFactory.java
new file mode 100644
index 0000000..6973cc6
--- /dev/null
+++ 
b/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/KuduEndpointBuilderFactory.java
@@ -0,0 +1,205 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.builder.endpoint.dsl;
+
+import javax.annotation.Generated;
+import org.apache.camel.builder.EndpointConsumerBuilder;
+import org.apache.camel.builder.EndpointProducerBuilder;
+import org.apache.camel.builder.endpoint.AbstractEndpointBuilder;
+
+/**
+ * Represents a Kudu endpoint. A kudu endpoint allows you to interact with
+ * Apache Kudu, a free and open source column-oriented data store of the Apache
+ * Hadoop ecosystem.
+ * 
+ * Generated by camel-package-maven-plugin - do not edit this file!
+ */
+@Generated("org.apache.camel.maven.packaging.EndpointDslMojo")
+public interface KuduEndpointBuilderFactory {
+
+
+    /**
+     * Builder for endpoint for the Apache Kudu component.
+     */
+    public interface KuduEndpointBuilder extends EndpointProducerBuilder {
+        default AdvancedKuduEndpointBuilder advanced() {
+            return (AdvancedKuduEndpointBuilder) this;
+        }
+        /**
+         * 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.
+         * 
+         * The option is a: <code>boolean</code> type.
+         * 
+         * Group: producer
+         */
+        default KuduEndpointBuilder lazyStartProducer(boolean 
lazyStartProducer) {
+            doSetProperty("lazyStartProducer", lazyStartProducer);
+            return this;
+        }
+        /**
+         * 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.
+         * 
+         * The option will be converted to a <code>boolean</code> type.
+         * 
+         * Group: producer
+         */
+        default KuduEndpointBuilder lazyStartProducer(String 
lazyStartProducer) {
+            doSetProperty("lazyStartProducer", lazyStartProducer);
+            return this;
+        }
+        /**
+         * What kind of operation is to be performed in the table.
+         * 
+         * The option is a:
+         * <code>org.apache.camel.component.kudu.KuduOperations</code> type.
+         * 
+         * Group: producer
+         */
+        default KuduEndpointBuilder operation(KuduOperations operation) {
+            doSetProperty("operation", operation);
+            return this;
+        }
+        /**
+         * What kind of operation is to be performed in the table.
+         * 
+         * The option will be converted to a
+         * <code>org.apache.camel.component.kudu.KuduOperations</code> type.
+         * 
+         * Group: producer
+         */
+        default KuduEndpointBuilder operation(String operation) {
+            doSetProperty("operation", operation);
+            return this;
+        }
+    }
+
+    /**
+     * Advanced builder for endpoint for the Apache Kudu component.
+     */
+    public interface AdvancedKuduEndpointBuilder
+            extends
+                EndpointProducerBuilder {
+        default KuduEndpointBuilder basic() {
+            return (KuduEndpointBuilder) this;
+        }
+        /**
+         * Whether the endpoint should use basic property binding (Camel 2.x) 
or
+         * the newer property binding with additional capabilities.
+         * 
+         * The option is a: <code>boolean</code> type.
+         * 
+         * Group: advanced
+         */
+        default AdvancedKuduEndpointBuilder basicPropertyBinding(
+                boolean basicPropertyBinding) {
+            doSetProperty("basicPropertyBinding", basicPropertyBinding);
+            return this;
+        }
+        /**
+         * Whether the endpoint should use basic property binding (Camel 2.x) 
or
+         * the newer property binding with additional capabilities.
+         * 
+         * The option will be converted to a <code>boolean</code> type.
+         * 
+         * Group: advanced
+         */
+        default AdvancedKuduEndpointBuilder basicPropertyBinding(
+                String basicPropertyBinding) {
+            doSetProperty("basicPropertyBinding", basicPropertyBinding);
+            return this;
+        }
+        /**
+         * Sets whether synchronous processing should be strictly used, or 
Camel
+         * is allowed to use asynchronous processing (if supported).
+         * 
+         * The option is a: <code>boolean</code> type.
+         * 
+         * Group: advanced
+         */
+        default AdvancedKuduEndpointBuilder synchronous(boolean synchronous) {
+            doSetProperty("synchronous", synchronous);
+            return this;
+        }
+        /**
+         * Sets whether synchronous processing should be strictly used, or 
Camel
+         * is allowed to use asynchronous processing (if supported).
+         * 
+         * The option will be converted to a <code>boolean</code> type.
+         * 
+         * Group: advanced
+         */
+        default AdvancedKuduEndpointBuilder synchronous(String synchronous) {
+            doSetProperty("synchronous", synchronous);
+            return this;
+        }
+    }
+
+    /**
+     * Proxy enum for
+     * <code>org.apache.camel.component.kudu.KuduOperations</code> enum.
+     */
+    enum KuduOperations {
+        INSERT,
+        CREATE_TABLE,
+        SCAN;
+    }
+    /**
+     * Apache Kudu (camel-kudu)
+     * Represents a Kudu endpoint. A kudu endpoint allows you to interact with
+     * Apache Kudu, a free and open source column-oriented data store of the
+     * Apache Hadoop ecosystem.
+     * 
+     * Category: cloud,database,iot
+     * Available as of version: 3.0
+     * Maven coordinates: org.apache.camel:camel-kudu
+     * 
+     * Syntax: <code>kudu:host:port/tableName</code>
+     * 
+     * Path parameter: host
+     * Kudu master to connect to
+     * 
+     * Path parameter: port
+     * Port where kudu service is listening
+     * 
+     * Path parameter: tableName
+     * The name of the table where the rows are stored
+     */
+    default KuduEndpointBuilder kudu(String path) {
+        class KuduEndpointBuilderImpl extends AbstractEndpointBuilder 
implements KuduEndpointBuilder, AdvancedKuduEndpointBuilder {
+            public KuduEndpointBuilderImpl(String path) {
+                super("kudu", path);
+            }
+        }
+        return new KuduEndpointBuilderImpl(path);
+    }
+}
\ No newline at end of file
diff --git a/docs/components/modules/ROOT/nav.adoc 
b/docs/components/modules/ROOT/nav.adoc
index bbfd108..2f22346 100644
--- a/docs/components/modules/ROOT/nav.adoc
+++ b/docs/components/modules/ROOT/nav.adoc
@@ -222,6 +222,7 @@
 * xref:kubernetes.adoc[Kubernetes Components]
 * xref:openshift-build-configs-component.adoc[Openshift Build Config Component]
 * xref:openshift-builds-component.adoc[Openshift Builds Component]
+* xref:kudu-component.adoc[Apache Kudu Component]
 * xref:kura.adoc[Eclipse Kura component]
 * xref:language-component.adoc[Language Component]
 * xref:ldap-component.adoc[LDAP Component]
diff --git a/docs/components/modules/ROOT/pages/index.adoc 
b/docs/components/modules/ROOT/pages/index.adoc
index 2a48ba0..d592c01 100644
--- a/docs/components/modules/ROOT/pages/index.adoc
+++ b/docs/components/modules/ROOT/pages/index.adoc
@@ -20,6 +20,8 @@ Number of Components: 303 in 241 JAR artifacts (0 deprecated)
 
 | xref:amqp-component.adoc[AMQP] (camel-amqp) | 1.2 | Messaging with AMQP 
protocol using Apache QPid Client.
 
+| xref:kudu-component.adoc[Apache Kudu] (camel-kudu) | 2.25 | Represents a 
Kudu endpoint. A kudu endpoint allows you to interact with Apache Kudu, a free 
and open source column-oriented data store of the Apache Hadoop ecosystem.
+
 | xref:apns-component.adoc[APNS] (camel-apns) | 2.8 | For sending 
notifications to Apple iOS devices.
 
 | xref:as2-component.adoc[AS2] (camel-as2) | 2.22 | Component used for 
transferring data secure and reliable over the internet using the AS2 protocol.
diff --git a/docs/components/modules/ROOT/pages/kudu-component.adoc 
b/docs/components/modules/ROOT/pages/kudu-component.adoc
new file mode 100644
index 0000000..dc0d1b5
--- /dev/null
+++ b/docs/components/modules/ROOT/pages/kudu-component.adoc
@@ -0,0 +1,121 @@
+[[kudu-component]]
+= Apache Kudu Component
+:page-source: components/camel-kudu/src/main/docs/kudu-component.adoc
+
+*Since Camel 2.25*
+
+The Kudu component supports storing and retrieving data from/to 
https://kudu.apache.org/[Apache Kudu], a free and open source column-oriented 
data store of the Apache Hadoop ecosystem.
+
+== Prerequisites
+
+You must have a valid Kudu instance running. More information are available at 
https://kudu.apache.org/[Apache Kudu].
+
+
+// component options: START
+The Apache Kudu component supports 1 options, which are listed below.
+
+
+
+[width="100%",cols="2,5,^1,2",options="header"]
+|===
+| Name | Description | Default | Type
+| *basicPropertyBinding* (advanced) | Whether the component should use basic 
property binding (Camel 2.x) or the newer property binding with additional 
capabilities | false | boolean
+|===
+// component options: END
+
+// endpoint options: START
+The Apache Kudu endpoint is configured using URI syntax:
+
+----
+kudu:host:port/tableName
+----
+
+with the following path and query parameters:
+
+=== Path Parameters (1 parameters):
+
+
+[width="100%",cols="2,5,^1,2",options="header"]
+|===
+| Name | Description | Default | Type
+| *uri* | Connection string to Kudu |  | String
+|===
+
+
+=== Query Parameters (7 parameters):
+
+
+[width="100%",cols="2,5,^1,2",options="header"]
+|===
+| Name | Description | Default | Type
+| *operation* (common) | What kind of operation is to be performed in the 
table |  | KuduOperations
+| *bridgeErrorHandler* (consumer) | Allows for bridging the consumer to the 
Camel routing Error Handler, which mean any exceptions occurred while the 
consumer is trying to pickup incoming messages, or the likes, will now be 
processed as a message and handled by the routing Error Handler. By default the 
consumer will use the org.apache.camel.spi.ExceptionHandler to deal with 
exceptions, that will be logged at WARN or ERROR level and ignored. | false | 
boolean
+| *exceptionHandler* (consumer) | To let the consumer use a custom 
ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this 
option is not in use. By default the consumer will deal with exceptions, that 
will be logged at WARN or ERROR level and ignored. |  | ExceptionHandler
+| *exchangePattern* (consumer) | Sets the exchange pattern when the consumer 
creates an exchange. |  | ExchangePattern
+| *lazyStartProducer* (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 [...]
+| *basicPropertyBinding* (advanced) | Whether the endpoint should use basic 
property binding (Camel 2.x) or the newer property binding with additional 
capabilities | false | boolean
+| *synchronous* (advanced) | Sets whether synchronous processing should be 
strictly used, or Camel is allowed to use asynchronous processing (if 
supported). | false | boolean
+|===
+// endpoint options: END
+
+== Input Body formats
+
+=== Insert
+
+The input body format has to be a java.util.Map<String, Object>. This map will 
represent a row of the table whose elements are columns, where the key is the 
column name and the value is the value of the column. 
+
+== Output Body formats
+
+=== Scan
+
+The output body format will be a java.util.List<java.util.Map<String, 
Object>>. Each element of the list will be a different row of the table. Each 
row is a Map<String, Object> whose elements will be each pair of column name 
and column value for that row.
+
+
+== Dependencies
+
+Maven users will need to add the following dependency to their pom.xml.
+
+*pom.xml*
+
+[source,xml]
+---------------------------------------
+<dependency>
+    <groupId>org.apache.camel</groupId>
+    <artifactId>camel-kudu</artifactId>
+    <version>${camel-version}</version>
+</dependency>
+---------------------------------------
+
+where `$\{camel-version\}` must be replaced by the actual version of Camel 
(3.0 or higher).
+
+
+== Spring Boot Auto-Configuration
+
+When using Spring Boot make sure to use the following Maven dependency to have 
support for auto configuration:
+
+[source,xml]
+----
+<dependency>
+  <groupId>org.apache.camel</groupId>
+  <artifactId>camel-kudu-starter</artifactId>
+  <version>x.x.x</version>
+  <!-- use the same version as your Camel core version -->
+</dependency>
+----
+
+
+
+== Camel Kudu Starter
+
+A starter module is available to spring-boot users.
+
+To use this feature, add the following dependencies to your spring boot 
pom.xml file:
+
+[source,xml]
+----
+<dependency>
+    <groupId>org.apache.camel</groupId>
+    <artifactId>camel-kudu-starter</artifactId>
+    <version>${camel.version}</version> <!-- use the same version as your 
Camel core version -->
+</dependency>
+----
diff --git a/parent/pom.xml b/parent/pom.xml
index fb17ae4..6e8afc8 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -406,6 +406,7 @@
         <kie-version>7.27.0.Final</kie-version>
         <kubernetes-client-version>4.6.2</kubernetes-client-version>
         <kubernetes-model-version>4.6.2</kubernetes-model-version>
+       <kudu-version>1.10.0</kudu-version>
         <kxml2-bundle-version>2.3.0_3</kxml2-bundle-version>
         <leveldbjni-version>1.8</leveldbjni-version>
         <leveldb-api-version>0.10</leveldb-api-version>
@@ -672,6 +673,7 @@
         <xpp3-version>1.1.4c</xpp3-version>
         <xstream-bundle-version>1.4.11.1_1</xstream-bundle-version>
         <xstream-version>1.4.11.1</xstream-version>
+       
<yetus-audience-annotations-version>0.11.0</yetus-audience-annotations-version>
         <zendesk-client-version>0.6.2</zendesk-client-version>
         <zipkin-reporter-version>2.11.0</zipkin-reporter-version>
         <zipkin-version>2.19.1</zipkin-version>
@@ -1665,6 +1667,11 @@
       </dependency>
       <dependency>
         <groupId>org.apache.camel</groupId>
+        <artifactId>camel-kudu</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.camel</groupId>
         <artifactId>camel-kura</artifactId>
         <version>${project.version}</version>
       </dependency>
@@ -3284,6 +3291,11 @@
       </dependency>
       <dependency>
         <groupId>org.apache.camel</groupId>
+        <artifactId>camel-kudu-starter</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.camel</groupId>
         <artifactId>camel-kura-starter</artifactId>
         <version>${project.version}</version>
       </dependency>
diff --git a/platforms/karaf/features/src/main/resources/features.xml 
b/platforms/karaf/features/src/main/resources/features.xml
index 187752e..c414efa 100644
--- a/platforms/karaf/features/src/main/resources/features.xml
+++ b/platforms/karaf/features/src/main/resources/features.xml
@@ -1636,6 +1636,12 @@
     <bundle 
dependency='true'>mvn:io.fabric8/openshift-client/${kubernetes-client-version}/jar/bundle</bundle>
     <bundle>mvn:org.apache.camel/camel-kubernetes/${project.version}</bundle>
   </feature>
+  <feature name='camel-kudu' version='${project.version}' resolver='(obr)' 
start-level='50'>
+    <feature version='${project.version}'>camel-core</feature>
+    <bundle 
dependency='true'>wrap:mvn:org.apache.kudu/kudu-client/${kudu-version}</bundle>
+    <bundle 
dependency='true'>wrap:mvn:org.apache.yetus/audience-annotations/${yetus-audience-annotations-version}</bundle>
+    <bundle>mvn:org.apache.camel/camel-kudu/${project.version}</bundle>
+  </feature>
   <feature name='camel-kura' version='${project.version}' start-level='50'>
     <feature version='${project.version}'>camel-core</feature>
     <feature>scr</feature>
diff --git 
a/platforms/spring-boot/components-starter/camel-kudu-starter/pom.xml 
b/platforms/spring-boot/components-starter/camel-kudu-starter/pom.xml
new file mode 100644
index 0000000..e246e64
--- /dev/null
+++ b/platforms/spring-boot/components-starter/camel-kudu-starter/pom.xml
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.camel</groupId>
+    <artifactId>components-starter</artifactId>
+    <version>3.0.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>camel-kudu-starter</artifactId>
+  <packaging>jar</packaging>
+  <name>Spring-Boot Starter :: Camel :: Kudu</name>
+  <description>Spring-Boot Starter for Camel Components</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-starter</artifactId>
+      <version>${spring-boot-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-kudu</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <!--START OF GENERATED CODE-->
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-core-starter</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-spring-boot-starter</artifactId>
+    </dependency>
+    <!--END OF GENERATED CODE-->
+  </dependencies>
+</project>
diff --git 
a/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/java/org/apache/camel/component/kudu/springboot/KuduComponentAutoConfiguration.java
 
b/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/java/org/apache/camel/component/kudu/springboot/KuduComponentAutoConfiguration.java
new file mode 100644
index 0000000..1f8c354
--- /dev/null
+++ 
b/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/java/org/apache/camel/component/kudu/springboot/KuduComponentAutoConfiguration.java
@@ -0,0 +1,128 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.kudu.springboot;
+
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import javax.annotation.Generated;
+import org.apache.camel.CamelContext;
+import org.apache.camel.component.kudu.KuduComponent;
+import org.apache.camel.spi.ComponentCustomizer;
+import org.apache.camel.spi.HasId;
+import org.apache.camel.spring.boot.CamelAutoConfiguration;
+import org.apache.camel.spring.boot.ComponentConfigurationProperties;
+import org.apache.camel.spring.boot.util.CamelPropertiesHelper;
+import 
org.apache.camel.spring.boot.util.ConditionalOnCamelContextAndAutoConfigurationBeans;
+import org.apache.camel.spring.boot.util.GroupCondition;
+import org.apache.camel.spring.boot.util.HierarchicalPropertiesEvaluator;
+import org.apache.camel.support.IntrospectionSupport;
+import org.apache.camel.util.ObjectHelper;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.autoconfigure.AutoConfigureAfter;
+import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
+import 
org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
+import 
org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Conditional;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.Lazy;
+
+/**
+ * Generated by camel-package-maven-plugin - do not edit this file!
+ */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
+@Configuration
+@Conditional({ConditionalOnCamelContextAndAutoConfigurationBeans.class,
+        KuduComponentAutoConfiguration.GroupConditions.class})
+@AutoConfigureAfter(CamelAutoConfiguration.class)
+@EnableConfigurationProperties({ComponentConfigurationProperties.class,
+        KuduComponentConfiguration.class})
+public class KuduComponentAutoConfiguration {
+
+    private static final Logger LOGGER = LoggerFactory
+            .getLogger(KuduComponentAutoConfiguration.class);
+    @Autowired
+    private ApplicationContext applicationContext;
+    @Autowired
+    private CamelContext camelContext;
+    @Autowired
+    private KuduComponentConfiguration configuration;
+    @Autowired(required = false)
+    private List<ComponentCustomizer<KuduComponent>> customizers;
+
+    static class GroupConditions extends GroupCondition {
+        public GroupConditions() {
+            super("camel.component", "camel.component.kudu");
+        }
+    }
+
+    @Lazy
+    @Bean(name = "kudu-component")
+    @ConditionalOnMissingBean(KuduComponent.class)
+    public KuduComponent configureKuduComponent() throws Exception {
+        KuduComponent component = new KuduComponent();
+        component.setCamelContext(camelContext);
+        Map<String, Object> parameters = new HashMap<>();
+        IntrospectionSupport.getProperties(configuration, parameters, null,
+                false);
+        for (Map.Entry<String, Object> entry : parameters.entrySet()) {
+            Object value = entry.getValue();
+            Class<?> paramClass = value.getClass();
+            if (paramClass.getName().endsWith("NestedConfiguration")) {
+                Class nestedClass = null;
+                try {
+                    nestedClass = (Class) paramClass.getDeclaredField(
+                            "CAMEL_NESTED_CLASS").get(null);
+                    HashMap<String, Object> nestedParameters = new HashMap<>();
+                    IntrospectionSupport.getProperties(value, nestedParameters,
+                            null, false);
+                    Object nestedProperty = nestedClass.newInstance();
+                    CamelPropertiesHelper.setCamelProperties(camelContext,
+                            nestedProperty, nestedParameters, false);
+                    entry.setValue(nestedProperty);
+                } catch (NoSuchFieldException e) {
+                }
+            }
+        }
+        CamelPropertiesHelper.setCamelProperties(camelContext, component,
+                parameters, false);
+        if (ObjectHelper.isNotEmpty(customizers)) {
+            for (ComponentCustomizer<KuduComponent> customizer : customizers) {
+                boolean useCustomizer = (customizer instanceof HasId)
+                        ? HierarchicalPropertiesEvaluator.evaluate(
+                                applicationContext.getEnvironment(),
+                                "camel.component.customizer",
+                                "camel.component.kudu.customizer",
+                                ((HasId) customizer).getId())
+                        : HierarchicalPropertiesEvaluator.evaluate(
+                                applicationContext.getEnvironment(),
+                                "camel.component.customizer",
+                                "camel.component.kudu.customizer");
+                if (useCustomizer) {
+                    LOGGER.debug("Configure component {}, with customizer {}",
+                            component, customizer);
+                    customizer.customize(component);
+                }
+            }
+        }
+        return component;
+    }
+}
\ No newline at end of file
diff --git 
a/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/java/org/apache/camel/component/kudu/springboot/KuduComponentConfiguration.java
 
b/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/java/org/apache/camel/component/kudu/springboot/KuduComponentConfiguration.java
new file mode 100644
index 0000000..40109ae
--- /dev/null
+++ 
b/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/java/org/apache/camel/component/kudu/springboot/KuduComponentConfiguration.java
@@ -0,0 +1,54 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.kudu.springboot;
+
+import javax.annotation.Generated;
+import org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon;
+import org.springframework.boot.context.properties.ConfigurationProperties;
+
+/**
+ * Represents a Kudu endpoint. A kudu endpoint allows you to interact with
+ * Apache Kudu, a free and open source column-oriented data store of the Apache
+ * Hadoop ecosystem.
+ * 
+ * Generated by camel-package-maven-plugin - do not edit this file!
+ */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
+@ConfigurationProperties(prefix = "camel.component.kudu")
+public class KuduComponentConfiguration
+        extends
+            ComponentConfigurationPropertiesCommon {
+
+    /**
+     * Whether to enable auto configuration of the kudu component. This is
+     * enabled by default.
+     */
+    private Boolean enabled;
+    /**
+     * Whether the component should use basic property binding (Camel 2.x) or
+     * the newer property binding with additional capabilities
+     */
+    private Boolean basicPropertyBinding = false;
+
+    public Boolean getBasicPropertyBinding() {
+        return basicPropertyBinding;
+    }
+
+    public void setBasicPropertyBinding(Boolean basicPropertyBinding) {
+        this.basicPropertyBinding = basicPropertyBinding;
+    }
+}
\ No newline at end of file
diff --git 
a/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/resources/META-INF/LICENSE.txt
 
b/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/resources/META-INF/LICENSE.txt
new file mode 100644
index 0000000..6b0b127
--- /dev/null
+++ 
b/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/resources/META-INF/LICENSE.txt
@@ -0,0 +1,203 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
diff --git 
a/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/resources/META-INF/NOTICE.txt
 
b/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/resources/META-INF/NOTICE.txt
new file mode 100644
index 0000000..2e215bf
--- /dev/null
+++ 
b/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/resources/META-INF/NOTICE.txt
@@ -0,0 +1,11 @@
+   =========================================================================
+   ==  NOTICE file corresponding to the section 4 d of                    ==
+   ==  the Apache License, Version 2.0,                                   ==
+   ==  in this case for the Apache Camel distribution.                    ==
+   =========================================================================
+
+   This product includes software developed by
+   The Apache Software Foundation (http://www.apache.org/).
+
+   Please read the different LICENSE files present in the licenses directory of
+   this distribution.
diff --git 
a/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/resources/META-INF/spring.factories
 
b/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/resources/META-INF/spring.factories
new file mode 100644
index 0000000..e2f2beb
--- /dev/null
+++ 
b/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/resources/META-INF/spring.factories
@@ -0,0 +1,19 @@
+## ---------------------------------------------------------------------------
+## Licensed to the Apache Software Foundation (ASF) under one or more
+## contributor license agreements.  See the NOTICE file distributed with
+## this work for additional information regarding copyright ownership.
+## The ASF licenses this file to You under the Apache License, Version 2.0
+## (the "License"); you may not use this file except in compliance with
+## the License.  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+## Unless required by applicable law or agreed to in writing, software
+## distributed under the License is distributed on an "AS IS" BASIS,
+## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+## See the License for the specific language governing permissions and
+## limitations under the License.
+## ---------------------------------------------------------------------------
+
+org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
+org.apache.camel.component.kudu.springboot.KuduComponentAutoConfiguration
diff --git 
a/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/resources/META-INF/spring.provides
 
b/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/resources/META-INF/spring.provides
new file mode 100644
index 0000000..2cea6bb
--- /dev/null
+++ 
b/platforms/spring-boot/components-starter/camel-kudu-starter/src/main/resources/META-INF/spring.provides
@@ -0,0 +1,17 @@
+## ---------------------------------------------------------------------------
+## Licensed to the Apache Software Foundation (ASF) under one or more
+## contributor license agreements.  See the NOTICE file distributed with
+## this work for additional information regarding copyright ownership.
+## The ASF licenses this file to You under the Apache License, Version 2.0
+## (the "License"); you may not use this file except in compliance with
+## the License.  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+## Unless required by applicable law or agreed to in writing, software
+## distributed under the License is distributed on an "AS IS" BASIS,
+## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+## See the License for the specific language governing permissions and
+## limitations under the License.
+## ---------------------------------------------------------------------------
+provides: camel-kudu
diff --git a/platforms/spring-boot/components-starter/pom.xml 
b/platforms/spring-boot/components-starter/pom.xml
index 944d86f..3129f56 100644
--- a/platforms/spring-boot/components-starter/pom.xml
+++ b/platforms/spring-boot/components-starter/pom.xml
@@ -261,6 +261,7 @@
     <module>camel-jt400-starter</module>
     <module>camel-kafka-starter</module>
     <module>camel-kubernetes-starter</module>
+    <module>camel-kudu-starter</module>
     <module>camel-kura-starter</module>
     <module>camel-language-starter</module>
     <module>camel-ldap-starter</module>
diff --git 
a/platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml 
b/platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml
index 2c4089a..83f8ab2 100644
--- 
a/platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml
+++ 
b/platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml
@@ -2009,6 +2009,16 @@
       </dependency>
       <dependency>
         <groupId>org.apache.camel</groupId>
+        <artifactId>camel-kudu</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.camel</groupId>
+        <artifactId>camel-kudu-starter</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.camel</groupId>
         <artifactId>camel-kura</artifactId>
         <version>${project.version}</version>
       </dependency>
diff --git 
a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelKuduTest.java
 
b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelKuduTest.java
new file mode 100644
index 0000000..6343577
--- /dev/null
+++ 
b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelKuduTest.java
@@ -0,0 +1,33 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.itest.karaf;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.ops4j.pax.exam.junit.PaxExam;
+
+@RunWith(PaxExam.class)
+public class CamelKuduTest extends BaseKarafTest {
+
+    public static final String COMPONENT = extractName(CamelKuduTest.class);
+
+    @Test
+    public void test() throws Exception {
+        testComponent(COMPONENT, "kudu");
+    }
+
+}
diff --git 
a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelKuduTest.java
 
b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelKuduTest.java
new file mode 100644
index 0000000..2b4cda1
--- /dev/null
+++ 
b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelKuduTest.java
@@ -0,0 +1,50 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.itest.springboot;
+
+import org.apache.camel.itest.springboot.util.ArquillianPackager;
+import org.jboss.arquillian.container.test.api.Deployment;
+import org.jboss.arquillian.junit.Arquillian;
+import org.jboss.shrinkwrap.api.Archive;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+
+
+@RunWith(Arquillian.class)
+public class CamelKuduTest extends AbstractSpringBootTestSupport {
+
+    @Deployment
+    public static Archive<?> createSpringBootPackage() throws Exception {
+        return ArquillianPackager.springBootPackage(createTestConfig());
+    }
+
+    public static ITestConfig createTestConfig() {
+        return new ITestConfigBuilder()
+                .module(inferModuleName(CamelKuduTest.class))
+//                .includeTestDependencies(false)
+//                .unitTestsEnabled(false)
+                .build();
+    }
+
+    @Test
+    public void componentTests() throws Exception {
+        this.runComponentTest(config);
+        this.runModuleUnitTestsIfEnabled(config);
+    }
+
+
+}

Reply via email to