You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by jk...@apache.org on 2012/08/14 21:56:36 UTC

svn commit: r1373054 - in /incubator/kafka/branches/0.8: bin/kafka-simple-consumer-perf-test.sh system_test/producer_perf/bin/run-compression-test.sh system_test/producer_perf/bin/run-test.sh

Author: jkreps
Date: Tue Aug 14 19:56:36 2012
New Revision: 1373054

URL: http://svn.apache.org/viewvc?rev=1373054&view=rev
Log:
KAFKA-425 Wrong class name in scripts. Patch from Akira Kitada reviewed by Jay Kreps.

Modified:
    incubator/kafka/branches/0.8/bin/kafka-simple-consumer-perf-test.sh
    incubator/kafka/branches/0.8/system_test/producer_perf/bin/run-compression-test.sh
    incubator/kafka/branches/0.8/system_test/producer_perf/bin/run-test.sh

Modified: incubator/kafka/branches/0.8/bin/kafka-simple-consumer-perf-test.sh
URL: http://svn.apache.org/viewvc/incubator/kafka/branches/0.8/bin/kafka-simple-consumer-perf-test.sh?rev=1373054&r1=1373053&r2=1373054&view=diff
==============================================================================
--- incubator/kafka/branches/0.8/bin/kafka-simple-consumer-perf-test.sh (original)
+++ incubator/kafka/branches/0.8/bin/kafka-simple-consumer-perf-test.sh Tue Aug 14 19:56:36 2012
@@ -14,4 +14,4 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-$(dirname $0)/kafka-run-class.sh kafka.tools.SimpleConsumerPerformance $@
+$(dirname $0)/kafka-run-class.sh kafka.perf.SimpleConsumerPerformance $@

Modified: incubator/kafka/branches/0.8/system_test/producer_perf/bin/run-compression-test.sh
URL: http://svn.apache.org/viewvc/incubator/kafka/branches/0.8/system_test/producer_perf/bin/run-compression-test.sh?rev=1373054&r1=1373053&r2=1373054&view=diff
==============================================================================
--- incubator/kafka/branches/0.8/system_test/producer_perf/bin/run-compression-test.sh (original)
+++ incubator/kafka/branches/0.8/system_test/producer_perf/bin/run-compression-test.sh Tue Aug 14 19:56:36 2012
@@ -28,7 +28,7 @@ $base_dir/../../bin/kafka-server-start.s
 
 sleep 4
 echo "start producing $num_messages messages ..."
-$base_dir/../../bin/kafka-run-class.sh kafka.tools.ProducerPerformance --brokerinfo broker.list=0:localhost:9092 --topic test01 --messages $num_messages --message-size $message_size --batch-size 200 --threads 1 --reporting-interval 100000 num_messages --async --compression-codec 1 
+$base_dir/../../bin/kafka-run-class.sh kafka.perf.ProducerPerformance --brokerinfo broker.list=0:localhost:9092 --topic test01 --messages $num_messages --message-size $message_size --batch-size 200 --threads 1 --reporting-interval 100000 num_messages --async --compression-codec 1 
 
 echo "wait for data to be persisted" 
 cur_offset="-1"

Modified: incubator/kafka/branches/0.8/system_test/producer_perf/bin/run-test.sh
URL: http://svn.apache.org/viewvc/incubator/kafka/branches/0.8/system_test/producer_perf/bin/run-test.sh?rev=1373054&r1=1373053&r2=1373054&view=diff
==============================================================================
--- incubator/kafka/branches/0.8/system_test/producer_perf/bin/run-test.sh (original)
+++ incubator/kafka/branches/0.8/system_test/producer_perf/bin/run-test.sh Tue Aug 14 19:56:36 2012
@@ -28,7 +28,7 @@ $base_dir/../../bin/kafka-server-start.s
 
 sleep 4
 echo "start producing $num_messages messages ..."
-$base_dir/../../bin/kafka-run-class.sh kafka.tools.ProducerPerformance --brokerinfo broker.list=0:localhost:9092 --topic test01 --messages $num_messages --message-size $message_size --batch-size 200 --threads 1 --reporting-interval 100000 num_messages --async
+$base_dir/../../bin/kafka-run-class.sh kafka.perf.ProducerPerformance --brokerinfo broker.list=0:localhost:9092 --topic test01 --messages $num_messages --message-size $message_size --batch-size 200 --threads 1 --reporting-interval 100000 num_messages --async
 
 echo "wait for data to be persisted" 
 cur_offset="-1"