druid/docs/content/Tutorial:-A-First-Look-at-D...

276 lines
9.4 KiB
Markdown
Raw Normal View History

---
2013-09-26 19:22:28 -04:00
layout: doc_page
---
# Tutorial: A First Look at Druid
Greetings! This tutorial will help clarify some core Druid concepts. We will use a real-time dataset and issue some basic Druid queries. If you are ready to explore Druid, and learn a thing or two, read on!
2013-09-13 18:20:39 -04:00
About the data
--------------
The data source we'll be working with is Wikipedia edits. Each time an edit is made in Wikipedia, an event gets pushed to an IRC channel associated with the language of the Wikipedia page. We scrape IRC channels for several different languages and load this data into Druid.
2013-09-13 18:20:39 -04:00
Each event has a timestamp indicating the time of the edit (in UTC time), a list of dimensions indicating various metadata about the event (such as information about the user editing the page and where the user is a bot), and a list of metrics associated with the event (such as the number of characters added and deleted).
2013-09-13 18:20:39 -04:00
Specifically. the data schema looks like so:
Dimensions (things to filter on):
```json
"page"
"language"
"user"
"unpatrolled"
"newPage"
"robot"
"anonymous"
"namespace"
"continent"
"country"
"region"
"city"
```
2013-09-13 18:20:39 -04:00
Metrics (things to aggregate over):
```json
"count"
"added"
"delta"
"deleted"
```
2013-09-13 18:20:39 -04:00
Setting Up
----------
2013-10-10 18:05:01 -04:00
There are two ways to setup Druid: download a tarball, or [Build From Source](Build-from-source.html). You only need to do one of these.
2013-09-13 18:20:39 -04:00
### Download a Tarball
2015-02-12 19:11:31 -05:00
We've built a tarball that contains everything you'll need. You'll find it [here](http://static.druid.io/artifacts/releases/druid-services-0.7.0-rc3-bin.tar.gz). Download this file to a directory of your choosing.
2013-09-13 18:20:39 -04:00
2014-12-08 19:15:46 -05:00
You can extract the content within by issuing:
2013-09-13 18:20:39 -04:00
```
tar -zxvf druid-services-*-bin.tar.gz
```
2013-09-13 18:20:39 -04:00
2014-12-08 19:15:46 -05:00
If you cd into the directory:
2013-09-13 18:20:39 -04:00
```
2015-02-12 19:11:31 -05:00
cd druid-services-0.7.0-rc3
```
2013-09-13 18:20:39 -04:00
You should see a bunch of files:
* run_example_server.sh
* run_example_client.sh
* LICENSE, config, examples, lib directories
2013-09-13 18:20:39 -04:00
Running Example Scripts
-----------------------
Let's start doing stuff. You can start a Druid [Realtime](Realtime.html) node by issuing:
2013-09-13 18:20:39 -04:00
```
./run_example_server.sh
```
2013-09-13 18:20:39 -04:00
Select "wikipedia".
2013-09-13 18:20:39 -04:00
Note that the first time you start the example, it may take some extra time due to its fetching various dependencies. Once the node starts up you will see a bunch of logs about setting up properties and connecting to the data source. If everything was successful, you should see messages of the form shown below.
2013-09-13 18:20:39 -04:00
```
2015-02-17T21:46:36,804 INFO [main] org.eclipse.jetty.server.ServerConnector - Started ServerConnector@79b6cf95{HTTP/1.1}{0.0.0.0:8083}
2015-02-17T21:46:36,804 INFO [main] org.eclipse.jetty.server.Server - Started @9580ms
2015-02-17T21:46:36,862 INFO [ApiDaemon] io.druid.segment.realtime.firehose.IrcFirehoseFactory - irc connection to server [irc.wikimedia.org] established
2015-02-17T21:46:36,862 INFO [ApiDaemon] io.druid.segment.realtime.firehose.IrcFirehoseFactory - Joining channel #en.wikipedia
2015-02-17T21:46:36,863 INFO [ApiDaemon] io.druid.segment.realtime.firehose.IrcFirehoseFactory - Joining channel #fr.wikipedia
2015-02-17T21:46:36,863 INFO [ApiDaemon] io.druid.segment.realtime.firehose.IrcFirehoseFactory - Joining channel #de.wikipedia
2015-02-17T21:46:36,863 INFO [ApiDaemon] io.druid.segment.realtime.firehose.IrcFirehoseFactory - Joining channel #ja.wikipedia
2015-02-17T21:46:37,009 INFO [ServerInventoryView-0] io.druid.client.BatchServerInventoryView - Inventory Initialized
```
2013-09-13 18:20:39 -04:00
2014-12-08 19:15:46 -05:00
The Druid real time-node ingests events in an in-memory buffer. Periodically, these events will be persisted to disk. If you are interested in the details of our real-time architecture and why we persist indexes to disk, we suggest you read our [White Paper](http://static.druid.io/docs/druid.pdf).
2013-09-13 18:20:39 -04:00
2014-12-08 19:15:46 -05:00
To query the real-time node you've spun up, you can issue:
```
./run_example_client.sh
```
2014-12-08 19:15:46 -05:00
Select "wikipedia" once again. This script issues [TimeBoundary](TimeBoundaryQuery.html) to the data we've been ingesting. The query looks like this:
2013-10-10 18:05:01 -04:00
```json
2013-09-13 18:20:39 -04:00
{
2014-12-08 19:15:46 -05:00
"queryType":"timeBoundary",
"dataSource":"wikipedia"
2013-09-13 18:20:39 -04:00
}
```
2014-12-08 19:15:46 -05:00
The **timeBoundary** query is one of the simplest queries you can make in Druid. It gives you the boundaries of the ingested data.
2014-12-08 19:15:46 -05:00
The result looks something like this (when it's prettified):
2013-09-13 18:20:39 -04:00
```json
[ {
"timestamp" : "2013-09-04T21:44:00.000Z",
"result" : {
"minTime" : "2013-09-04T21:44:00.000Z",
"maxTime" : "2013-09-04T21:47:00.000Z"
}
} ]
```
2014-12-08 19:15:46 -05:00
If you are having problems with getting results back, make sure you have [curl](http://curl.haxx.se/) installed. Control+C to break out of the client script.
2013-09-13 18:20:39 -04:00
2014-12-08 19:15:46 -05:00
Querying Druid
--------------
In your favorite editor, create the file:
```
2014-12-08 19:15:46 -05:00
timeseries.json
```
2013-09-13 18:20:39 -04:00
2013-09-16 19:01:14 -04:00
We are going to make a slightly more complicated query, the [TimeseriesQuery](TimeseriesQuery.html). Copy and paste the following into the file:
2013-10-10 18:05:01 -04:00
```json
2013-09-13 18:20:39 -04:00
{
"queryType": "timeseries",
"dataSource": "wikipedia",
"intervals": [ "2010-01-01/2020-01-01" ],
2013-09-13 18:20:39 -04:00
"granularity": "all",
"aggregations": [
{"type": "longSum", "fieldName": "count", "name": "edit_count"},
{"type": "doubleSum", "fieldName": "added", "name": "chars_added"}
2013-09-13 18:20:39 -04:00
]
}
```
2013-09-13 18:20:39 -04:00
Our query has now expanded to include a time interval, [Granularities](Granularities.html), and [Aggregations](Aggregations.html). What the query is doing is aggregating a set of metrics over a span of time, and the results are grouped into a single time bucket.
2013-09-13 18:20:39 -04:00
To issue the query and get some results, run the following in your command line:
```
2014-12-08 19:15:46 -05:00
curl -X POST 'http://localhost:8083/druid/v2/?pretty' -H 'content-type: application/json' -d @timeseries.json
```
2013-09-13 18:20:39 -04:00
Once again, you should get a JSON blob of text back with your results, that looks something like this:
```json
2013-09-13 18:20:39 -04:00
[ {
"timestamp" : "2013-09-04T21:44:00.000Z",
"result" : { "chars_added" : 312670.0, "edit_count" : 733 }
2013-09-13 18:20:39 -04:00
} ]
```
2013-09-13 18:20:39 -04:00
If you issue the query again, you should notice your results updating.
2014-12-08 19:15:46 -05:00
Right now all the results you are getting back are being aggregated into a single timestamp bucket. What if we wanted to see our aggregations on a per minute basis?
2013-09-13 18:20:39 -04:00
We can change granularity our the results to minute. To specify different granularities to bucket our results, we change our query like so:
2013-10-10 18:05:01 -04:00
```json
{
"queryType": "timeseries",
"dataSource": "wikipedia",
"intervals": [ "2010-01-01/2020-01-01" ],
"granularity": "minute",
"aggregations": [
{"type": "longSum", "fieldName": "count", "name": "edit_count"},
{"type": "doubleSum", "fieldName": "added", "name": "chars_added"}
]
}
```
2013-09-13 18:20:39 -04:00
2014-12-08 19:15:46 -05:00
This gives us results like the following:
2013-09-13 18:20:39 -04:00
```json
2013-09-13 18:20:39 -04:00
[
{
"timestamp" : "2013-09-04T21:44:00.000Z",
"result" : { "chars_added" : 30665.0, "edit_count" : 128 }
},
{
"timestamp" : "2013-09-04T21:45:00.000Z",
"result" : { "chars_added" : 122637.0, "edit_count" : 167 }
},
{
"timestamp" : "2013-09-04T21:46:00.000Z",
"result" : { "chars_added" : 78938.0, "edit_count" : 159 }
2013-09-13 18:20:39 -04:00
},
...
]
```
2013-09-13 18:20:39 -04:00
Solving a Problem
-----------------
2014-12-08 19:15:46 -05:00
One of Druid's main powers is to provide answers to problems, so let's pose a problem. What if we wanted to know what the top pages in the US are, ordered by the number of edits over the last few minutes you've been going through this tutorial? To solve this problem, we can use the [TopN](TopNQuery.html).
2013-09-13 18:20:39 -04:00
Let's create the file:
2013-09-13 18:20:39 -04:00
```
2014-12-08 19:15:46 -05:00
topn.json
```
and put the following in there:
2013-10-10 18:05:01 -04:00
```json
{
2014-12-08 19:15:46 -05:00
"queryType": "topN",
"dataSource": "wikipedia",
"granularity": "all",
2014-12-08 19:15:46 -05:00
"dimension": "page",
"metric": "edit_count",
"threshold" : 10,
"aggregations": [
{"type": "longSum", "fieldName": "count", "name": "edit_count"}
],
"filter": { "type": "selector", "dimension": "country", "value": "United States" },
"intervals": ["2012-10-01T00:00/2020-01-01T00"]
}
```
2013-09-13 18:20:39 -04:00
Note that our query now includes [Filters](Filters.html). Filters are like `WHERE` clauses in SQL and help narrow down the data that needs to be scanned.
2013-09-13 18:20:39 -04:00
If you issue the query:
```
2014-12-08 19:15:46 -05:00
curl -X POST 'http://localhost:8083/druid/v2/?pretty' -H 'content-type: application/json' -d @topn.json
```
2013-09-13 18:20:39 -04:00
You should see an answer to our question. As an example, some results are shown below:
```json
2013-09-13 18:20:39 -04:00
[
{
2014-12-08 19:15:46 -05:00
"timestamp" : "2013-09-04T21:00:00.000Z",
"result" : [
{ "page" : "RTC_Transit", "edit_count" : 6 },
{ "page" : "List_of_Deadly_Women_episodes", "edit_count" : 4 },
{ "page" : "User_talk:David_Biddulph", "edit_count" : 4 },
...
]
}
]
```
2013-09-13 18:20:39 -04:00
Feel free to tweak other query parameters to answer other questions you may have about the data. Druid also includes more complex query types such as [groupBy queries](GroupByQuery.html).
2013-09-13 18:20:39 -04:00
Next Steps
----------
This tutorial only covered the basic operations of a single Druid node. For production, you'll likely need a full Druid cluster. Check out our next tutorial [The Druid Cluster](Tutorial%3A-The-Druid-Cluster.html) to learn more.
To learn more about loading streaming data, see [Loading Streaming Data](Tutorial%3A-Loading-Streaming-Data.html).
2013-09-13 18:20:39 -04:00
To learn more about loading batch data, see [Loading Batch Data](Tutorial%3A-Loading-Batch-Data.html).
2013-09-13 18:20:39 -04:00
Additional Information
----------------------
2014-12-08 19:15:46 -05:00
This tutorial is merely showcasing a small fraction of what Druid can do. If you are interested in more information about Druid, including setting up a more sophisticated Druid cluster, read more of the Druid documentation and blogs found on druid.io.
2013-09-13 18:20:39 -04:00
2014-12-08 19:15:46 -05:00
Hopefully you learned a thing or two about Druid real-time ingestion, querying Druid, and how Druid can be used to solve problems. If you have additional questions, feel free to post in our [google groups page](https://groups.google.com/forum/#!forum/druid-development).