Skip to content

Commit c4586a8

Browse files
committed
Updating docs to Bullet UI 0.4.0 and Bullet Core 0.2.0
1 parent 6de4225 commit c4586a8

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

docs/about/contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ This list is neither comprehensive nor in any particular order and lists some hi
1414

1515
| Feature | Components | Description | Status |
1616
|-------------------- | ----------- | ------------------------- | ------------- |
17-
| Pub-Sub Queue | BE, WS, UI | WS and BE talk through the pub/sub. Bullet Storm uses Storm DRPC for this, which is request-response. Using a pub/sub queue will let us implement Bullet on other Stream Processors, support incremental updates through WebSockets and more! | In Progress |
18-
| Incremental updates | BE, WS, UI | Push results back to users as soon as they arrive. Monoidal operations implies additive, so progressive results can be streamed back. Micro-batching and other features come into play | In Progress |
17+
| PubSub | BE, WS, UI | WS and BE talk through the PubSub. Bullet Storm uses Storm DRPC for this (strictly request-response) Using a pub/sub queue will let us implement Bullet on other Stream Processors, support incremental updates through WebSockets and more! | In Progress [#1](https://github.com/yahoo/bullet-core/pull/1) |
18+
| Incremental updates | BE, WS, UI | Push results back to users as soon as they arrive. Our aggregations are additive, so progressive results can be streamed back. Micro-batching and other features come into play | In Progress |
1919
| Security | WS, UI | The obvious enterprise security for locking down access to the data and the instance of Bullet. Considering SSL, Kerberos, LDAP etc. | Planning |
2020
| Bullet on X | BE | With the pub/sub feature, Bullet can be implemented on other Stream Processors like Spark Streaming, Flink, Kafka Streaming, Samza etc | Open |
2121
| SQL API | BE, WS | WS supports an endpoint that converts a SQL-like query into Bullet queries | Open |

docs/about/releases.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ The core Bullet logic (a library) that can be used to implement Bullet on differ
2020

2121
| Date | Release | Highlights |
2222
| ------------ | --------------------------------------------------------------------------------- | ---------- |
23+
| 2016-08-16 | [**0.2.0**](https://github.com/yahoo/bullet-core/releases/tag/bullet-core-0.2.0) | PubSub interfaces and classes to implement custom communication between API and backend |
2324
| 2016-06-27 | [**0.1.2**](https://github.com/yahoo/bullet-core/releases/tag/bullet-core-0.1.2) | Changes to the BulletConfig interface previously used in Bullet Storm. Users now use BulletStormConfig instead but YAML config is the same |
2425
| 2016-06-27 | [**0.1.1**](https://github.com/yahoo/bullet-core/releases/tag/bullet-core-0.1.1) | First stable release containing the core of Bullet as a library including parsing, implementing queries, creating results, DataSketches etc |
2526

@@ -111,6 +112,8 @@ The Bullet UI that lets you build, run, save and visualize results from Bullet.
111112

112113
| Date | Release | Highlights |
113114
| ------------ | -------------------------------------------------------------------------------------- | ---------- |
115+
| 2016-08-22 | [**0.4.0**](https://github.com/yahoo/bullet-ui/releases/tag/v0.4.0) | Query sharing, collapsible Raw view, and unsaved/error indicators. Settings rename and other bug fixes|
116+
| 2016-05-22 | [**0.3.2**](https://github.com/yahoo/bullet-ui/releases/tag/v0.3.2) | Exporting to TSV in Pivot table. Fixes unselectability bug in Raw view |
114117
| 2016-05-15 | [**0.3.1**](https://github.com/yahoo/bullet-ui/releases/tag/v0.3.1) | Adds styles to the Pivot table. Fixes some minor UI interactions |
115118
| 2016-05-10 | [**0.3.0**](https://github.com/yahoo/bullet-ui/releases/tag/v0.3.0) | Adds Charting and Pivoting support. Migrations enhanced. Support for overriding nested default settings |
116119
| 2016-05-03 | [**0.2.2**](https://github.com/yahoo/bullet-ui/releases/tag/v0.2.2) | Fixes maxlength of the input for points |

docs/quick-start.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ At the end of this section, you will have:
66

77
* Setup the Bullet topology using a custom spout on [bullet-storm-0.5.0](https://github.com/yahoo/bullet-storm/releases/tag/bullet-storm-0.5.0)
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)
9-
* Setup the [UI](ui/setup.md) talking to the Web Service using [bullet-ui-0.3.2](https://github.com/yahoo/bullet-ui/releases/tag/v0.3.2)
9+
* Setup the [UI](ui/setup.md) talking to the Web Service using [bullet-ui-0.4.0](https://github.com/yahoo/bullet-ui/releases/tag/v0.4.0)
1010

1111
**Prerequisites**
1212

@@ -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.3/examples/install-all.sh | bash
22+
curl -sLo- https://raw.githubusercontent.com/yahoo/bullet-docs/v0.3.4/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.3/examples_artifacts.tar.gz
45+
curl -LO https://github.com/yahoo/bullet-docs/releases/download/v0.3.4/examples_artifacts.tar.gz
4646
tar -xzf examples_artifacts.tar.gz
4747
export BULLET_EXAMPLES=$BULLET_HOME/bullet-examples
4848
```
@@ -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.3/examples/install-all.sh | bash -s cleanup
236+
curl -sLo- https://raw.githubusercontent.com/yahoo/bullet-docs/v0.3.4/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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
set -euo pipefail
44

5-
BULLET_EXAMPLES_VERSION=0.3.3
6-
BULLET_UI_VERSION=0.3.2
5+
BULLET_EXAMPLES_VERSION=0.3.4
6+
BULLET_UI_VERSION=0.4.0
77
BULLET_WS_VERSION=0.0.1
88
JETTY_VERSION=9.3.16.v20170120
99
STORM_VERSION=1.0.3

0 commit comments

Comments
 (0)