Skip to content

Commit a061c32

Browse files
committed
Updating to 0.4.3 backend
1 parent f192b14 commit a061c32

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

docs/quick-start.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This section gets you running a mock instance of Bullet to play around with. The
44

55
At the end of this section, you will have:
66

7-
* Setup the Bullet topology using a custom spout on [bullet-storm-0.4.2](https://github.com/yahoo/bullet-storm/releases/tag/bullet-storm-0.4.2)
7+
* Setup the Bullet topology using a custom spout on [bullet-storm-0.4.3](https://github.com/yahoo/bullet-storm/releases/tag/bullet-storm-0.4.3)
88
* Setup the [Web Service](ws/setup.md) talking to the topology and serving a schema for your UI using [bullet-service-0.0.1](https://github.com/yahoo/bullet-service/releases/tag/bullet-service-0.0.1)
99
* Setup the [UI](ui/setup.md) talking to the Web Service using [bullet-ui-0.3.1](https://github.com/yahoo/bullet-ui/releases/tag/v0.3.1)
1010

@@ -19,7 +19,7 @@ At the end of this section, you will have:
1919
Simply run:
2020

2121
```bash
22-
curl -sLo- https://raw.githubusercontent.com/yahoo/bullet-docs/v0.3.1/examples/install-all.sh | bash
22+
curl -sLo- https://raw.githubusercontent.com/yahoo/bullet-docs/v0.3.2/examples/install-all.sh | bash
2323
```
2424

2525
This will setup a local Storm cluster, a Bullet running on it, the Bullet Web Service and a Bullet UI for you. Once everything has launched, you should be able to go to the Bullet UI running locally at [http://localhost:8800](http://localhost:8800). You can then [**continue this guide from here**](#what-did-we-do).
@@ -42,7 +42,7 @@ mkdir -p $BULLET_HOME/backend/storm
4242
mkdir -p $BULLET_HOME/service
4343
mkdir -p $BULLET_HOME/ui
4444
cd $BULLET_HOME
45-
curl -LO https://github.com/yahoo/bullet-docs/releases/download/v0.3.1/examples_artifacts.tar.gz
45+
curl -LO https://github.com/yahoo/bullet-docs/releases/download/v0.3.2/examples_artifacts.tar.gz
4646
tar -xzf examples_artifacts.tar.gz
4747
export BULLET_EXAMPLES=$BULLET_HOME/bullet-examples
4848
```
@@ -104,7 +104,7 @@ storm kill topology
104104

105105
### Setting up the example Bullet topology
106106

107-
Now that Storm is up and running, we can put Bullet on it. We will use an example Spout that runs on Bullet 0.4.2 on our Storm cluster. The source is available [here](https://github.com/yahoo/bullet-docs/blob/master/examples/storm). This was part of the artifact that you installed in Step 1.
107+
Now that Storm is up and running, we can put Bullet on it. We will use an example Spout that runs on Bullet 0.4.3 on our Storm cluster. The source is available [here](https://github.com/yahoo/bullet-docs/blob/master/examples/storm). This was part of the artifact that you installed in Step 1.
108108

109109
#### Step 5: Setup the Storm example
110110

@@ -233,7 +233,7 @@ Visit [http://localhost:8800](http://localhost:8800) to query your topology with
233233
If you were using the [Install Script](#install-script) or if you don't want to manually bring down everything, you can run:
234234

235235
```bash
236-
curl -sLo- https://raw.githubusercontent.com/yahoo/bullet-docs/v0.3.1/examples/install-all.sh | bash -s cleanup
236+
curl -sLo- https://raw.githubusercontent.com/yahoo/bullet-docs/v0.3.2/examples/install-all.sh | bash -s cleanup
237237
```
238238

239239
If you were performing the steps yourself, you can also manually cleanup **all the components and all the downloads** using:

examples/install-all.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -euo pipefail
44

5-
BULLET_EXAMPLES_VERSION=0.3.1
5+
BULLET_EXAMPLES_VERSION=0.3.2
66
BULLET_UI_VERSION=0.3.1
77
BULLET_WS_VERSION=0.0.1
88
JETTY_VERSION=9.3.16.v20170120

examples/storm/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2727
<maven.compiler.source>1.8</maven.compiler.source>
2828
<maven.compiler.target>1.8</maven.compiler.target>
29-
<bullet.version>0.4.2</bullet.version>
29+
<bullet.version>0.4.3</bullet.version>
3030
<storm.version>1.0.3</storm.version>
3131
</properties>
3232

examples/storm/src/main/resources/bullet_settings.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ bullet.query.aggregation.count.distinct.sketch.entries: 16384
3333
bullet.query.aggregation.group.sketch.entries: 1024
3434
bullet.query.aggregation.distribution.sketch.entries: 1024
3535
bullet.query.aggregation.distribution.max.points: 200
36+
bullet.query.aggregation.distribution.generated.points.rounding: 6
3637
bullet.query.aggregation.top.k.sketch.entries: 1024
3738
bullet.query.aggregation.top.k.sketch.error.type: "NFN"
3839
bullet.query.max.duration: 570000

0 commit comments

Comments
 (0)