Skip to content

Commit 5bc3c77

Browse files
committed
Fixing links
1 parent ac45f5e commit 5bc3c77

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/quick-start/spark.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Simply run:
2121
curl -sLo- https://raw.githubusercontent.com/bullet-db/bullet-db.github.io/src/examples/install-all-spark.sh | bash
2222
```
2323

24-
This will setup a local Spark and Kafka 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).
24+
This will setup a local Spark and Kafka 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**](#playing-around-with-the-instance).
2525

2626
!!! note "Want to DIY?"
2727
If you want to manually run all the commands or if the script died while doing something above (might want to perform the [teardown](#teardown) first), you can continue below.
@@ -193,7 +193,7 @@ Visit [http://localhost:8800](http://localhost:8800) to query your topology with
193193

194194
If you access the UI from another machine than where your UI is actually running, you will need to edit ```config/env-settings.json```. Since the UI is a client-side app, the machine that your browser is running on will fetch the UI and attempt to use these settings to talk to the Web Service. Since they point to localhost by default, your browser will attempt to connect there and fail. An easy fix is to change ```localhost``` in your env-settings.json to point to the host name where you will hosting the UI. This will be the same as the UI host you use in the browser. You can also do a local port forward on the machine accessing the UI by running: ```ssh -N -L 8800:localhost:8800 -L 9999:localhost:9999 hostname-of-the-quickstart-components 2>&1```.
195195

196-
#### Playing around with the instance:
196+
## Playing around with the instance
197197

198198
Check out and follow along with the [UI Usage](../ui/usage.md) page as it shows you some queries you can run using this UI.
199199

docs/quick-start/storm.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Simply run:
2323
curl -sLo- https://raw.githubusercontent.com/bullet-db/bullet-db.github.io/src/examples/install-all-storm.sh | bash
2424
```
2525

26-
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).
26+
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**](#playing-around-with-the-instance).
2727

2828
!!! note "Want to DIY?"
2929
If you want to manually run all the commands or if the script died while doing something above (might want to perform the [teardown](#teardown) first), you can continue below.
@@ -52,7 +52,7 @@ export BULLET_EXAMPLES=$BULLET_HOME/bullet-examples
5252

5353
```bash
5454
cd $BULLET_HOME/backend
55-
curl -O http://apache.org/dist/storm/apache-storm-2.2.0/apache-storm-2.2.0.zip
55+
curl -LO https://downloads.apache.org/storm/apache-storm-2.2.0/apache-storm-2.2.0.zip
5656
unzip apache-storm-2.2.0.zip
5757
export PATH=$(pwd)/apache-storm-2.2.0/bin/:$PATH
5858
```
@@ -131,7 +131,7 @@ Visit the UI and see if the topology is up. You should see the ```DataSource```
131131

132132
```bash
133133
cd $BULLET_HOME/service
134-
curl -Lo bullet-service.jar http://jcenter.bintray.com/com/yahoo/bullet/bullet-service/0.4.3/bullet-service-0.4.3-embedded.jar
134+
curl -Lo bullet-service.jar http://jcenter.bintray.com/com/yahoo/bullet/bullet-service/1.0.0/bullet-service-1.0.0-embedded.jar
135135
cp $BULLET_EXAMPLES/web-service/example* $BULLET_HOME/service/
136136
```
137137

@@ -147,7 +147,7 @@ Note that we turned on the built-in REST pubsub in the Web Service when launchin
147147
You can verify that it is up by running a Bullet query or getting the example columns through the API:
148148

149149
```bash
150-
curl -s -H 'Content-Type: text/plain' -X POST -d '{"aggregation": {"size": 1}}' http://localhost:9999/api/bullet/sse-query
150+
curl -s -H 'Content-Type: text/plain' -X POST -d 'SELECT * FROM STREAM(10000, TIME) LIMIT 1' http://localhost:9999/api/bullet/queries/sse-query
151151
curl -s http://localhost:9999/api/bullet/columns
152152
```
153153

examples/install-all-storm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ install_bullet_examples() {
7272

7373
install_storm() {
7474
println "Downloading Storm ${STORM_VERSION}..."
75-
download "http://apache.org/dist/storm/${STORM_DISTRO}" "${STORM_DISTRO}.zip"
75+
download "https://downloads.apache.org/storm/${STORM_DISTRO}" "${STORM_DISTRO}.zip"
7676

7777
println "Installing Storm ..."
7878
unzip -qq "${BULLET_DOWNLOADS}/${STORM_DISTRO}.zip" -d "${BULLET_HOME}/backend"

0 commit comments

Comments
 (0)