Skip to content

Commit f898c29

Browse files
author
fjy
committed
fix batch indexing and prepare for next release
1 parent 26a0f86 commit f898c29

File tree

18 files changed

+23
-27
lines changed

18 files changed

+23
-27
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.51"
33+
echo "See also http://druid.io/docs/0.6.52"

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.51
22+
git checkout druid-0.6.52
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.51-bin.tar.gz) a stand-alone tarball and run it:
28+
[Download](http://static.druid.io/artifacts/releases/druid-services-0.6.52-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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ druid.host=localhost
2727
druid.service=realtime
2828
druid.port=8083
2929
30-
druid.extensions.coordinates=["io.druid.extensions:druid-kafka-seven:0.6.51"]
30+
druid.extensions.coordinates=["io.druid.extensions:druid-kafka-seven:0.6.52"]
3131
3232
3333
druid.zk.service.host=localhost

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

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

5050
### Download a Tarball
5151

52-
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.51-bin.tar.gz). Download this file to a directory of your choosing.
52+
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.52-bin.tar.gz). Download this file to a directory of your choosing.
5353

5454
You can extract the awesomeness within by issuing:
5555

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

6262
```
63-
cd druid-services-0.6.51
63+
cd druid-services-0.6.52
6464
```
6565

6666
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
@@ -45,7 +45,7 @@ With real-world data, we recommend having a message bus such as [Apache Kafka](h
4545
<a id="set-up-kafka"></a>
4646
#### Setting up Kafka
4747

48-
[KafkaFirehoseFactory](https://github.com/metamx/druid/blob/druid-0.6.51/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.
48+
[KafkaFirehoseFactory](https://github.com/metamx/druid/blob/druid-0.6.52/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.
4949

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

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

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

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

16-
You can download the latest version of druid [here](http://static.druid.io/artifacts/releases/druid-services-0.6.51-bin.tar.gz)
16+
You can download the latest version of druid [here](http://static.druid.io/artifacts/releases/druid-services-0.6.52-bin.tar.gz)
1717

1818
and untar the contents within by issuing:
1919

@@ -149,7 +149,7 @@ druid.port=8081
149149
150150
druid.zk.service.host=localhost
151151
152-
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.51"]
152+
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.52"]
153153
154154
# Dummy read only AWS account (used to download example data)
155155
druid.s3.secretKey=QyyfVZ7llSiRg6Qcrql1eEUG7buFpAK6T6engr1b
@@ -240,7 +240,7 @@ druid.port=8083
240240
241241
druid.zk.service.host=localhost
242242
243-
druid.extensions.coordinates=["io.druid.extensions:druid-examples:0.6.51","io.druid.extensions:druid-kafka-seven:0.6.51"]
243+
druid.extensions.coordinates=["io.druid.extensions:druid-examples:0.6.52","io.druid.extensions:druid-kafka-seven:0.6.52"]
244244
245245
# Change this config to db to hand off to the rest of the Druid cluster
246246
druid.publish.type=noop

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.51-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.52-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.51
51+
cd druid-services-0.6.52
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.51-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.52-bin.tar.gz.
1313
Download this bad boy to a directory of your choosing.
1414

1515
You can extract the awesomeness within by issuing:

examples/config/historical/runtime.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ druid.port=8081
44

55
druid.zk.service.host=localhost
66

7-
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.51"]
7+
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.52"]
88

99
# Dummy read only AWS account (used to download example data)
1010
druid.s3.secretKey=QyyfVZ7llSiRg6Qcrql1eEUG7buFpAK6T6engr1b

examples/config/realtime/runtime.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ druid.port=8083
44

55
druid.zk.service.host=localhost
66

7-
druid.extensions.coordinates=["io.druid.extensions:druid-examples:0.6.51","io.druid.extensions:druid-kafka-seven:0.6.51","io.druid.extensions:druid-rabbitmq:0.6.51"]
7+
druid.extensions.coordinates=["io.druid.extensions:druid-examples:0.6.52","io.druid.extensions:druid-kafka-seven:0.6.52","io.druid.extensions:druid-rabbitmq:0.6.52"]
88

99
# Change this config to db to hand off to the rest of the Druid cluster
1010
druid.publish.type=noop

0 commit comments

Comments
 (0)