Skip to content

Commit a049b42

Browse files
author
fjy
committed
fix an issue with task tables not getting created automatically and prepare for next release
1 parent 009646e commit a049b42

File tree

19 files changed

+65
-47
lines changed

19 files changed

+65
-47
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ echo "For examples, see: "
3030
echo " "
3131
ls -1 examples/*/*sh
3232
echo " "
33-
echo "See also http://druid.io/docs/0.6.3"
33+
echo "See also http://druid.io/docs/0.6.4"

docs/content/Booting-a-production-cluster.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: doc_page
33
---
44
# Booting a Single Node Cluster #
55

6-
[Loading Your Data](Tutorial%3A-Loading-Your-Data-Part-2.html) and [All About Queries](Tutorial%3A-All-About-Queries.html) contain recipes to boot a small druid cluster on localhost. Here we will boot a small cluster on EC2. You can checkout the code, or download a tarball from [here](http://static.druid.io/artifacts/druid-services-0.6.3-bin.tar.gz).
6+
[Loading Your Data](Tutorial%3A-Loading-Your-Data-Part-2.html) and [All About Queries](Tutorial%3A-All-About-Queries.html) contain recipes to boot a small druid cluster on localhost. Here we will boot a small cluster on EC2. You can checkout the code, or download a tarball from [here](http://static.druid.io/artifacts/druid-services-0.6.4-bin.tar.gz).
77

88
The [ec2 run script](https://github.com/metamx/druid/blob/master/examples/bin/run_ec2.sh), run_ec2.sh, is located at 'examples/bin' if you have checked out the code, or at the root of the project if you've downloaded a tarball. The scripts rely on the [Amazon EC2 API Tools](http://aws.amazon.com/developertools/351), and you will need to set three environment variables:
99

docs/content/Download.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A version may be declared as a release candidate if it has been deployed to a si
66
Release Candidate
77
-----------------
88

9-
The current release candidate is tagged at version [0.6.3](https://github.com/metamx/druid/tree/druid-0.6.3).
9+
The current release candidate is tagged at version [0.6.4](https://github.com/metamx/druid/tree/druid-0.6.4).
1010

1111
Stable Release
1212
--------------

docs/content/Examples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ Clone Druid and build it:
1919
git clone https://github.com/metamx/druid.git druid
2020
cd druid
2121
git fetch --tags
22-
git checkout druid-0.6.3
22+
git checkout druid-0.6.4
2323
./build.sh
2424
```
2525

2626
### Downloading the DSK (Druid Standalone Kit)
2727

28-
[Download](http://static.druid.io/artifacts/releases/druid-services-0.6.3-bin.tar.gz) a stand-alone tarball and run it:
28+
[Download](http://static.druid.io/artifacts/releases/druid-services-0.6.4-bin.tar.gz) a stand-alone tarball and run it:
2929

3030
``` bash
3131
tar -xzf druid-services-0.X.X-bin.tar.gz

docs/content/Realtime.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ Extending the code
187187

188188
Realtime integration is intended to be extended in two ways:
189189

190-
1. Connect to data streams from varied systems ([Firehose](https://github.com/metamx/druid/blob/druid-0.6.3/realtime/src/main/java/com/metamx/druid/realtime/firehose/FirehoseFactory.java))
191-
2. Adjust the publishing strategy to match your needs ([Plumber](https://github.com/metamx/druid/blob/druid-0.6.3/realtime/src/main/java/com/metamx/druid/realtime/plumber/PlumberSchool.java))
190+
1. Connect to data streams from varied systems ([Firehose](https://github.com/metamx/druid/blob/druid-0.6.4/realtime/src/main/java/com/metamx/druid/realtime/firehose/FirehoseFactory.java))
191+
2. Adjust the publishing strategy to match your needs ([Plumber](https://github.com/metamx/druid/blob/druid-0.6.4/realtime/src/main/java/com/metamx/druid/realtime/plumber/PlumberSchool.java))
192192

193193
The expectations are that the former will be very common and something that users of Druid will do on a fairly regular basis. Most users will probably never have to deal with the latter form of customization. Indeed, we hope that all potential use cases can be packaged up as part of Druid proper without requiring proprietary customization.
194194

docs/content/Tutorial:-A-First-Look-at-Druid.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ There are two ways to setup Druid: download a tarball, or [Build From Source](Bu
4747

4848
### Download a Tarball
4949

50-
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.6.3-bin.tar.gz). Download this file to a directory of your choosing.
50+
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.6.4-bin.tar.gz). Download this file to a directory of your choosing.
5151

5252
You can extract the awesomeness within by issuing:
5353

@@ -58,7 +58,7 @@ tar -zxvf druid-services-*-bin.tar.gz
5858
Not too lost so far right? That's great! If you cd into the directory:
5959

6060
```
61-
cd druid-services-0.6.3
61+
cd druid-services-0.6.4
6262
```
6363

6464
You should see a bunch of files:

docs/content/Tutorial:-Loading-Your-Data-Part-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ With real-world data, we recommend having a message bus such as [Apache Kafka](h
4242

4343
#### Setting up Kafka
4444

45-
[KafkaFirehoseFactory](https://github.com/metamx/druid/blob/druid-0.6.3/realtime/src/main/java/com/metamx/druid/realtime/firehose/KafkaFirehoseFactory.java) is how druid communicates with Kafka. Using this [Firehose](Firehose.html) with the right configuration, we can import data into Druid in real-time without writing any code. To load data to a real-time node via Kafka, we'll first need to initialize Zookeeper and Kafka, and then configure and initialize a [Realtime](Realtime.html) node.
45+
[KafkaFirehoseFactory](https://github.com/metamx/druid/blob/druid-0.6.4/realtime/src/main/java/com/metamx/druid/realtime/firehose/KafkaFirehoseFactory.java) is how druid communicates with Kafka. Using this [Firehose](Firehose.html) with the right configuration, we can import data into Druid in real-time without writing any code. To load data to a real-time node via Kafka, we'll first need to initialize Zookeeper and Kafka, and then configure and initialize a [Realtime](Realtime.html) node.
4646

4747
Instructions for booting a Zookeeper and then Kafka cluster are available [here](http://kafka.apache.org/07/quickstart.html).
4848

docs/content/Tutorial:-The-Druid-Cluster.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ In this tutorial, we will set up other types of Druid nodes as well as and exter
1111

1212
If you followed the first tutorial, you should already have Druid downloaded. If not, let's go back and do that first.
1313

14-
You can download the latest version of druid [here](http://static.druid.io/artifacts/releases/druid-services-0.6.3-bin.tar.gz)
14+
You can download the latest version of druid [here](http://static.druid.io/artifacts/releases/druid-services-0.6.4-bin.tar.gz)
1515

1616
and untar the contents within by issuing:
1717

@@ -147,7 +147,7 @@ druid.port=8081
147147
148148
druid.zk.service.host=localhost
149149
150-
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.3"]
150+
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.4"]
151151
152152
# Dummy read only AWS account (used to download example data)
153153
druid.s3.secretKey=QyyfVZ7llSiRg6Qcrql1eEUG7buFpAK6T6engr1b
@@ -237,7 +237,7 @@ druid.port=8083
237237
238238
druid.zk.service.host=localhost
239239
240-
druid.extensions.coordinates=["io.druid.extensions:druid-examples:0.6.3-SNAPSHOT"]
240+
druid.extensions.coordinates=["io.druid.extensions:druid-examples:0.6.4-SNAPSHOT"]
241241
242242
druid.db.connector.connectURI=jdbc\:mysql\://localhost\:3306/druid
243243
druid.db.connector.user=druid

docs/content/Tutorial:-Webstream.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ There are two ways to setup Druid: download a tarball, or [Build From Source](Bu
3737

3838
h3. Download a Tarball
3939

40-
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.6.3-bin.tar.gz)
40+
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.6.4-bin.tar.gz)
4141
Download this file to a directory of your choosing.
4242
You can extract the awesomeness within by issuing:
4343

@@ -48,7 +48,7 @@ tar zxvf druid-services-*-bin.tar.gz
4848
Not too lost so far right? That's great! If you cd into the directory:
4949

5050
```
51-
cd druid-services-0.6.3
51+
cd druid-services-0.6.4
5252
```
5353

5454
You should see a bunch of files:

docs/content/Twitter-Tutorial.textile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ There are two ways to setup Druid: download a tarball, or build it from source.
99

1010
h3. Download a Tarball
1111

12-
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.6.3-bin.tar.gz.
12+
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.6.4-bin.tar.gz.
1313
Download this bad boy to a directory of your choosing.
1414

1515
You can extract the awesomeness within by issuing:

0 commit comments

Comments
 (0)