Update wiki Home page for cassandra-sink

gitea_admin 2026-03-11 14:35:21 +00:00
parent c30bad6a34
commit 53318f5b2d

44
Home.md

@ -1,21 +1,37 @@
# Deploy the Project on CamelX Platform
# Cassandra Sink
Deploy on CamelX Platform in three steps
Send data to an Apache Cassandra cluster.
## Step 1: Create a release
From the project space, click on **"Create a release"**
This Kamelet expects JSON Array formatted data. The content of the JSON Array is used as input for the CQL Prepared Statement set in the query parameter.
The new version is automatically available in the list
## Metadata
## Step 2: Deploy
Click on **"Deploy"**
| Property | Value |
|----------|-------|
| Type | sink |
| Group | Cassandra |
| Namespace | Nosql |
| Support Level | Stable |
| Provider | Apache Software Foundation |
- **Version:** Select the desired release
- **Environment:** Choose `Development`, `Staging`, or `Production`
- **Configuration:** Select the configuration source
- **Resources:** Set CPU and Memory
## Properties
## Step 3: Expose
Enable **"Expose"**
| Name | Type | Required | Default | Description |
|------|------|----------|---------|-------------|
| `connectionHost` | string | ✓ | | The hostname(s) for the Cassandra server(s). Use a comma to separate multiple hostnames. |
| `connectionPort` | string | ✓ | | The port number(s) of the cassandra server(s). Use a comma to separate multiple port numbers. |
| `keyspace` | string | ✓ | | The keyspace to use. |
| `username` | string | | | The username for accessing a secured Cassandra cluster. |
| `password` | string | | | The password for accessing a secured Cassandra cluster. |
| `consistencyLevel` | string | | `ANY` | The consistency level to use. |
| `prepareStatements` | boolean | | `true` | If true, specifies to use PreparedStatements as the query. If false, specifies to use regular Statements as the query. |
| `query` | string | ✓ | | The query to execute against the Cassandra cluster table. |
| `extraTypeCodecs` | string | | | To use a specific comma separated list of Extra Type codecs. |
| `jsonPayload` | boolean | | `true` | If we want to transform the payload in json or not |
Choose an **API Gateway** (Internal, Public, etc.)
## Dependencies
- `camel:jackson`
- `camel:kamelet`
- `camel:cassandraql`
- `camel:core`