Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cassandra source fix #167

Merged
merged 2 commits into from
Apr 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion cassandra-source.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ spec:
title: Query
description: The query to execute against the Cassandra cluster table
type: string
default: ANY
types:
out:
mediaType: application/json
Expand Down
3 changes: 2 additions & 1 deletion docs/modules/ROOT/pages/cassandra-source.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The following table summarizes the configuration options available for the `cass
| *keyspace {empty}* *| Keyspace| Keyspace to use| string| | `"customers"`
| *password {empty}* *| Password| The password to use for accessing a secured Cassandra Cluster| string| |
| *port {empty}* *| Port| Port number of cassandra server(s)| string| | `9042`
| *query {empty}* *| Query| The query to execute against the Cassandra cluster table| string| `"ANY"`|
| *query {empty}* *| Query| The query to execute against the Cassandra cluster table| string| |
| *username {empty}* *| Username| The username to use for accessing a secured Cassandra Cluster| string| |
| consistencyLevel| Consistency Level| Consistency level to use. The value can be one of ANY, ONE, TWO, THREE, QUORUM, ALL, LOCAL_QUORUM, EACH_QUORUM, SERIAL, LOCAL_SERIAL, LOCAL_ONE| string| `"ANY"`|
| resultStrategy| Result Strategy| The strategy to convert the result set of the query. Possible values are ALL, ONE, LIMIT_10, LIMIT_100...| string| `"ALL"`|
Expand Down Expand Up @@ -49,6 +49,7 @@ spec:
keyspace: "customers"
password: "The Password"
port: 9042
query: "The Query"
username: "The Username"
sink:
ref:
Expand Down