Created
November 1, 2016 07:21
-
-
Save erikdw/989e60e5b8073e0b84dac8b4d40c4930 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git Vagrantfile Vagrantfile | |
index bbbca8b..775fada 100755 | |
--- Vagrantfile | |
+++ Vagrantfile | |
@@ -65,7 +65,7 @@ fi | |
install_package "libcurl3" | |
install_package "zookeeperd" | |
install_package "aria2" | |
-install_package "mesos=0.25.0-0.2.70.ubuntu1404" | |
+install_package "mesos=1.0.1-2.0.93.ubuntu1404" | |
echo "${PREFIX} Done installing packages" | |
echo "${PREFIX} Successfully provisioned machine for storm development" | |
diff --git storm.yaml storm.yaml | |
index 932c8c0..f162ceb 100644 | |
--- storm.yaml | |
+++ storm.yaml | |
@@ -3,10 +3,12 @@ | |
# ----------------------------------------------------------- | |
mesos.master.url: "zk://localhost:2181/mesos" | |
storm.zookeeper.servers: | |
- - "localhost" | |
+- localhost | |
+nimbus.host: master | |
+nimbus.seeds: | |
+- master | |
# ----------------------------------------------------------- | |
- | |
# Worker resources | |
topology.mesos.worker.cpu: 1.0 | |
# Worker heap with 25% overhead | |
@@ -33,11 +35,12 @@ supervisor.autostart.logviewer: true | |
# Use the public Mesosphere Storm build | |
# Please note that it won't work with other distributions. | |
# You may want to make this empty if you use `mesos.container.docker.image` instead. | |
-# mesos.executor.uri: "file:///usr/local/storm/storm-mesos-0.9.6.tgz" | |
+#mesos.executor.uri: "file:///usr/local/storm/storm-mesos-0.9.6.tgz" | |
+mesos.executor.uri: "file:///usr/local/storm/storm-mesos-0.1.8-SNAPSHOT-storm1.0.2-mesos1.0.1.tgz" | |
# Alternatively, use a Docker image instead of URI. If an image is specified, | |
# Docker will be used instead of Mesos containers. | |
-mesos.container.docker.image: "mesosphere/storm" | |
+#mesos.container.docker.image: "mesosphere/storm" | |
# Use Netty to avoid ZMQ dependencies | |
storm.messaging.transport: "org.apache.storm.messaging.netty.Context" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment