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
You will need [Maven 3](https://maven.apache.org/install.html) and [JDK 8](http://www.oracle.com/technetwork/java/javase/downloads/index.html) installed to build the examples.
Copy file name to clipboardExpand all lines: docs/index.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@
22
22
23
23
How Bullet is used is largely determined by the data source it consumes. Depending on what kind of data you put Bullet on, the types of queries you run on it and your use-cases will change. As a look-forward query system with no persistence, you will not be able to repeat your queries on the same data. The next time you run your query, it will operate on the different data that arrives after that submission. If this usage pattern is what you need and you are looking for a light-weight system that can tap into your streaming data, then Bullet is for you!
24
24
25
-
### How Bullet is used at Yahoo
25
+
### Example: How Bullet is used at Yahoo
26
26
27
27
Bullet is used in production internally at Yahoo by having it sit on raw user engagement events from Yahoo sites and apps. This lets Yahoo developers automatically validate *end-to-end* their instrumentation code in their Continuous Delivery pipelines. Validating instrumentation is critical since it powers pretty much all decisions and products including machine learning, corporate KPIs, analytics, personalization, targeting.
28
28
@@ -157,6 +157,6 @@ In the case of Bullet on Storm, the Web Service and UI talk to the backend using
157
157
!!! note "Want to know more?"
158
158
In practice, the backend is implemented using the basic components that the Stream processing framework provides. See [Storm Architecture](backend/storm-architecture.md) for details.
159
159
160
-
# Releases
160
+
# Past Releases and Source
161
161
162
-
See the [Releases](about/releases.md) section where the various Bullet releases are collected in one place.
162
+
See the [Releases](about/releases.md) section where the various Bullet releases and repository links are collected in one place.
Copy file name to clipboardExpand all lines: docs/quick-start.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ At the end of this section, you should have a full end-to-end Bullet instance wi
12
12
**Prerequisites**
13
13
14
14
* You will need to be on an Unix-based system (Mac, Ubuntu ...) for most of these commands
15
-
* You will need enough CPU and RAM on your machine to run about about 8-10 JVMs. You will be setting up a Storm cluster with multiple components, a couple of Jetty instances and a Node server
15
+
* You will need enough CPU and RAM on your machine to run about 8-10 JVMs. You will be setting up a Storm cluster with multiple components, a couple of Jetty instances and a Node server
16
16
* You will need [git](https://git-scm.com/downloads), [Maven 3](https://maven.apache.org/install.html) and [JDK 8](http://www.oracle.com/technetwork/java/javase/downloads/index.html) installed. The example will walk you through installing [Node.js](http://nodejs.org)
17
17
18
18
## Setting up Storm
@@ -115,7 +115,7 @@ Test the Bullet topology by:
115
115
curl -s -X POST -d '{}' http://localhost:3774/drpc/bullet
116
116
```
117
117
118
-
You should get a random record from Bullet produced by the custom spout that we plugged in.
0 commit comments