Skip to content

Commit c868950

Browse files
author
fjy
committed
prepare for next release
1 parent ca493bd commit c868950

12 files changed

+20
-20
lines changed

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.119
22+
git checkout druid-0.6.121
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.119-bin.tar.gz) a stand-alone tarball and run it:
28+
[Download](http://static.druid.io/artifacts/releases/druid-services-0.6.121-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/Production-Cluster-Configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ druid.host=#{IP_ADDR}:8080
5555
druid.port=8080
5656
druid.service=druid/prod/overlord
5757
58-
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.119"]
58+
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.121"]
5959
6060
druid.zk.service.host=#{ZK_IPs}
6161
druid.zk.paths.base=/druid/prod
@@ -137,7 +137,7 @@ druid.host=#{IP_ADDR}:8080
137137
druid.port=8080
138138
druid.service=druid/prod/middlemanager
139139
140-
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.119","io.druid.extensions:druid-kafka-seven:0.6.119"]
140+
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.121","io.druid.extensions:druid-kafka-seven:0.6.121"]
141141
142142
druid.zk.service.host=#{ZK_IPs}
143143
druid.zk.paths.base=/druid/prod
@@ -285,7 +285,7 @@ druid.host=#{IP_ADDR}:8080
285285
druid.port=8080
286286
druid.service=druid/prod/historical
287287
288-
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.119"]
288+
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.121"]
289289
290290
druid.zk.service.host=#{ZK_IPs}
291291
druid.zk.paths.base=/druid/prod

docs/content/Realtime-Config.md

Lines changed: 2 additions & 2 deletions
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.119"]
30+
druid.extensions.coordinates=["io.druid.extensions:druid-kafka-seven:0.6.121"]
3131
3232
3333
druid.zk.service.host=localhost
@@ -76,7 +76,7 @@ druid.host=#{IP_ADDR}:8080
7676
druid.port=8080
7777
druid.service=druid/prod/realtime
7878
79-
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.119","io.druid.extensions:druid-kafka-seven:0.6.119"]
79+
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.121","io.druid.extensions:druid-kafka-seven:0.6.121"]
8080
8181
druid.zk.service.host=#{ZK_IPs}
8282
druid.zk.paths.base=/druid/prod

docs/content/Simple-Cluster-Configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Configuration:
2828
2929
-Ddruid.zk.service.host=localhost
3030
31-
-Ddruid.extensions.coordinates=["io.druid.extensions:druid-kafka-seven:0.6.119"]
31+
-Ddruid.extensions.coordinates=["io.druid.extensions:druid-kafka-seven:0.6.121"]
3232
3333
-Ddruid.db.connector.connectURI=jdbc:mysql://localhost:3306/druid
3434
-Ddruid.db.connector.user=druid

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.119-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.121-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.119
63+
cd druid-services-0.6.121
6464
```
6565

6666
You should see a bunch of files:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The configurations for the overlord node are as follows:
9696

9797
-Ddruid.zk.service.host=localhost
9898

99-
-Ddruid.extensions.coordinates=["io.druid.extensions:druid-kafka-seven:0.6.119"]
99+
-Ddruid.extensions.coordinates=["io.druid.extensions:druid-kafka-seven:0.6.121"]
100100

101101
-Ddruid.db.connector.connectURI=jdbc:mysql://localhost:3306/druid
102102
-Ddruid.db.connector.user=druid

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 and external depende
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.119-bin.tar.gz)
16+
You can download the latest version of druid [here](http://static.druid.io/artifacts/releases/druid-services-0.6.121-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.119"]
152+
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.121"]
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.119","io.druid.extensions:druid-kafka-seven:0.6.119"]
243+
druid.extensions.coordinates=["io.druid.extensions:druid-examples:0.6.121","io.druid.extensions:druid-kafka-seven:0.6.121"]
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.119-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.121-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.119
51+
cd druid-services-0.6.121
5252
```
5353

5454
You should see a bunch of files:

docs/content/Twitter-Tutorial.md

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
# 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.119-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.121-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.119"]
7+
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.6.121"]
88

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

examples/config/overlord/runtime.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
-Ddruid.zk.service.host=localhost
1111

12-
-Ddruid.extensions.coordinates=["io.druid.extensions:druid-kafka-seven:0.6.119"]
12+
-Ddruid.extensions.coordinates=["io.druid.extensions:druid-kafka-seven:0.6.121"]
1313

1414
-Ddruid.db.connector.connectURI=jdbc:mysql://localhost:3306/druid
1515
-Ddruid.db.connector.user=druid

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.119","io.druid.extensions:druid-kafka-seven:0.6.119","io.druid.extensions:druid-rabbitmq:0.6.119"]
7+
druid.extensions.coordinates=["io.druid.extensions:druid-examples:0.6.121","io.druid.extensions:druid-kafka-seven:0.6.121","io.druid.extensions:druid-rabbitmq:0.6.121"]
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)