Github user revans2 commented on the pull request:

    https://github.com/apache/storm/pull/728#issuecomment-170149708
  
    @hsun-cnnxty I hope it is something like that.  You should be able to run 
the tests yourself too.  They are not that complex.  I build
    
    ```
    mvn clean install -DskipTests
    cd storm-dist/binary
    mvn clean package
    tar -xzvf ./target/apache-storm-0.11.0-SNAPSHOT.tar.gz
    cd apache-storm-0.11.0-SNAPSHOT
    ```
    
    I then run a small single node cluster
    ```
    ./bin/storm dev-zookeeper &
    ./bin/storm nimbus &
    ./bin/storm supervisor &
    ./bin/storm ui &
    ./bin/storm logviewer &
    ```
    
    Once it is all up and ready you can run the test.
    ```
    ./bin/storm jar 
./examples/storm-starter/storm-starter-topologies-0.11.0-SNAPSHOT.jar 
storm.starter.ThroughputVsLatency $THROUGHPUT 4 5 wc-test | tee results.txt
    ```
    
    It will output metrics about the running test every 30 seconds for 5 mins.  
Some of the numbers are in nanoseconds and others are in milliseconds so pay 
attention to them.  I like to vary the throughput and look to see when it 
cannot keep up any more to get an idea of the maximum throughput the setup can 
handle, and what the latency is for a given throughput so we can see how they 
compare to each other.


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to