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/11/25 07:15:48 UTC

[camel-kafka-connector-examples] branch directmessage-source created (now 8bd1a2e)

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

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


      at 8bd1a2e  Added Twitter Direct Message source connector example

This branch includes the following new commits:

     new 8bd1a2e  Added Twitter Direct Message source connector example

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: Added Twitter Direct Message source connector example

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

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

commit 8bd1a2e175dca2fdbf85a86938d9d2cd0c685a50
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Nov 25 08:15:11 2020 +0100

    Added Twitter Direct Message source connector example
---
 twitter/twitter-direct-message-source/README.adoc  | 77 ++++++++++++++++++++++
 ...lTwitterdirectmessageSourceConnector.properties | 32 +++++++++
 2 files changed, 109 insertions(+)

diff --git a/twitter/twitter-direct-message-source/README.adoc b/twitter/twitter-direct-message-source/README.adoc
new file mode 100644
index 0000000..28d05ef
--- /dev/null
+++ b/twitter/twitter-direct-message-source/README.adoc
@@ -0,0 +1,77 @@
+# Camel-Kafka-connector Twitter Direct Message Source
+
+This is an example for Camel-Kafka-connector Twitter Direct Message Source
+
+## Standalone
+
+### What is needed
+
+- A Twitter App with Read, Write and direct message permissions
+
+### Setting up Twitter App and get credentials
+
+You'll need to create a twitter app and take note of access token, access token secret, consumer key and consumer secret.
+
+### Running Kafka
+
+```
+$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
+```
+
+### 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-twitter-directmessage-kafka-connector/0.6.0/camel-twitter-directmessage-kafka-connector-0.6.0-package.zip
+> unzip camel-twitter-directmessage-kafka-connector-0.6.0-package.zip
+```
+
+Now it's time to setup the connectors
+
+Open the Twitter source configuration file
+
+```
+name=CamelTwitter-directmessageSourceConnector
+connector.class=org.apache.camel.kafkaconnector.twitterdirectmessage.CamelTwitterdirectmessageSourceConnector
+key.converter=org.apache.kafka.connect.storage.StringConverter
+value.converter=org.apache.kafka.connect.storage.StringConverter
+
+topics=mytopic
+
+camel.source.path.user=<account_id>
+camel.source.endpoint.accessToken=<access_token>
+camel.source.endpoint.accessTokenSecret=<access_token_secret>
+camel.source.endpoint.consumerKey=<consumer_key>
+camel.source.endpoint.consumerSecret=<consumer_secret>
+camel.source.endpoint.type=polling
+camel.source.endpoint.delay=60000
+camel.source.endpoint.count=5
+```
+
+Set the correct options in the file for the credentials part.
+
+Now you can run the example
+
+```
+$KAFKA_HOME/bin/connect-standalone.sh $KAFKA_HOME/config/connect-standalone.properties config/CamelTwitterdirectmessageSourceConnector.properties
+```
+
+In another terminal, using kafkacat, you can consume the messages
+
+```
+> ./kafkacat -b localhost:9092 -t mytopic
+% Auto-selecting Consumer mode (use -P or -C to override)
+DirectMessageJSONImpl{id=1331192592978030596, text='hello from ckc', senderId=2867192968, recipientId=2867192968, createdAt=Tue Nov 24 12:07:01 CET 2020, userMentionEntities=[], urlEntities=[], hashtagEntities=[], mediaEntities=[], symbolEntities=[]}
+% Reached end of topic mytopic [0] at offset 1
+```
+
diff --git a/twitter/twitter-direct-message-source/config/CamelTwitterdirectmessageSourceConnector.properties b/twitter/twitter-direct-message-source/config/CamelTwitterdirectmessageSourceConnector.properties
new file mode 100644
index 0000000..8d485cc
--- /dev/null
+++ b/twitter/twitter-direct-message-source/config/CamelTwitterdirectmessageSourceConnector.properties
@@ -0,0 +1,32 @@
+#
+# 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=CamelTwitter-directmessageSourceConnector
+connector.class=org.apache.camel.kafkaconnector.twitterdirectmessage.CamelTwitterdirectmessageSourceConnector
+key.converter=org.apache.kafka.connect.storage.StringConverter
+value.converter=org.apache.kafka.connect.storage.StringConverter
+
+topics=mytopic
+
+camel.source.path.user=<account_id>
+camel.source.endpoint.accessToken=<access_token>
+camel.source.endpoint.accessTokenSecret=<access_token_secret>
+camel.source.endpoint.consumerKey=<consumer_key>
+camel.source.endpoint.consumerSecret=<consumer_secret>
+camel.source.endpoint.type=polling
+camel.source.endpoint.delay=60000
+camel.source.endpoint.count=5