mirror of https://github.com/apache/druid.git
fix broken links
This commit is contained in:
parent
b167dcf82c
commit
46bd614d63
|
@ -19,17 +19,17 @@ Clone Druid and build it:
|
|||
git clone https://github.com/druid-io/druid.git druid
|
||||
cd druid
|
||||
git fetch --tags
|
||||
git checkout druid-0.7.0-rc3
|
||||
git checkout druid-0.7.0
|
||||
mvn clean package
|
||||
```
|
||||
|
||||
### Downloading the DSK (Druid Standalone Kit)
|
||||
|
||||
[Download](http://static.druid.io/artifacts/releases/druid-0.7.0-rc3-bin.tar.gz) a stand-alone tarball and run it:
|
||||
[Download](http://static.druid.io/artifacts/releases/druid-0.7.0-bin.tar.gz) a stand-alone tarball and run it:
|
||||
|
||||
``` bash
|
||||
tar -xzf druid-0.7.0-rc3-bin.tar.gz
|
||||
cd druid-0.7.0-rc3
|
||||
tar -xzf druid-0.7.0-bin.tar.gz
|
||||
cd druid-0.7.0
|
||||
```
|
||||
|
||||
Twitter Example
|
||||
|
|
|
@ -47,18 +47,18 @@ There are two ways to setup Druid: download a tarball, or [Build From Source](Bu
|
|||
|
||||
### Download a Tarball
|
||||
|
||||
We've built a tarball that contains everything you'll need. You'll find it [here](http://static.druid.io/artifacts/releases/druid-0.7.0-rc3-bin.tar.gz). Download this file to a directory of your choosing.
|
||||
We've built a tarball that contains everything you'll need. You'll find it [here](http://static.druid.io/artifacts/releases/druid-0.7.0-bin.tar.gz). Download this file to a directory of your choosing.
|
||||
|
||||
You can extract the content within by issuing:
|
||||
|
||||
```
|
||||
tar -zxvf druid-0.7.0-rc3-bin.tar.gz
|
||||
tar -zxvf druid-0.7.0-bin.tar.gz
|
||||
```
|
||||
|
||||
If you cd into the directory:
|
||||
|
||||
```
|
||||
cd druid-0.7.0-rc3
|
||||
cd druid-0.7.0
|
||||
```
|
||||
|
||||
You should see a bunch of files:
|
||||
|
|
|
@ -81,7 +81,7 @@ cluster were adapted from the [Apache Kafka quickstart guide](http://kafka.apach
|
|||
|
||||
The realtime spec for the data source in this tutorial is available under
|
||||
`examples/indexing/wikipedia.spec` from the [Druid
|
||||
download](http://static.druid.io/artifacts/releases/druid-services-0.7.0-rc3-bin.tar.gz)
|
||||
download](http://static.druid.io/artifacts/releases/druid-services-0.7.0-bin.tar.gz)
|
||||
|
||||
1. Launch the realtime node
|
||||
|
||||
|
|
|
@ -13,13 +13,13 @@ In this tutorial, we will set up other types of Druid nodes and external depende
|
|||
|
||||
If you followed the first tutorial, you should already have Druid downloaded. If not, let's go back and do that first.
|
||||
|
||||
You can download the latest version of druid [here](http://static.druid.io/artifacts/releases/druid-0.7.0-rc3-bin.tar.gz)
|
||||
You can download the latest version of druid [here](http://static.druid.io/artifacts/releases/druid-0.7.0-bin.tar.gz)
|
||||
|
||||
and untar the contents within by issuing:
|
||||
|
||||
```bash
|
||||
tar -zxvf druid-0.7.0-rc3-bin.tar.gz
|
||||
cd druid-0.7.0-rc3
|
||||
tar -zxvf druid-0.7.0-bin.tar.gz
|
||||
cd druid-0.7.0
|
||||
```
|
||||
|
||||
You can also [Build From Source](Build-from-source.html).
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
"type": "hadoop",
|
||||
"inputSpec": {
|
||||
"type": "static",
|
||||
"paths": "/myPath/druid-0.7.0-rc3/examples/indexing/wikipedia_data.json"
|
||||
"paths": "/myPath/druid-0.7.0/examples/indexing/wikipedia_data.json"
|
||||
},
|
||||
"metadataUpdateSpec": {
|
||||
"type": "db",
|
||||
|
|
Loading…
Reference in New Issue