Skip to content

Commit 6739dd4

Browse files
committed
Simplifying launch
1 parent b79227f commit 6739dd4

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

Diff for: docs/quick-start.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Don't want to follow all these Steps? Make sure you have your prerequisites inst
2020

2121
```bash
2222
export BULLET_HOME=$(pwd)/bullet-quickstart
23-
curl -sLo- https://raw.githubusercontent.com/yahoo/bullet-docs/v0.1.2/examples/install-all.sh | bash
23+
curl -sLo- https://raw.githubusercontent.com/yahoo/bullet-docs/v0.1.3/examples/install-all.sh | bash
2424
```
2525

2626
This will run all the Steps 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.1.2/examples_artifacts.tar.gz
45+
curl -LO https://github.com/yahoo/bullet-docs/releases/download/v0.1.3/examples_artifacts.tar.gz
4646
tar -xzf examples_artifacts.tar.gz
4747
export BULLET_EXAMPLES=$BULLET_HOME/bullet-examples
4848
```
@@ -141,7 +141,7 @@ cp $BULLET_EXAMPLES/storm/* $BULLET_HOME/backend/storm
141141
```bash
142142
cd $BULLET_HOME/backend/storm && ./launch.sh
143143
```
144-
This script also kills any existing Bullet instances running (you may see an ignorable exception if there is nothing running). There can only be one topology in the cluster with a particular name. Visit the UI and see if the topology is up. You should see the ```DataSource``` spout begin emitting records.
144+
Visit the UI and see if the topology is up. You should see the ```DataSource``` spout begin emitting records.
145145

146146
Test the Bullet topology by:
147147

@@ -232,7 +232,7 @@ To cleanup all the components we bought up:
232232

233233
You can also do:
234234
```bash
235-
curl -sLo- https://raw.githubusercontent.com/yahoo/bullet-docs/v0.1.2/examples/install-all.sh | bash -s cleanup
235+
curl -sLo- https://raw.githubusercontent.com/yahoo/bullet-docs/v0.1.3/examples/install-all.sh | bash -s cleanup
236236
```
237237

238238
## What did we do?

Diff for: examples/install-all.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -euo pipefail
44

55

6-
BULLET_EXAMPLES_VERSION=0.1.2
6+
BULLET_EXAMPLES_VERSION=0.1.3
77
BULLET_UI_VERSION=0.1.0
88
BULLET_WS_VERSION=0.0.1
99
JETTY_VERSION=9.3.16.v20170120

Diff for: examples/storm/bin/launch.sh

-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
#! /bin/bash
22

3-
storm kill bullet
4-
5-
sleep 20
6-
73
# We pass 20 and 100 to the RandomSpout, which means it generates up to 20 random records every 100 ms.
84
storm jar bullet-storm-example-1.0-SNAPSHOT-jar-with-dependencies.jar \
95
com.yahoo.bullet.Topology \

0 commit comments

Comments
 (0)