You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|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 |
19
19
| 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 |
20
20
| 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 |
21
21
| SQL API | BE, WS | WS supports an endpoint that converts a SQL-like query into Bullet queries | Open |
| 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 |
23
24
| 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 |
24
25
| 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 |
25
26
@@ -111,6 +112,8 @@ The Bullet UI that lets you build, run, save and visualize results from Bullet.
| 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 |
114
117
| 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 |
115
118
| 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 |
116
119
| 2016-05-03 |[**0.2.2**](https://github.com/yahoo/bullet-ui/releases/tag/v0.2.2)| Fixes maxlength of the input for points |
Copy file name to clipboardExpand all lines: docs/quick-start.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ At the end of this section, you will have:
6
6
7
7
* 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)
8
8
* 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)
10
10
11
11
**Prerequisites**
12
12
@@ -19,7 +19,7 @@ At the end of this section, you will have:
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).
0 commit comments