org.jgroups.tests.MessageDispatcherSpeedTest Maven / Gradle / Ivy
Go to download
This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including
all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and
JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up
with different versions on classes on the class path).
package org.jgroups.tests;
import org.jgroups.*;
import org.jgroups.blocks.MessageDispatcher;
import org.jgroups.blocks.RequestHandler;
import org.jgroups.blocks.RequestOptions;
import org.jgroups.blocks.ResponseMode;
import org.jgroups.util.ByteArray;
import org.jgroups.util.Util;
/**
* @author Bela Ban
*/
public class MessageDispatcherSpeedTest implements Receiver, RequestHandler {
JChannel channel;
MessageDispatcher disp;
String props=null;
boolean server=false; // role is client by default
int num=1000, received=0;
static final long TIMEOUT=10000;
public MessageDispatcherSpeedTest(String props, boolean server, int num) {
this.props=props;
this.server=server;
this.num=num;
}
public Object handle(Message msg) throws Exception {
received++;
if(received % 1000 == 0)
System.out.println("-- received " + received);
return null;
}
public void start() throws Exception {
channel=new JChannel(props);
disp=new MessageDispatcher(channel, this).setReceiver(this);
channel.connect("MessageDispatcherSpeedTestGroup");
try {
if(server) {
System.out.println("-- Started as server. Press ctrl-c to kill");
while(true) {
Util.sleep(10000);
}
}
else {
sendMessages(num);
}
}
catch(Throwable t) {
t.printStackTrace(System.err);
}
finally {
channel.close();
disp.stop();
}
}
void sendMessages(int num) throws Exception {
long start, stop;
int show=num/10;
if(show <=0) show=1;
start=System.currentTimeMillis();
RequestOptions opts=new RequestOptions(ResponseMode.GET_ALL, TIMEOUT).flags(Message.Flag.DONT_BUNDLE, Message.Flag.NO_FC);
byte[] data="bla".getBytes();
ByteArray buf=new ByteArray(data, 0, data.length);
System.out.println("-- sending " + num + " messages");
for(int i=1; i <= num; i++) {
disp.castMessage(null, new BytesMessage(null, buf), opts);
if(i % show == 0)
System.out.println("-- sent " + i);
}
stop=System.currentTimeMillis();
printStats(stop-start, num);
}
static void printStats(long total_time, int num) {
double throughput=((double)num)/((double)total_time/1000.0);
System.out.println("time for " + num + " remote calls was " +
total_time + ", avg=" + (total_time / (double)num) +
"ms/invocation, " + (long)throughput + " calls/sec");
}
public void viewAccepted(View new_view) {
System.out.println("-- new view: " + new_view);
}
public static void main(String[] args) throws Exception {
String props=null;
boolean server=false;
int num=1000;
MessageDispatcherSpeedTest test;
for(int i=0; i < args.length; i++) {
if("-props".equals(args[i])) {
props=args[++i];
continue;
}
if("-server".equals(args[i])) {
server=true;
continue;
}
if("-num".equals(args[i])) {
num=Integer.parseInt(args[++i]);
continue;
}
help();
return;
}
test=new MessageDispatcherSpeedTest(props, server, num);
test.start();
}
static void help() {
System.out.println("MessageDispatcherSpeedTest [-help] [-props ] [-server] [-num ]");
}
}