diff --git a/docs/content/Examples.md b/docs/content/Examples.md index e9ac3e12f95..e86a7d2b078 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-rc1 +git checkout druid-0.7.0-rc2 ./build.sh ``` ### Downloading the DSK (Druid Standalone Kit) -[Download](http://static.druid.io/artifacts/releases/druid-services-0.7.0-rc1-bin.tar.gz) a stand-alone tarball and run it: +[Download](http://static.druid.io/artifacts/releases/druid-services-0.7.0-rc2-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 7cee394707e..de145d38cc7 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-rc1-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-rc2-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-rc1 +cd druid-services-0.7.0-rc2 ``` 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 ae7d4d424a7..4e61cfc282c 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-rc1-bin.tar.gz) +You can download the latest version of druid [here](http://static.druid.io/artifacts/releases/druid-services-0.7.0-rc2-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 0e7f817881d..bdadb9d4e2b 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-rc1/examples/indexing/wikipedia_data.json" + "paths": "/myPath/druid-services-0.7.0-rc2/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 f377a6250b2..18fe8284dc6 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-rc1/examples/indexing/wikipedia_data.json" + "paths": "/myPath/druid-services-0.7.0-rc2/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 b1970296a9a..8bb3bec368e 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-rc1/examples/indexing/", + "baseDir": "/MyPath/druid-services-0.7.0-rc2/examples/indexing/", "filter": "wikipedia_data.json" } },