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 2022/11/17 12:56:09 UTC

[camel-kamelets] branch main updated (5f128b39 -> d6dd679d)

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

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


    from 5f128b39 Updated CHANGELOG.md
     new 6ef75c84 Add delay parameter to all SQL Source Kamelets - PostgreSQL
     new 0f2c1b6a Add delay parameter to all SQL Source Kamelets - PostgreSQL
     new 28039d1f Add delay parameter to all SQL Source Kamelets - MySQL
     new 4036c38c Add delay parameter to all SQL Source Kamelets - MySQL
     new 161926ca Add delay parameter to all SQL Source Kamelets - MariaDB
     new 3743bf16 Add delay parameter to all SQL Source Kamelets - MariaDB
     new 2a56fea7 Add delay parameter to all SQL Source Kamelets - SQLServer
     new d6dd679d Add delay parameter to all SQL Source Kamelets - SQLServer

The 8 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.


Summary of changes:
 kamelets/mariadb-source.kamelet.yaml                                | 6 ++++++
 kamelets/mysql-source.kamelet.yaml                                  | 6 ++++++
 kamelets/postgresql-source.kamelet.yaml                             | 6 ++++++
 kamelets/sqlserver-source.kamelet.yaml                              | 6 ++++++
 .../src/main/resources/kamelets/mariadb-source.kamelet.yaml         | 6 ++++++
 .../src/main/resources/kamelets/mysql-source.kamelet.yaml           | 6 ++++++
 .../src/main/resources/kamelets/postgresql-source.kamelet.yaml      | 6 ++++++
 .../src/main/resources/kamelets/sqlserver-source.kamelet.yaml       | 6 ++++++
 8 files changed, 48 insertions(+)


[camel-kamelets] 05/08: Add delay parameter to all SQL Source Kamelets - MariaDB

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

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

commit 161926caa3ebaf175cbacc8dc7603c0cd8d07cfb
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 17 08:27:53 2022 +0100

    Add delay parameter to all SQL Source Kamelets - MariaDB
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/mariadb-source.kamelet.yaml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/kamelets/mariadb-source.kamelet.yaml b/kamelets/mariadb-source.kamelet.yaml
index 7a388129..b8298079 100644
--- a/kamelets/mariadb-source.kamelet.yaml
+++ b/kamelets/mariadb-source.kamelet.yaml
@@ -81,6 +81,11 @@ spec:
         description: A query to run on a tuple consumed.
         type: string
         example: 'DELETE FROM accounts where user_id = :#user_id'
+      delay:
+        title: Delay
+        description: The number of milliseconds before the next poll
+        type: integer
+        default: 500
   types:
     in:
       mediaType: application/json
@@ -107,6 +112,7 @@ spec:
       parameters:
         dataSource: "#bean:{{dsBean}}"
         onConsume: "{{?consumedQuery}}"
+        delay: "{{delay}}"
       steps:
       - marshal:
           json: 


[camel-kamelets] 02/08: Add delay parameter to all SQL Source Kamelets - PostgreSQL

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

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

commit 0f2c1b6a8e49d6cfce78136dae15e08cefbfaab8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 17 08:24:14 2022 +0100

    Add delay parameter to all SQL Source Kamelets - PostgreSQL
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/postgresql-source.kamelet.yaml      | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/postgresql-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/postgresql-source.kamelet.yaml
index 0a0ecfb3..32a43cf5 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/postgresql-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/postgresql-source.kamelet.yaml
@@ -77,6 +77,11 @@ spec:
         description: A query to run on a tuple consumed.
         type: string
         example: 'DELETE FROM accounts where user_id = :#user_id'
+      delay:
+        title: Delay
+        description: The number of milliseconds before the next poll
+        type: integer
+        default: 500
   types:
     out:
       mediaType: application/json
@@ -104,6 +109,7 @@ spec:
       parameters:
         dataSource: "#bean:{{dsBean}}"
         onConsume: "{{?consumedQuery}}"
+        delay: "{{delay}}"
       steps:
       - marshal:
           json: 


[camel-kamelets] 08/08: Add delay parameter to all SQL Source Kamelets - SQLServer

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

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

commit d6dd679df455b1449d80c7fcec386d4b229e7339
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 17 13:49:26 2022 +0100

    Add delay parameter to all SQL Source Kamelets - SQLServer
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/sqlserver-source.kamelet.yaml       | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/sqlserver-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/sqlserver-source.kamelet.yaml
index 74af161b..0499e8ca 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/sqlserver-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/sqlserver-source.kamelet.yaml
@@ -95,6 +95,11 @@ spec:
         x-descriptors:
           - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
         default: true
+      delay:
+        title: Delay
+        description: The number of milliseconds before the next poll
+        type: integer
+        default: 500
   types:
     in:
       mediaType: application/json
@@ -121,6 +126,7 @@ spec:
       parameters:
         dataSource: "#bean:{{dsBean}}"
         onConsume: "{{?consumedQuery}}"
+        delay: "{{delay}}"
       steps:
       - marshal:
           json: 


[camel-kamelets] 04/08: Add delay parameter to all SQL Source Kamelets - MySQL

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

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

commit 4036c38c30d0ea96567ef5aa5fe6f861319fdf53
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 17 08:27:12 2022 +0100

    Add delay parameter to all SQL Source Kamelets - MySQL
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/mysql-source.kamelet.yaml           | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/mysql-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/mysql-source.kamelet.yaml
index 38ae947a..8afab6c0 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/mysql-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/mysql-source.kamelet.yaml
@@ -81,6 +81,11 @@ spec:
         description: A query to run on a tuple consumed.
         type: string
         example: 'DELETE FROM accounts where user_id = :#user_id'
+      delay:
+        title: Delay
+        description: The number of milliseconds before the next poll
+        type: integer
+        default: 500
   types:
     out:
       mediaType: application/json
@@ -107,6 +112,7 @@ spec:
       parameters:
         dataSource: "#bean:{{dsBean}}"
         onConsume: "{{?consumedQuery}}"
+        delay: "{{delay}}"
       steps:
       - marshal:
           json: 


[camel-kamelets] 06/08: Add delay parameter to all SQL Source Kamelets - MariaDB

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

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

commit 3743bf161e731e2dbd1d683805ed048be4c4b668
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 17 08:28:17 2022 +0100

    Add delay parameter to all SQL Source Kamelets - MariaDB
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/mariadb-source.kamelet.yaml         | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/mariadb-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/mariadb-source.kamelet.yaml
index 7a388129..b8298079 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/mariadb-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/mariadb-source.kamelet.yaml
@@ -81,6 +81,11 @@ spec:
         description: A query to run on a tuple consumed.
         type: string
         example: 'DELETE FROM accounts where user_id = :#user_id'
+      delay:
+        title: Delay
+        description: The number of milliseconds before the next poll
+        type: integer
+        default: 500
   types:
     in:
       mediaType: application/json
@@ -107,6 +112,7 @@ spec:
       parameters:
         dataSource: "#bean:{{dsBean}}"
         onConsume: "{{?consumedQuery}}"
+        delay: "{{delay}}"
       steps:
       - marshal:
           json: 


[camel-kamelets] 01/08: Add delay parameter to all SQL Source Kamelets - PostgreSQL

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

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

commit 6ef75c841725c7338a6643d47bf6ddcd533e99e0
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 17 08:23:29 2022 +0100

    Add delay parameter to all SQL Source Kamelets - PostgreSQL
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/postgresql-source.kamelet.yaml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/kamelets/postgresql-source.kamelet.yaml b/kamelets/postgresql-source.kamelet.yaml
index 0a0ecfb3..32a43cf5 100644
--- a/kamelets/postgresql-source.kamelet.yaml
+++ b/kamelets/postgresql-source.kamelet.yaml
@@ -77,6 +77,11 @@ spec:
         description: A query to run on a tuple consumed.
         type: string
         example: 'DELETE FROM accounts where user_id = :#user_id'
+      delay:
+        title: Delay
+        description: The number of milliseconds before the next poll
+        type: integer
+        default: 500
   types:
     out:
       mediaType: application/json
@@ -104,6 +109,7 @@ spec:
       parameters:
         dataSource: "#bean:{{dsBean}}"
         onConsume: "{{?consumedQuery}}"
+        delay: "{{delay}}"
       steps:
       - marshal:
           json: 


[camel-kamelets] 07/08: Add delay parameter to all SQL Source Kamelets - SQLServer

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

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

commit 2a56fea7df306f31a7f6c426fc161dbbc4c6363e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 17 08:29:49 2022 +0100

    Add delay parameter to all SQL Source Kamelets - SQLServer
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/sqlserver-source.kamelet.yaml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/kamelets/sqlserver-source.kamelet.yaml b/kamelets/sqlserver-source.kamelet.yaml
index 74af161b..0499e8ca 100644
--- a/kamelets/sqlserver-source.kamelet.yaml
+++ b/kamelets/sqlserver-source.kamelet.yaml
@@ -95,6 +95,11 @@ spec:
         x-descriptors:
           - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
         default: true
+      delay:
+        title: Delay
+        description: The number of milliseconds before the next poll
+        type: integer
+        default: 500
   types:
     in:
       mediaType: application/json
@@ -121,6 +126,7 @@ spec:
       parameters:
         dataSource: "#bean:{{dsBean}}"
         onConsume: "{{?consumedQuery}}"
+        delay: "{{delay}}"
       steps:
       - marshal:
           json: 


[camel-kamelets] 03/08: Add delay parameter to all SQL Source Kamelets - MySQL

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

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

commit 28039d1f092153662c9d38947cbd86de312c2158
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 17 08:25:40 2022 +0100

    Add delay parameter to all SQL Source Kamelets - MySQL
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/mysql-source.kamelet.yaml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/kamelets/mysql-source.kamelet.yaml b/kamelets/mysql-source.kamelet.yaml
index 38ae947a..8afab6c0 100644
--- a/kamelets/mysql-source.kamelet.yaml
+++ b/kamelets/mysql-source.kamelet.yaml
@@ -81,6 +81,11 @@ spec:
         description: A query to run on a tuple consumed.
         type: string
         example: 'DELETE FROM accounts where user_id = :#user_id'
+      delay:
+        title: Delay
+        description: The number of milliseconds before the next poll
+        type: integer
+        default: 500
   types:
     out:
       mediaType: application/json
@@ -107,6 +112,7 @@ spec:
       parameters:
         dataSource: "#bean:{{dsBean}}"
         onConsume: "{{?consumedQuery}}"
+        delay: "{{delay}}"
       steps:
       - marshal:
           json: