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:27 UTC

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

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"]
 ----