From 526cf10ad83a92c876c42879ab9d80a34255c162 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Wed, 11 Mar 2026 14:35:23 +0000 Subject: [PATCH] Update wiki Home page for cassandra-source --- Home.md | 40 ++++++++++++++++++++++++++-------------- 1 file changed, 26 insertions(+), 14 deletions(-) diff --git a/Home.md b/Home.md index 93a012c..156e7ca 100644 --- a/Home.md +++ b/Home.md @@ -1,21 +1,33 @@ -# Deploy the Project on CamelX Platform +# Cassandra Source -Deploy on CamelX Platform in three steps +Send a query to an Apache Cassandra cluster table. -## Step 1: Create a release -From the project space, click on **"Create a release"** +## Metadata -The new version is automatically available in the list +| Property | Value | +|----------|-------| +| Type | source | +| Group | Cassandra | +| Namespace | Nosql | +| Support Level | Stable | +| Provider | Apache Software Foundation | -## Step 2: Deploy -Click on **"Deploy"** +## Properties -- **Version:** Select the desired release -- **Environment:** Choose `Development`, `Staging`, or `Production` -- **Configuration:** Select the configuration source -- **Resources:** Set CPU and Memory +| 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. | +| `resultStrategy` | string | | `ALL` | The strategy to convert the result set of the query. | +| `consistencyLevel` | string | | `QUORUM` | The consistency level to use. | +| `query` | string | ✓ | | The query to execute against the Cassandra cluster table. | +| `extraTypeCodecs` | string | | | To use a specific comma separated list of Extra Type codecs. | -## Step 3: Expose -Enable **"Expose"** +## Dependencies -Choose an **API Gateway** (Internal, Public, etc.) +- `camel:jackson` +- `camel:kamelet` +- `camel:cassandraql`