mariadb sink MariaDB Sink

Provided by: "Apache Software Foundation"

Support Level for this Kamelet is: "Stable"

Send data to a MariaDB Database.

In your Pipe file, you must explicitly declare the MariaDB Server driver dependency in spec→integration→dependencies.

  • "mvn:org.mariadb.jdbc:mariadb-java-client:<version>"

This Kamelet expects a JSON-formatted body. Use key:value pairs to map the JSON fields and parameters. For example, here is a query:

'INSERT INTO accounts (username,city) VALUES (:#username,:#city)'

Here is example input for the example query:

'{ "username":"oscerd", "city":"Rome"}'

Configuration Options

The following table summarizes the configuration options available for the mariadb-sink Kamelet:

Property Name Description Type Default Example

databaseName

Database Name

Required The name of the MariaDB Database.

string

password

Password

Required The password to access a secured MariaDB Database.

string

query

Query

Required The query to execute against the MariaDB Database.

string

INSERT INTO accounts (username,city) VALUES (:#username,:#city)

serverName

Server Name

Required The server name for the data source.

string

localhost

username

Username

Required The username to access a secured MariaDB Database.

string

serverPort

Server Port

The server port for the data source.

string

3306

Dependencies

At runtime, the mariadb-sink Kamelet relies upon the presence of the following dependencies:

  • camel:jackson

  • camel:kamelet

  • camel:sql

  • mvn:org.apache.commons:commons-dbcp2:2.12.0

Camel JBang usage

Prerequisites

  • You’ve installed JBang.

  • You have executed the following command:

jbang app install camel@apache/camel

Supposing you have a file named route.yaml with this content:

- route:
    from:
      uri: "kamelet:timer-source"
      parameters:
        period: 10000
        message: 'test'
      steps:
        - to:
            uri: "kamelet:mariadb-sink"

You can now run it directly through the following command

camel run route.yaml