From 6a47c1530c8eeb8d4e48780972ed0a747a96f7a4 Mon Sep 17 00:00:00 2001 From: fjy Date: Thu, 19 Mar 2015 11:39:38 -0700 Subject: [PATCH] update versions to prepare for rc release --- docs/content/Examples.md | 8 ++++---- docs/content/Tutorial:-A-First-Look-at-Druid.md | 8 ++++---- docs/content/Tutorial:-Loading-Streaming-Data.md | 2 +- docs/content/Tutorial:-The-Druid-Cluster.md | 6 +++--- .../bin/examples/indexing/wikipedia_hadoop_config.json | 2 +- extensions/kafka-seven/pom.xml | 2 +- .../io/druid/metadata/storage/mysql/MySQLConnector.java | 2 +- pom.xml | 2 +- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/content/Examples.md b/docs/content/Examples.md index f26476748f12..b31c146472df 100644 --- a/docs/content/Examples.md +++ b/docs/content/Examples.md @@ -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 +git checkout druid-0.7.1 mvn clean package ``` ### Downloading the DSK (Druid Standalone Kit) -[Download](http://static.druid.io/artifacts/releases/druid-0.7.0-bin.tar.gz) a stand-alone tarball and run it: +[Download](http://static.druid.io/artifacts/releases/druid-0.7.1-bin.tar.gz) a stand-alone tarball and run it: ``` bash -tar -xzf druid-0.7.0-bin.tar.gz -cd druid-0.7.0 +tar -xzf druid-0.7.1-bin.tar.gz +cd druid-0.7.1 ``` Twitter Example diff --git a/docs/content/Tutorial:-A-First-Look-at-Druid.md b/docs/content/Tutorial:-A-First-Look-at-Druid.md index 2fd8306fc986..5a2f5c386b72 100644 --- a/docs/content/Tutorial:-A-First-Look-at-Druid.md +++ b/docs/content/Tutorial:-A-First-Look-at-Druid.md @@ -47,24 +47,24 @@ To start, we need to get our hands on a Druid build. There are two ways to get D ### 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-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.1-bin.tar.gz). Download this file to a directory of your choosing. ### Build From Source -Follow the [Build From Source](Build-from-source.html) guide to build from source. Then grab the tarball from services/target/druid-0.7.0-bin.tar.gz. +Follow the [Build From Source](Build-from-source.html) guide to build from source. Then grab the tarball from services/target/druid-0.7.1-bin.tar.gz. ### Unpack the Tarball You can extract the content within by issuing: ``` -tar -zxvf druid-0.7.0-bin.tar.gz +tar -zxvf druid-0.7.1-bin.tar.gz ``` If you cd into the directory: ``` -cd druid-0.7.0 +cd druid-0.7.1 ``` You should see a bunch of files: diff --git a/docs/content/Tutorial:-Loading-Streaming-Data.md b/docs/content/Tutorial:-Loading-Streaming-Data.md index 9e6aed99dcb5..333766777159 100644 --- a/docs/content/Tutorial:-Loading-Streaming-Data.md +++ b/docs/content/Tutorial:-Loading-Streaming-Data.md @@ -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-bin.tar.gz) +download](http://static.druid.io/artifacts/releases/druid-services-0.7.1-bin.tar.gz) 1. Launch the realtime node diff --git a/docs/content/Tutorial:-The-Druid-Cluster.md b/docs/content/Tutorial:-The-Druid-Cluster.md index 04490786e85b..fd3bc95912b5 100644 --- a/docs/content/Tutorial:-The-Druid-Cluster.md +++ b/docs/content/Tutorial:-The-Druid-Cluster.md @@ -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-bin.tar.gz). You can also [Build From Source](Build-from-source.html) and grab the tarball from services/target/druid-0.7.0-bin.tar.gz. +You can download the latest version of druid [here](http://static.druid.io/artifacts/releases/druid-0.7.1-bin.tar.gz). You can also [Build From Source](Build-from-source.html) and grab the tarball from services/target/druid-0.7.1-bin.tar.gz. Either way, once you have the tarball, untar the contents within by issuing: ```bash -tar -zxvf druid-0.7.0-bin.tar.gz -cd druid-0.7.0 +tar -zxvf druid-0.7.1-bin.tar.gz +cd druid-0.7.1 ``` ## External Dependencies diff --git a/examples/bin/examples/indexing/wikipedia_hadoop_config.json b/examples/bin/examples/indexing/wikipedia_hadoop_config.json index 2401648f4945..51dfcc298a71 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-0.7.0/examples/indexing/wikipedia_data.json" + "paths": "/myPath/druid-0.7.1/examples/indexing/wikipedia_data.json" }, "metadataUpdateSpec": { "type": "db", diff --git a/extensions/kafka-seven/pom.xml b/extensions/kafka-seven/pom.xml index 036521b993a1..26a595e0127b 100644 --- a/extensions/kafka-seven/pom.xml +++ b/extensions/kafka-seven/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.7.0-SNAPSHOT + 0.7.1-SNAPSHOT ../../pom.xml diff --git a/extensions/mysql-metadata-storage/src/main/java/io/druid/metadata/storage/mysql/MySQLConnector.java b/extensions/mysql-metadata-storage/src/main/java/io/druid/metadata/storage/mysql/MySQLConnector.java index a5e310214f30..c7f3c63fbc25 100644 --- a/extensions/mysql-metadata-storage/src/main/java/io/druid/metadata/storage/mysql/MySQLConnector.java +++ b/extensions/mysql-metadata-storage/src/main/java/io/druid/metadata/storage/mysql/MySQLConnector.java @@ -84,7 +84,7 @@ public boolean tableExists(Handle handle, String tableName) "Database default character set is not UTF-8." + System.lineSeparator() + " Druid requires its MySQL database to be created using UTF-8 as default character set." + " If you are upgrading from Druid 0.6.x, please make all tables have been converted to utf8 and change the database default." - + " For more information on how to convert and set the default, please refer to section on updating from 0.6.x in the Druid 0.7.0 release notes." + + " For more information on how to convert and set the default, please refer to section on updating from 0.6.x in the Druid 0.7.1 release notes." ); } diff --git a/pom.xml b/pom.xml index 6743b86ae714..576805bd6ec9 100644 --- a/pom.xml +++ b/pom.xml @@ -61,7 +61,7 @@ scm:git:ssh://git@github.com/druid-io/druid.git scm:git:ssh://git@github.com/druid-io/druid.git https://github.com/druid-io/druid.git - druid-0.7.0-SNAPSHOT + druid-0.7.1-SNAPSHOT