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/07/02 07:07:33 UTC

[camel-kafka-connector-examples] branch move-after-read created (now 1c5aa08)

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

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


      at 1c5aa08  Add an AWS2-S3 example with move after read

This branch includes the following new commits:

     new 1c5aa08  Add an AWS2-S3 example with move after read

The 1 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-kafka-connector-examples] 01/01: Add an AWS2-S3 example with move after read

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

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

commit 1c5aa08db06c1d3b5b0f55afceb13d424391983a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Jul 2 09:06:13 2020 +0200

    Add an AWS2-S3 example with move after read
---
 aws2-s3/aws2-s3-move-after-read/README.adoc        | 76 ++++++++++++++++++++++
 .../config/CamelAWS2S3SourceConnector.properties   | 35 ++++++++++
 2 files changed, 111 insertions(+)

diff --git a/aws2-s3/aws2-s3-move-after-read/README.adoc b/aws2-s3/aws2-s3-move-after-read/README.adoc
new file mode 100644
index 0000000..5587452
--- /dev/null
+++ b/aws2-s3/aws2-s3-move-after-read/README.adoc
@@ -0,0 +1,76 @@
+# Camel-Kafka-connector AWS2 S3 MinIO Source
+
+## Introduction
+
+This is an example for Camel-Kafka-connector AW2-S3 with move after read option
+
+## What is needed
+
+- A MinIO instance running
+
+## 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/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic mytopic
+```
+
+## Setting up the needed bits and running the example
+
+You'll need to setup the plugin.path property in your kafka
+
+Open the `$KAFKA_HOME/config/connect-standalone.properties`
+
+and set the `plugin.path` property to your choosen location
+
+In this example we'll use `/home/oscerd/connectors/`
+
+```
+> cd /home/oscerd/connectors/
+> wget https://repo1.maven.org/maven2/org/apache/camel/kafkaconnector/camel-aws2-s3-kafka-connector/0.3.0/camel-aws2-s3-kafka-connector-0.3.0-package.zip
+> unzip camel-aws2-s3-kafka-connector-0.3.0-package.zip
+```
+
+Now it's time to setup the connectors
+
+Open the AWS2 S3 configuration file
+
+```
+name=CamelAWS2S3SourceConnector
+connector.class=org.apache.camel.kafkaconnector.aws2s3.CamelAws2s3SourceConnector
+key.converter=org.apache.kafka.connect.storage.StringConverter
+value.converter=org.apache.kafka.connect.storage.StringConverter
+
+camel.source.maxPollDuration=10000
+
+topics=test1
+
+camel.source.path.bucketNameOrArn=camel-kafka-connector
+
+camel.source.endpoint.moveAfterRead=true
+camel.source.endpoint.destinationBucket=camel-1
+
+camel.component.aws2-s3.access-key=xxxx
+camel.component.aws2-s3.secret-key=yyyy
+camel.component.aws2-s3.region=eu-west-1
+```
+
+and add the correct credentials for AWS.
+
+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 
+```
+Load a file in camel-kafka-connector bucket.
+
+On a different terminal run the kafka-consumer and you should see messages from the S3 bucket arriving through Kafka Broker.
+
+```
+bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test1 --from-beginning
+Hello from Camel Kafka connector!
+```
+
diff --git a/aws2-s3/aws2-s3-move-after-read/config/CamelAWS2S3SourceConnector.properties b/aws2-s3/aws2-s3-move-after-read/config/CamelAWS2S3SourceConnector.properties
new file mode 100644
index 0000000..5af6726
--- /dev/null
+++ b/aws2-s3/aws2-s3-move-after-read/config/CamelAWS2S3SourceConnector.properties
@@ -0,0 +1,35 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+name=CamelAWS2S3SourceConnector
+connector.class=org.apache.camel.kafkaconnector.aws2s3.CamelAws2s3SourceConnector
+key.converter=org.apache.kafka.connect.storage.StringConverter
+value.converter=org.apache.kafka.connect.storage.StringConverter
+
+camel.source.maxPollDuration=10000
+
+topics=test1
+
+camel.source.path.bucketNameOrArn=camel-kafka-connector
+
+camel.source.endpoint.moveAfterRead=true
+camel.source.endpoint.destinationBucket=camel-1
+
+camel.component.aws2-s3.access-key=xxxx
+camel.component.aws2-s3.secret-key=yyyy
+camel.component.aws2-s3.region=eu-west-1
+