You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/02/03 09:35:04 UTC

[camel-kamelets] branch cql-extra-codecs created (now 0a08e4ba)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch cql-extra-codecs
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


      at 0a08e4ba Cassandra Kamelets: add extraTypesCodec parameter - Source Kamelet

This branch includes the following new commits:

     new d075ca3e Cassandra Kamelets: add extraTypesCodec parameter - Sink Kamelet
     new 5a922035 Cassandra Kamelets: add extraTypesCodec parameter - Sink Kamelet
     new cd4ed936 Cassandra Kamelets: add extraTypesCodec parameter - Source Kamelet
     new 0a08e4ba Cassandra Kamelets: add extraTypesCodec parameter - Source Kamelet

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel-kamelets] 04/04: Cassandra Kamelets: add extraTypesCodec parameter - Source Kamelet

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch cql-extra-codecs
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 0a08e4baef59c47dc725a407d9179e837ac8ce5b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Feb 3 10:28:41 2023 +0100

    Cassandra Kamelets: add extraTypesCodec parameter - Source Kamelet
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/cassandra-source.kamelet.yaml        | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/cassandra-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/cassandra-source.kamelet.yaml
index 883db1b2..63fd1fd8 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/cassandra-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/cassandra-source.kamelet.yaml
@@ -81,6 +81,10 @@ spec:
         title: Query
         description: The query to execute against the Cassandra cluster table.
         type: string
+      extraTypeCodecs:
+        title: Extra Type Codecs
+        description: To use a specific comma separated list of Extra Type codecs. Possible values are BLOB_TO_ARRAY, BOOLEAN_LIST_TO_ARRAY, BYTE_LIST_TO_ARRAY, SHORT_LIST_TO_ARRAY, INT_LIST_TO_ARRAY, LONG_LIST_TO_ARRAY, FLOAT_LIST_TO_ARRAY, DOUBLE_LIST_TO_ARRAY, TIMESTAMP_UTC, TIMESTAMP_MILLIS_SYSTEM, TIMESTAMP_MILLIS_UTC, ZONED_TIMESTAMP_SYSTEM, ZONED_TIMESTAMP_UTC, ZONED_TIMESTAMP_PERSISTED, LOCAL_TIMESTAMP_SYSTEM and LOCAL_TIMESTAMP_UTC
+        type: string
   types:
     out:
       mediaType: application/json
@@ -97,6 +101,7 @@ spec:
         cql: "{{query}}"
         consistencyLevel: "{{consistencyLevel}}"
         resultSetConversionStrategy: "{{resultStrategy}}"
+        extraTypeCodecs: "{{?extraTypeCodecs}}"
       steps:
       - marshal:
           json: {}


[camel-kamelets] 02/04: Cassandra Kamelets: add extraTypesCodec parameter - Sink Kamelet

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch cql-extra-codecs
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 5a922035ba86bad67302c82ba5fa7dd2e0516c63
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Feb 3 10:22:10 2023 +0100

    Cassandra Kamelets: add extraTypesCodec parameter - Sink Kamelet
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/cassandra-sink.kamelet.yaml          | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/cassandra-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/cassandra-sink.kamelet.yaml
index e40da8fe..10ce37da 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/cassandra-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/cassandra-sink.kamelet.yaml
@@ -85,6 +85,10 @@ spec:
         title: Query
         description: The query to execute against the Cassandra cluster table.
         type: string
+      extraTypeCodecs:
+        title: Extra Type Codecs
+        description: To use a specific comma separated list of Extra Type codecs. Possible values are BLOB_TO_ARRAY, BOOLEAN_LIST_TO_ARRAY, BYTE_LIST_TO_ARRAY, SHORT_LIST_TO_ARRAY, INT_LIST_TO_ARRAY, LONG_LIST_TO_ARRAY, FLOAT_LIST_TO_ARRAY, DOUBLE_LIST_TO_ARRAY, TIMESTAMP_UTC, TIMESTAMP_MILLIS_SYSTEM, TIMESTAMP_MILLIS_UTC, ZONED_TIMESTAMP_SYSTEM, ZONED_TIMESTAMP_UTC, ZONED_TIMESTAMP_PERSISTED, LOCAL_TIMESTAMP_SYSTEM and LOCAL_TIMESTAMP_UTC
+        type: string
   types:
     in:
       mediaType: application/json
@@ -108,3 +112,4 @@ spec:
             prepareStatements: "{{prepareStatements}}"
             consistencyLevel: "{{consistencyLevel}}"
             cql: "{{query}}"
+            extraTypeCodecs: "{{?extraTypeCodecs}}"


[camel-kamelets] 03/04: Cassandra Kamelets: add extraTypesCodec parameter - Source Kamelet

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch cql-extra-codecs
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit cd4ed936ad57dd8e7dc204bc256261794736d78c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Feb 3 10:28:14 2023 +0100

    Cassandra Kamelets: add extraTypesCodec parameter - Source Kamelet
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/cassandra-source.kamelet.yaml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/kamelets/cassandra-source.kamelet.yaml b/kamelets/cassandra-source.kamelet.yaml
index 883db1b2..63fd1fd8 100644
--- a/kamelets/cassandra-source.kamelet.yaml
+++ b/kamelets/cassandra-source.kamelet.yaml
@@ -81,6 +81,10 @@ spec:
         title: Query
         description: The query to execute against the Cassandra cluster table.
         type: string
+      extraTypeCodecs:
+        title: Extra Type Codecs
+        description: To use a specific comma separated list of Extra Type codecs. Possible values are BLOB_TO_ARRAY, BOOLEAN_LIST_TO_ARRAY, BYTE_LIST_TO_ARRAY, SHORT_LIST_TO_ARRAY, INT_LIST_TO_ARRAY, LONG_LIST_TO_ARRAY, FLOAT_LIST_TO_ARRAY, DOUBLE_LIST_TO_ARRAY, TIMESTAMP_UTC, TIMESTAMP_MILLIS_SYSTEM, TIMESTAMP_MILLIS_UTC, ZONED_TIMESTAMP_SYSTEM, ZONED_TIMESTAMP_UTC, ZONED_TIMESTAMP_PERSISTED, LOCAL_TIMESTAMP_SYSTEM and LOCAL_TIMESTAMP_UTC
+        type: string
   types:
     out:
       mediaType: application/json
@@ -97,6 +101,7 @@ spec:
         cql: "{{query}}"
         consistencyLevel: "{{consistencyLevel}}"
         resultSetConversionStrategy: "{{resultStrategy}}"
+        extraTypeCodecs: "{{?extraTypeCodecs}}"
       steps:
       - marshal:
           json: {}


[camel-kamelets] 01/04: Cassandra Kamelets: add extraTypesCodec parameter - Sink Kamelet

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch cql-extra-codecs
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit d075ca3efdf8448968ec1e5666cfd1534818d4e0
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Feb 3 10:21:11 2023 +0100

    Cassandra Kamelets: add extraTypesCodec parameter - Sink Kamelet
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/cassandra-sink.kamelet.yaml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/kamelets/cassandra-sink.kamelet.yaml b/kamelets/cassandra-sink.kamelet.yaml
index e40da8fe..10ce37da 100644
--- a/kamelets/cassandra-sink.kamelet.yaml
+++ b/kamelets/cassandra-sink.kamelet.yaml
@@ -85,6 +85,10 @@ spec:
         title: Query
         description: The query to execute against the Cassandra cluster table.
         type: string
+      extraTypeCodecs:
+        title: Extra Type Codecs
+        description: To use a specific comma separated list of Extra Type codecs. Possible values are BLOB_TO_ARRAY, BOOLEAN_LIST_TO_ARRAY, BYTE_LIST_TO_ARRAY, SHORT_LIST_TO_ARRAY, INT_LIST_TO_ARRAY, LONG_LIST_TO_ARRAY, FLOAT_LIST_TO_ARRAY, DOUBLE_LIST_TO_ARRAY, TIMESTAMP_UTC, TIMESTAMP_MILLIS_SYSTEM, TIMESTAMP_MILLIS_UTC, ZONED_TIMESTAMP_SYSTEM, ZONED_TIMESTAMP_UTC, ZONED_TIMESTAMP_PERSISTED, LOCAL_TIMESTAMP_SYSTEM and LOCAL_TIMESTAMP_UTC
+        type: string
   types:
     in:
       mediaType: application/json
@@ -108,3 +112,4 @@ spec:
             prepareStatements: "{{prepareStatements}}"
             consistencyLevel: "{{consistencyLevel}}"
             cql: "{{query}}"
+            extraTypeCodecs: "{{?extraTypeCodecs}}"