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 2020/10/23 06:55:24 UTC

[camel-kafka-connector-examples] branch master updated (cef55e5 -> cf20f53)

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

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector-examples.git.


    from cef55e5  Camel-CassandraQL source example: Fixed by reflecting the change in the 3.5.0 camel-cassandraql component
     new cef8d38  Fixed reference to non-existent/non-used properties file
     new 9a0dc9c  Added a note that the bucket may be auto-created if it does not exist
     new 7c67b93  Adjusted to use the same topic name as the one in the properties file
     new cf20f53  Ensure that the Kafka startup commands work outside of Kafka installation directory

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.


Summary of changes:
 aws2-s3/aws2-s3-minio-source/README.adoc              |  9 +++++----
 aws2-s3/aws2-s3-move-after-read/README.adoc           | 10 +++++-----
 aws2-s3/aws2-s3-sink-with-aggregation/README.adoc     |  8 ++++----
 aws2-s3/aws2-s3-sink-with-zip-aggregation/README.adoc |  8 ++++----
 aws2-s3/aws2-s3-sink-with-zip-dataformat/README.adoc  |  6 +++---
 aws2-s3/aws2-s3-source/README.adoc                    |  8 ++++----
 6 files changed, 25 insertions(+), 24 deletions(-)


[camel-kafka-connector-examples] 02/04: Added a note that the bucket may be auto-created if it does not exist

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector-examples.git

commit 9a0dc9c0562dd780271db2ce382aec73bc09e75f
Author: Otavio Rodolfo Piske <op...@redhat.com>
AuthorDate: Fri Oct 23 08:39:50 2020 +0200

    Added a note that the bucket may be auto-created if it does not exist
---
 aws2-s3/aws2-s3-minio-source/README.adoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/aws2-s3/aws2-s3-minio-source/README.adoc b/aws2-s3/aws2-s3-minio-source/README.adoc
index 78db3c1..be9b0d3 100644
--- a/aws2-s3/aws2-s3-minio-source/README.adoc
+++ b/aws2-s3/aws2-s3-minio-source/README.adoc
@@ -7,6 +7,7 @@ This is an example for Camel-Kafka-connector AW2-S3 MinIO
 ## What is needed
 
 - A MinIO instance running
+- AWS S3 Bucket (it will be auto created if it does not exist)
 
 ## Running Kafka
 


[camel-kafka-connector-examples] 03/04: Adjusted to use the same topic name as the one in the properties file

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector-examples.git

commit 7c67b938436f6dd48b652d252d46e8816e5d9386
Author: Otavio Rodolfo Piske <op...@redhat.com>
AuthorDate: Fri Oct 23 08:43:13 2020 +0200

    Adjusted to use the same topic name as the one in the properties file
---
 aws2-s3/aws2-s3-minio-source/README.adoc    | 2 +-
 aws2-s3/aws2-s3-move-after-read/README.adoc | 6 +++---
 aws2-s3/aws2-s3-source/README.adoc          | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/aws2-s3/aws2-s3-minio-source/README.adoc b/aws2-s3/aws2-s3-minio-source/README.adoc
index be9b0d3..9cfb084 100644
--- a/aws2-s3/aws2-s3-minio-source/README.adoc
+++ b/aws2-s3/aws2-s3-minio-source/README.adoc
@@ -14,7 +14,7 @@ This is an example for Camel-Kafka-connector AW2-S3 MinIO
 ```
 $KAFKA_HOME/bin/zookeeper-server-start.sh config/zookeeper.properties
 $KAFKA_HOME/bin/kafka-server-start.sh config/server.properties
-$KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic mytopic
+$KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic test1
 ```
 
 ## Setting up the needed bits and running the example
diff --git a/aws2-s3/aws2-s3-move-after-read/README.adoc b/aws2-s3/aws2-s3-move-after-read/README.adoc
index ea746c0..5d88d9f 100644
--- a/aws2-s3/aws2-s3-move-after-read/README.adoc
+++ b/aws2-s3/aws2-s3-move-after-read/README.adoc
@@ -13,7 +13,7 @@ This is an example for Camel-Kafka-connector AW2-S3 with move after read option
 ```
 $KAFKA_HOME/bin/zookeeper-server-start.sh config/zookeeper.properties
 $KAFKA_HOME/bin/kafka-server-start.sh config/server.properties
-$KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic mytopic
+$KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic test1
 ```
 
 ### Setting up the needed bits and running the example
@@ -63,7 +63,7 @@ You need to have the camel-1 bucket already created in your AWS S3.
 Now you can run the example
 
 ```
-$KAFKA_HOME/bin/connect-standalone.sh $KAFKA_HOME/config/connect-standalone.properties config/CamelAWSS3SourceConnector.properties 
+$KAFKA_HOME/bin/connect-standalone.sh $KAFKA_HOME/config/connect-standalone.properties config/CamelAWSS3SourceConnector.properties
 ```
 Load a file in camel-kafka-connector bucket.
 
@@ -147,7 +147,7 @@ So we need to do something like this:
 > unzip camel-aws2-s3-kafka-connector-0.5.0-package.zip
 ```
 
-Now we can start the build 
+Now we can start the build
 
 [source,bash,options="nowrap"]
 ----
diff --git a/aws2-s3/aws2-s3-source/README.adoc b/aws2-s3/aws2-s3-source/README.adoc
index a6c4d49..ce80366 100644
--- a/aws2-s3/aws2-s3-source/README.adoc
+++ b/aws2-s3/aws2-s3-source/README.adoc
@@ -13,7 +13,7 @@ This is an example for Camel-Kafka-connector AW2-S3
 ```
 $KAFKA_HOME/bin/zookeeper-server-start.sh config/zookeeper.properties
 $KAFKA_HOME/bin/kafka-server-start.sh config/server.properties
-$KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic mytopic
+$KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic test1
 ```
 
 ## Setting up the needed bits and running the example
@@ -143,7 +143,7 @@ So we need to do something like this:
 > unzip camel-aws2-s3-kafka-connector-0.5.0-package.zip
 ```
 
-Now we can start the build 
+Now we can start the build
 
 [source,bash,options="nowrap"]
 ----


[camel-kafka-connector-examples] 01/04: Fixed reference to non-existent/non-used properties file

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector-examples.git

commit cef8d38906628c4437b95b60db7fa5a81df7eb09
Author: Otavio Rodolfo Piske <op...@redhat.com>
AuthorDate: Fri Oct 23 08:32:30 2020 +0200

    Fixed reference to non-existent/non-used properties file
---
 aws2-s3/aws2-s3-minio-source/README.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/aws2-s3/aws2-s3-minio-source/README.adoc b/aws2-s3/aws2-s3-minio-source/README.adoc
index 3ebef35..78db3c1 100644
--- a/aws2-s3/aws2-s3-minio-source/README.adoc
+++ b/aws2-s3/aws2-s3-minio-source/README.adoc
@@ -68,7 +68,7 @@ camel.component.aws2-s3.region=eu-west-1
 Now you can run the example
 
 ```
-$KAFKA_HOME/bin/connect-standalone.sh $KAFKA_HOME/config/connect-standalone.properties config/CamelAWSS3SourceConnector.properties config/CamelAWS2SQSSourceConnector.properties
+$KAFKA_HOME/bin/connect-standalone.sh $KAFKA_HOME/config/connect-standalone.properties config/CamelAWSS3SourceConnector.properties
 ```
 
 Just connect to your MinIO console and upload a file into your bucket.


[camel-kafka-connector-examples] 04/04: Ensure that the Kafka startup commands work outside of Kafka installation directory

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector-examples.git

commit cf20f5325c8c0c462649f0c2629a7a056c02a7f7
Author: Otavio Rodolfo Piske <op...@redhat.com>
AuthorDate: Fri Oct 23 08:48:38 2020 +0200

    Ensure that the Kafka startup commands work outside of Kafka installation directory
---
 aws2-s3/aws2-s3-minio-source/README.adoc              | 4 ++--
 aws2-s3/aws2-s3-move-after-read/README.adoc           | 4 ++--
 aws2-s3/aws2-s3-sink-with-aggregation/README.adoc     | 8 ++++----
 aws2-s3/aws2-s3-sink-with-zip-aggregation/README.adoc | 8 ++++----
 aws2-s3/aws2-s3-sink-with-zip-dataformat/README.adoc  | 6 +++---
 aws2-s3/aws2-s3-source/README.adoc                    | 4 ++--
 6 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/aws2-s3/aws2-s3-minio-source/README.adoc b/aws2-s3/aws2-s3-minio-source/README.adoc
index 9cfb084..ace9092 100644
--- a/aws2-s3/aws2-s3-minio-source/README.adoc
+++ b/aws2-s3/aws2-s3-minio-source/README.adoc
@@ -12,8 +12,8 @@ This is an example for Camel-Kafka-connector AW2-S3 MinIO
 ## Running Kafka
 
 ```
-$KAFKA_HOME/bin/zookeeper-server-start.sh config/zookeeper.properties
-$KAFKA_HOME/bin/kafka-server-start.sh config/server.properties
+$KAFKA_HOME/bin/zookeeper-server-start.sh $KAFKA_HOME/config/zookeeper.properties
+$KAFKA_HOME/bin/kafka-server-start.sh $KAFKA_HOME/config/server.properties
 $KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic test1
 ```
 
diff --git a/aws2-s3/aws2-s3-move-after-read/README.adoc b/aws2-s3/aws2-s3-move-after-read/README.adoc
index 5d88d9f..c5fcd3e 100644
--- a/aws2-s3/aws2-s3-move-after-read/README.adoc
+++ b/aws2-s3/aws2-s3-move-after-read/README.adoc
@@ -11,8 +11,8 @@ This is an example for Camel-Kafka-connector AW2-S3 with move after read option
 ### Running Kafka
 
 ```
-$KAFKA_HOME/bin/zookeeper-server-start.sh config/zookeeper.properties
-$KAFKA_HOME/bin/kafka-server-start.sh config/server.properties
+$KAFKA_HOME/bin/zookeeper-server-start.sh $KAFKA_HOME/config/zookeeper.properties
+$KAFKA_HOME/bin/kafka-server-start.sh $KAFKA_HOME/config/server.properties
 $KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic test1
 ```
 
diff --git a/aws2-s3/aws2-s3-sink-with-aggregation/README.adoc b/aws2-s3/aws2-s3-sink-with-aggregation/README.adoc
index ae0e2ff..4cbb157 100644
--- a/aws2-s3/aws2-s3-sink-with-aggregation/README.adoc
+++ b/aws2-s3/aws2-s3-sink-with-aggregation/README.adoc
@@ -1,6 +1,6 @@
 # Camel-Kafka-connector AWS2 S3 Sink
 
-This is an example for Camel-Kafka-connector AWS2-S3 Sink 
+This is an example for Camel-Kafka-connector AWS2-S3 Sink
 
 ## Standalone
 
@@ -11,8 +11,8 @@ This is an example for Camel-Kafka-connector AWS2-S3 Sink
 ### Running Kafka
 
 ```
-$KAFKA_HOME/bin/zookeeper-server-start.sh config/zookeeper.properties
-$KAFKA_HOME/bin/kafka-server-start.sh config/server.properties
+$KAFKA_HOME/bin/zookeeper-server-start.sh $KAFKA_HOME/config/zookeeper.properties
+$KAFKA_HOME/bin/kafka-server-start.sh $KAFKA_HOME/config/server.properties
 $KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic mytopic
 ```
 
@@ -161,7 +161,7 @@ So we need to do something like this:
 > unzip camel-aws2-s3-kafka-connector-0.5.0-package.zip
 ```
 
-Now we can start the build 
+Now we can start the build
 
 [source,bash,options="nowrap"]
 ----
diff --git a/aws2-s3/aws2-s3-sink-with-zip-aggregation/README.adoc b/aws2-s3/aws2-s3-sink-with-zip-aggregation/README.adoc
index d206363..2ee9a61 100644
--- a/aws2-s3/aws2-s3-sink-with-zip-aggregation/README.adoc
+++ b/aws2-s3/aws2-s3-sink-with-zip-aggregation/README.adoc
@@ -1,6 +1,6 @@
 # Camel-Kafka-connector AWS2 S3 Sink
 
-This is an example for Camel-Kafka-connector AWS2-S3 Sink 
+This is an example for Camel-Kafka-connector AWS2-S3 Sink
 
 ## Standalone
 
@@ -11,8 +11,8 @@ This is an example for Camel-Kafka-connector AWS2-S3 Sink
 ### Running Kafka
 
 ```
-$KAFKA_HOME/bin/zookeeper-server-start.sh config/zookeeper.properties
-$KAFKA_HOME/bin/kafka-server-start.sh config/server.properties
+$KAFKA_HOME/bin/zookeeper-server-start.sh $KAFKA_HOME/config/zookeeper.properties
+$KAFKA_HOME/bin/kafka-server-start.sh $KAFKA_HOME/config/server.properties
 $KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic mytopic
 ```
 
@@ -343,7 +343,7 @@ Now we need to build the connector:
 
 And move the zip package in targe to my-connectors folder and unzipped it.
 
-Now we can start the build 
+Now we can start the build
 
 [source,bash,options="nowrap"]
 ----
diff --git a/aws2-s3/aws2-s3-sink-with-zip-dataformat/README.adoc b/aws2-s3/aws2-s3-sink-with-zip-dataformat/README.adoc
index d38ad0e..f60ef85 100644
--- a/aws2-s3/aws2-s3-sink-with-zip-dataformat/README.adoc
+++ b/aws2-s3/aws2-s3-sink-with-zip-dataformat/README.adoc
@@ -11,8 +11,8 @@ This is an example for Camel-Kafka-connector AWS2-S3 Sink with Zip Dataformat
 ### Running Kafka
 
 ```
-$KAFKA_HOME/bin/zookeeper-server-start.sh config/zookeeper.properties
-$KAFKA_HOME/bin/kafka-server-start.sh config/server.properties
+$KAFKA_HOME/bin/zookeeper-server-start.sh $KAFKA_HOME/config/zookeeper.properties
+$KAFKA_HOME/bin/kafka-server-start.sh $KAFKA_HOME/config/server.properties
 $KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic mytopic
 ```
 
@@ -330,7 +330,7 @@ Now we need to build the connector:
 
 And move the zip package in targe to my-connectors folder and unzipped it.
 
-Now we can start the build 
+Now we can start the build
 
 [source,bash,options="nowrap"]
 ----
diff --git a/aws2-s3/aws2-s3-source/README.adoc b/aws2-s3/aws2-s3-source/README.adoc
index ce80366..c5f40e2 100644
--- a/aws2-s3/aws2-s3-source/README.adoc
+++ b/aws2-s3/aws2-s3-source/README.adoc
@@ -11,8 +11,8 @@ This is an example for Camel-Kafka-connector AW2-S3
 ### Running Kafka
 
 ```
-$KAFKA_HOME/bin/zookeeper-server-start.sh config/zookeeper.properties
-$KAFKA_HOME/bin/kafka-server-start.sh config/server.properties
+$KAFKA_HOME/bin/zookeeper-server-start.sh $KAFKA_HOME/config/zookeeper.properties
+$KAFKA_HOME/bin/kafka-server-start.sh $KAFKA_HOME/config/server.properties
 $KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic test1
 ```