Skip to content

Commit ed5ab4d

Browse files
committed
Using latest core
1 parent 5959ef8 commit ed5ab4d

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

docs/quick-start/storm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Quick Start on Storm
22

3-
This section gets you running a mock instance of Bullet to play around with. The instance will run using [Bullet on Storm](../backend/storm-setup.md) and use the [DRPC Pubsub](../pubsub/storm-drpc.md). Since we do not have an actual data source, we will produce some fake data and convert it into [Bullet Records](../backend/ingestion.md) in a [custom Storm spout](https://github.com/bullet-db/bullet-db.github.io/blob/master/examples/storm/src/main/java/com/yahoo/bullet/storm/examples/RandomSpout.java). If you want to use Bullet for your data, you will need to do read and convert your data to Bullet Records in a similar manner.
3+
This section gets you running a mock instance of Bullet to play around with. The instance will run using [Bullet on Storm](../backend/storm-setup.md) and use the [REST Pubsub](../pubsub/rest.md). Since we do not have an actual data source, we will produce some fake data and convert it into [Bullet Records](../backend/ingestion.md) in a [custom Storm spout](https://github.com/bullet-db/bullet-db.github.io/blob/master/examples/storm/src/main/java/com/yahoo/bullet/storm/examples/RandomSpout.java). If you want to use Bullet for your data, you will need to do read and convert your data to Bullet Records in a similar manner.
44

55
At the end of this section, you will have:
66

examples/Makefile

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,32 @@ clean:
44
rm -rf examples_artifacts.tar.gz bullet-examples
55
cd storm && mvn clean
66

7-
build:
7+
build-storm:
88
mkdir -p bullet-examples/backend/storm
99
cp install-all-storm.sh bullet-examples/
1010
cd storm && mvn package
1111
cp storm/target/*jar-with-dependencies.jar bullet-examples/backend/storm
1212
cp storm/bin/launch.sh bullet-examples/backend/storm
1313
cp storm/src/main/resources/bullet_settings.yaml bullet-examples/backend/storm
14+
15+
build-spark:
1416
mkdir -p bullet-examples/backend/spark
1517
cp install-all-spark.sh bullet-examples/
1618
cd spark && mvn package
1719
cp spark/target/bullet-spark-example-0.0.1-SNAPSHOT.jar bullet-examples/backend/spark/bullet-spark-example.jar
1820
cp spark/src/main/resources/bullet_spark_kafka_settings.yaml bullet-examples/backend/spark
19-
cp spark/src/main/resources/bullet_spark_rest_settings.yaml bullet-examples/backend/spark
21+
22+
build-web-service:
2023
mkdir -p bullet-examples/web-service
2124
cp web-service/* bullet-examples/web-service
25+
26+
build-ui:
2227
mkdir -p bullet-examples/ui
2328
cp ui/* bullet-examples/ui
29+
30+
archive:
2431
tar -czf examples_artifacts.tar.gz bullet-examples/*
2532
rm -rf bullet-examples
33+
34+
build: build-storm build-spark build-web-service build-ui archive
35+

examples/storm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<maven.compiler.source>1.8</maven.compiler.source>
2828
<maven.compiler.target>1.8</maven.compiler.target>
2929
<bullet.storm.version>0.8.3</bullet.storm.version>
30-
<bullet.core.version>0.4.0</bullet.core.version>
30+
<bullet.core.version>0.4.1</bullet.core.version>
3131
<bullet.record.version>0.2.0</bullet.record.version>
3232
<storm.version>1.0.3</storm.version>
3333
</properties>

0 commit comments

Comments
 (0)