AWS Redshift Source
Provided by: "Apache Software Foundation"
Support Level for this Kamelet is: "Stable"
Query data from an AWS RedShift Database.
Configuration Options
The following table summarizes the configuration options available for the aws-redshift-source
Kamelet:
Property | Name | Description | Type | Default | Example |
---|---|---|---|---|---|
Database Name | Required The name of the AWS RedShift Database. | string | |||
Password | Required The password to access a secured AWS RedShift Database. | string | |||
Query | Required The query to execute against the AWS RedShift Database. | string | INSERT INTO accounts (username,city) VALUES (:#username,:#city) | ||
Server Name | Required The server name for the data source. | string | localhost | ||
Username | Required The username to access a secured AWS RedShift Database. | string | |||
Consumed Query | A query to run on a tuple consumed. | string | DELETE FROM accounts where user_id = :#user_id | ||
Delay | The number of milliseconds before the next poll from the AWS RedShift database. | integer | 500 | ||
Server Port | The server port for the data source. | string | 5439 |
Dependencies
At runtime, the aws-redshift-source
Kamelet relies upon the presence of the following dependencies:
-
camel:jackson
-
camel:kamelet
-
camel:sql
-
mvn:com.amazon.redshift:redshift-jdbc42:2.1.0.30
-
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:aws-redshift-source"
parameters:
.
.
.
steps:
- to:
uri: "kamelet:log-sink"
You can now run it directly through the following command
camel run route.yaml