Getting Started Analyzing Twitter Data in Apache Kafka through KSQL ============================================================ [KSQL][8] 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 we’ll see how easy it is to get up and running with a sandbox for exploring it, using everyone’s favourite demo streaming data source: Twitter. We’ll 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. ![](https://www.confluent.io/wp-content/uploads/tweet_kafka-1024x617.png) First up, [go grab a copy of Confluent Platform][9]. I’m using the RPM but you can use [tar, zip, etc][10] if you want to. Start the Confluent stack up: `$ confluent start` (Here’s a [quick tutorial on the confluent CLI][11] if you’re interested!) We’ll use Kafka Connect to pull the data from Twitter. The Twitter Connector can be found [on GitHub here][12]. 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][13] that we’ve built, you’ll have to modify the configuration file. Since we’re 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 you’ve 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 I’ll do here. You’ll need to head over to [Twitter to grab your API keys first][14]. Assuming you’ve 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 everyone’s favourite internet meme star start [rick]-rolling in… Now let’s 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 it’s built, let’s run it! `./bin/ksql-cli local --bootstrap-server localhost:9092` Using KSQL, we can take our data that’s 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 let’s 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 let’s see the data. We’ll select just one row using the LIMIT clause: Now let’s 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 there’s no LIMIT clause, so you’ll 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 we’re 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 what’s shown, using pattern matching against the hashtag, forced to lower case with LCASE. For a list of supported functions, see [the KSQL documentation][15]. We can create a derived stream from this data: and query the derived stream: Before we finish, let’s see how to do some aggregation. You’ll 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 we’ve set KSQL to read all messages on the topic (`SET 'auto.offset.reset' = 'earliest';`) it’s reading all of these messages at once and calculating the aggregation updates as it goes. There’s actually a subtlety in what’s going on here that’s 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 key’s 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 let’s see if we can illustrate this with an example. We’ll 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>` Let’s see what’s 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 it’s easy to query and see the data that we’re interested in: ### Conclusion So there we have it! We’re 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. ![](https://www.confluent.io/wp-content/uploads/user_tweet-1024x569.png) If you’re interested in what KSQL can do, check out: * The [KSQL announcement blog post][1] * [Our recent KSQL webinar][2] and [Kafka Summit keynote][3] * The [clickstream demo][4] that’s available as part of [KSQL’s GitHub repo][5] * A [presentation that I did recently][6] showing how KSQL can underpin a streaming ETL based platform. 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][16]. -------------------------------------------------------------------------------- via: https://www.confluent.io/blog/using-ksql-to-analyse-query-and-transform-data-in-kafka 作者:[Robin Moffatt ][a] 译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 [a]:https://www.confluent.io/blog/author/robin/ [1]:https://www.confluent.io/blog/ksql-open-source-streaming-sql-for-apache-kafka/ [2]:https://www.confluent.io/online-talk/ksql-streaming-sql-for-apache-kafka/ [3]:https://www.confluent.io/kafka-summit-sf17/Databases-and-Stream-Processing-1 [4]:https://www.youtube.com/watch?v=A45uRzJiv7I [5]:https://github.com/confluentinc/ksql [6]:https://speakerdeck.com/rmoff/look-ma-no-code-building-streaming-data-pipelines-with-apache-kafka [7]:https://www.confluent.io/blog/author/robin/ [8]:https://github.com/confluentinc/ksql/ [9]:https://www.confluent.io/download/ [10]:https://docs.confluent.io/current/installation.html? [11]:https://www.youtube.com/watch?v=ZKqBptBHZTg [12]:https://github.com/jcustenborder/kafka-connect-twitter [13]:https://docs.confluent.io/current/connect/userguide.html#connect-installing-plugins [14]:https://apps.twitter.com/ [15]:https://github.com/confluentinc/ksql/blob/0.1.x/docs/syntax-reference.md [16]:https://slackpass.io/confluentcommunity