TranslateProject/sources/tech/20171010 Getting Started Analyzing Twitter Data in Apache Kafka through KSQL.md

8.3 KiB
Raw Blame History

Translating by qhwdw Getting Started Analyzing Twitter Data in Apache Kafka through KSQL

KSQL is the open source streaming SQL engine for Apache Kafka. It lets you do sophisticated stream processing on Kafka topics, easily, using a simple and interactive SQL interface. In this short article well see how easy it is to get up and running with a sandbox for exploring it, using everyones favourite demo streaming data source: Twitter. Well go from ingesting the raw stream of tweets, through to filtering it with predicates in KSQL, to building aggregates such as counting the number of tweets per user per hour.

First up, go grab a copy of Confluent Platform. Im using the RPM but you can use tar, zip, etc if you want to. Start the Confluent stack up:

$ confluent start

(Heres a quick tutorial on the confluent CLI if youre interested!)

Well use Kafka Connect to pull the data from Twitter. The Twitter Connector can be found on GitHub here. To install it, simply do the following:

# Clone the git repo cd /home/rmoff git clone https://github.com/jcustenborder/kafka-connect-twitter.git

# Compile the code cd kafka-connect-twitter mvn clean package

To get Kafka Connect to pick up the connector that weve built, youll have to modify the configuration file. Since were using the Confluent CLI, the configuration file is actually etc/schema-registry/connect-avro-distributed.properties, so go modify that and add to it:

plugin.path=/home/rmoff/kafka-connect-twitter/target/kafka-connect-twitter-0.2-SNAPSHOT.tar.gz

Restart Kafka Connect: confluent stop connect confluent start connect

Once youve installed the plugin, you can easily configure it. You can use the Kafka Connect REST API directly, or create your configuration file, which is what Ill do here. Youll need to head over to Twitter to grab your API keys first.

Assuming youve written this to /home/rmoff/twitter-source.json, you can now run:

$ confluent load twitter_source -d /home/rmoff/twitter-source.json

And then tweets from everyones favourite internet meme star start [rick]-rolling in…

Now lets fire up KSQL! First off, download and build it:

cd /home/rmoff   git clone https://github.com/confluentinc/ksql.git   cd /home/rmoff/ksql   mvn clean compile install -DskipTests

Once its built, lets run it!

./bin/ksql-cli local --bootstrap-server localhost:9092

Using KSQL, we can take our data thats held in Kafka topics and query it. First, we need to tell KSQL what the schema of the data in the topic is. A twitter message is actually a pretty huge JSON object, but for brevity lets just pick a couple of columns to start with:

ksql> CREATE STREAM twitter_raw (CreatedAt BIGINT, Id BIGINT, Text VARCHAR) WITH (KAFKA_TOPIC='twitter_json_01', VALUE_FORMAT='JSON'); Message   ---------------- Stream created

With the schema defined, we can query the stream. To get KSQL to show data from the start of the topic (rather than the current point in time, which is the default), run:

ksql> SET 'auto.offset.reset' = 'earliest';   Successfully changed local property 'auto.offset.reset' from 'null' to 'earliest'

And now lets see the data. Well select just one row using the LIMIT clause:

Now lets redefine the stream with all the contents of the tweet payload now defined and available to us:

Now we can manipulate and examine our data more closely, using normal SQL queries:

Note that theres no LIMIT clause, so youll see on screen the results of the  continuous query . Unlike a query on a relational table that returns a definite number of results, a continuous query is running on unbounded streaming data, so it always has the potential to return more records. Hit Ctrl-C to cancel and return to the KSQL prompt. In the above query were doing a few things:

  • TIMESTAMPTOSTRING to convert the timestamp from epoch to a human-readable format

  • EXTRACTJSONFIELD to show one of the nested user fields from the source, which looks like:

  • Applying predicates to whats shown, using pattern matching against the hashtag, forced to lower case with LCASE.

For a list of supported functions, see the KSQL documentation.

We can create a derived stream from this data:

and query the derived stream:

Before we finish, lets see how to do some aggregation.

Youll probably get a screenful of results; this is because KSQL is actually emitting the aggregation values for the given hourly window each time it updates. Since weve set KSQL to read all messages on the topic (SET 'auto.offset.reset' = 'earliest';) its reading all of these messages at once and calculating the aggregation updates as it goes. Theres actually a subtlety in whats going on here thats worth digging into. Our inbound stream of tweets is just that—a stream. But now that we are creating aggregates, we have actually created a table. A table is a snapshot of a given keys values at a given point in time. KSQL aggregates data based on the event time of the message, and handles late arriving data by simply restating that relevant window if it updates. Confused? We hope not, but lets see if we can illustrate this with an example. Well declare our aggregate as an actual table:

Looking at the columns in the table, there are two implicit ones in addition to those we asked for:

`ksql> DESCRIBE user_tweet_count;

Field           | Type   -----------------------------------   ROWTIME         | BIGINT   ROWKEY          | VARCHAR(STRING)   USER_SCREENNAME | VARCHAR(STRING)   TWEET_COUNT     | BIGINT   ksql>`

Lets see whats in these:

The ROWTIME is the window start time, the ROWKEY is a composite of the GROUP BY(USER_SCREENNAME) plus the window. So we can tidy this up a bit by creating an additional derived table:

Now its easy to query and see the data that were interested in:

Conclusion

So there we have it! Were taking data from Kafka, and easily exploring it using KSQL. Not only can we explore and transform the data, we can use KSQL to easily build stream processing from streams and tables.

If youre interested in what KSQL can do, check out:

Remember that KSQL is currently in developer preview. Feel free to raise any issues on the KSQL github repo, or come along to the #ksql channel on our community Slack group.


via: https://www.confluent.io/blog/using-ksql-to-analyse-query-and-transform-data-in-kafka

作者:Robin Moffatt 译者:译者ID 校对:校对者ID

本文由 LCTT 原创编译,Linux中国 荣誉推出