Github user revans2 commented on the issue:

    https://github.com/apache/storm/pull/2241
  
    @harshach I am running with defaults in all cases
    
    I build `mvn clean install -DskipTests`
    package `cd storm-dist/binary; mvn clean package`
    untar the result `tar -xzvf 
./final-package/target/apache-storm-2.0.0-SNAPSHOT.tar.gz`
    move the directory so I can save it if I want to switch back and forth `mv 
apache-storm-2.0.0-SNAPSHOT under-test`
    then bring up the cluster
    ```
    cd under-test;
    ./bin/storm dev-zookeeper &
    ./bin/storm nimbus &
    ./bin/storm supervisor &
    ./bin/storm ui &
    ./bin/storm logviewer &
    ```
    
    Wait for everything to come up, and I can see the ui.
    
    Then I run some tests (I pull in the storm starter from the build because 
the packaged one does not build on its own).
    ```
    ./bin/storm jar 
../../../examples/storm-starter/target/storm-starter-2.0.0-SNAPSHOT.jar 
org.apache.storm.starter.ThroughputVsLatency
    ...
    ./bin/storm jar 
../../../examples/storm-starter/target/storm-starter-2.0.0-SNAPSHOT.jar 
org.apache.storm.starter.ThroughputVsLatency -c topology.workers=1
    ...
    ./bin/storm jar 
../../../examples/storm-starter/target/storm-starter-2.0.0-SNAPSHOT.jar 
org.apache.storm.starter.ThroughputVsLatency 10000 -c topology.workers=1
    ...
    ./bin/storm jar 
../../../examples/storm-starter/target/storm-starter-2.0.0-SNAPSHOT.jar 
org.apache.storm.starter.ThroughputVsLatency 10000 -c topology.workers=1 -c 
topology.max.spout.pending=500
    ...
    ./bin/storm jar 
../../../examples/storm-starter/target/storm-starter-2.0.0-SNAPSHOT.jar 
org.apache.storm.starter.ThroughputVsLatency 10000 -c topology.workers=1 -c 
topology.max.spout.pending=1000
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to