diff --git a/docs/content/Examples.md b/docs/content/Examples.md index e86a7d2b078..03948a6a4d8 100644 --- a/docs/content/Examples.md +++ b/docs/content/Examples.md @@ -19,13 +19,13 @@ 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-rc2 +git checkout druid-0.7.0-rc3 ./build.sh ``` ### Downloading the DSK (Druid Standalone Kit) -[Download](http://static.druid.io/artifacts/releases/druid-services-0.7.0-rc2-bin.tar.gz) a stand-alone tarball and run it: +[Download](http://static.druid.io/artifacts/releases/druid-services-0.7.0-rc3-bin.tar.gz) a stand-alone tarball and run it: ``` bash tar -xzf druid-services-0.X.X-bin.tar.gz diff --git a/docs/content/Tutorial:-A-First-Look-at-Druid.md b/docs/content/Tutorial:-A-First-Look-at-Druid.md index de145d38cc7..3f2233b2997 100644 --- a/docs/content/Tutorial:-A-First-Look-at-Druid.md +++ b/docs/content/Tutorial:-A-First-Look-at-Druid.md @@ -49,7 +49,7 @@ 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-services-0.7.0-rc2-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-services-0.7.0-rc3-bin.tar.gz). Download this file to a directory of your choosing. You can extract the content within by issuing: @@ -60,7 +60,7 @@ tar -zxvf druid-services-*-bin.tar.gz If you cd into the directory: ``` -cd druid-services-0.7.0-rc2 +cd druid-services-0.7.0-rc3 ``` You should see a bunch of files: diff --git a/docs/content/Tutorial:-The-Druid-Cluster.md b/docs/content/Tutorial:-The-Druid-Cluster.md index 0dddf161226..3f937e3dfbe 100644 --- a/docs/content/Tutorial:-The-Druid-Cluster.md +++ b/docs/content/Tutorial:-The-Druid-Cluster.md @@ -13,7 +13,7 @@ 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-services-0.7.0-rc2-bin.tar.gz) +You can download the latest version of druid [here](http://static.druid.io/artifacts/releases/druid-services-0.7.0-rc3-bin.tar.gz) and untar the contents within by issuing: diff --git a/examples/bin/examples/indexing/wikipedia_hadoop_config.json b/examples/bin/examples/indexing/wikipedia_hadoop_config.json index bdadb9d4e2b..104e6c96c9b 100644 --- a/examples/bin/examples/indexing/wikipedia_hadoop_config.json +++ b/examples/bin/examples/indexing/wikipedia_hadoop_config.json @@ -61,7 +61,7 @@ "type": "hadoop", "inputSpec": { "type": "static", - "paths": "/myPath/druid-services-0.7.0-rc2/examples/indexing/wikipedia_data.json" + "paths": "/myPath/druid-services-0.7.0-rc3/examples/indexing/wikipedia_data.json" }, "metadataUpdateSpec": { "type": "db", diff --git a/examples/bin/examples/indexing/wikipedia_index_hadoop_task.json b/examples/bin/examples/indexing/wikipedia_index_hadoop_task.json index 18fe8284dc6..ff99f09b66b 100644 --- a/examples/bin/examples/indexing/wikipedia_index_hadoop_task.json +++ b/examples/bin/examples/indexing/wikipedia_index_hadoop_task.json @@ -63,7 +63,7 @@ "type": "hadoop", "inputSpec": { "type": "static", - "paths": "/myPath/druid-services-0.7.0-rc2/examples/indexing/wikipedia_data.json" + "paths": "/myPath/druid-services-0.7.0-rc3/examples/indexing/wikipedia_data.json" } }, "tuningConfig": { diff --git a/examples/bin/examples/indexing/wikipedia_index_task.json b/examples/bin/examples/indexing/wikipedia_index_task.json index 8bb3bec368e..3eb7b2ccda1 100644 --- a/examples/bin/examples/indexing/wikipedia_index_task.json +++ b/examples/bin/examples/indexing/wikipedia_index_task.json @@ -63,7 +63,7 @@ "type": "index", "firehose": { "type": "local", - "baseDir": "/MyPath/druid-services-0.7.0-rc2/examples/indexing/", + "baseDir": "/MyPath/druid-services-0.7.0-rc3/examples/indexing/", "filter": "wikipedia_data.json" } },