All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.hyperfoil.clustering.AgentVerticle Maven / Gradle / Ivy
package io.hyperfoil.clustering;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.ArrayList;
import io.hyperfoil.api.config.Benchmark;
import io.hyperfoil.clustering.util.AgentControlMessage;
import io.hyperfoil.clustering.util.AgentHello;
import io.hyperfoil.core.util.CountDown;
import io.hyperfoil.core.impl.SimulationRunnerImpl;
import io.hyperfoil.clustering.util.PhaseChangeMessage;
import io.hyperfoil.clustering.util.PhaseControlMessage;
import io.vertx.core.AbstractVerticle;
import io.vertx.core.AsyncResult;
import io.vertx.core.Future;
import io.vertx.core.Handler;
import io.vertx.core.eventbus.EventBus;
import io.vertx.core.eventbus.MessageConsumer;
import io.vertx.core.eventbus.ReplyException;
import io.vertx.core.eventbus.ReplyFailure;
import io.vertx.core.logging.Logger;
import io.vertx.core.logging.LoggerFactory;
public class AgentVerticle extends AbstractVerticle {
private static Logger log = LoggerFactory.getLogger(AgentVerticle.class);
private String name;
private String address;
private EventBus eb;
private SimulationRunnerImpl runner;
private MessageConsumer controlFeedConsumer;
private long statsTimerId = -1;
private ReportSender reportSender;
private CountDown statisticsCountDown;
private SessionStatsSender sessionStatsSender;
@Override
public void start() {
address = deploymentID();
name = context.config().getString("name");
if (name == null) {
name = System.getProperty(Properties.AGENT_NAME);
}
if (name == null) {
try {
name = InetAddress.getLocalHost().getHostName();
} catch (UnknownHostException e) {
log.debug("Cannot deduce name from host name", e);
name = address;
}
}
eb = vertx.eventBus();
eb.consumer(address, message -> {
AgentControlMessage controlMessage = (AgentControlMessage) message.body();
switch (controlMessage.command()) {
case INITIALIZE:
log.info("Initializing agent, run {}", controlMessage.runId());
initBenchmark(controlMessage.runId(), controlMessage.benchmark(), result -> {
if (result.succeeded()) {
message.reply("OK");
} else {
message.fail(1, result.cause().getMessage());
}
});
break;
case RESET:
// collect stats one last time before acknowledging termination
log.info("Received agent reset");
if (statsTimerId >= 0) {
vertx.cancelTimer(statsTimerId);
}
CountDown completion = new CountDown(result -> message.reply(result.succeeded() ? "OK" : result.cause()), 1);
if (runner != null) {
runner.visitStatistics(reportSender);
reportSender.send(completion);
runner.shutdown();
}
if (controlFeedConsumer != null) {
controlFeedConsumer.unregister();
}
controlFeedConsumer = null;
runner = null;
reportSender = null;
statisticsCountDown.setHandler(result -> completion.countDown());
statisticsCountDown.countDown();
break;
case LIST_SESSIONS:
log.debug("Listing sessions...");
ArrayList sessions = new ArrayList<>();
boolean includeInactive = controlMessage.includeInactive();
runner.visitSessions(s -> {
if (s.isActive() || includeInactive) {
sessions.add(s.toString());
}
});
message.reply(sessions);
break;
case LIST_CONNECTIONS:
log.debug("Listing connections...");
message.reply(runner.listConnections());
break;
}
});
vertx.setPeriodic(1000, timerId -> {
eb.send(Feeds.DISCOVERY, new AgentHello(name, address), reply -> {
log.trace("{} Pinging controller", address);
if (reply.succeeded()) {
log.info("{} Got reply from controller.", address);
vertx.cancelTimer(timerId);
} else {
if (reply.cause() instanceof ReplyException) {
ReplyFailure replyFailure = ((ReplyException) reply.cause()).failureType();
if (replyFailure == ReplyFailure.RECIPIENT_FAILURE) {
log.error("{} Failed to register, already registered!", address);
} else {
log.info("{} Failed to register: {}", address, replyFailure);
}
}
}
});
});
}
private MessageConsumer listenOnControl() {
return eb.consumer(Feeds.CONTROL, message -> {
PhaseControlMessage controlMessage = (PhaseControlMessage) message.body();
switch (controlMessage.command()) {
case RUN:
runner.startPhase(controlMessage.phase());
break;
case FINISH:
runner.finishPhase(controlMessage.phase());
break;
case TRY_TERMINATE:
runner.tryTerminatePhase(controlMessage.phase());
break;
case TERMINATE:
runner.terminatePhase(controlMessage.phase());
break;
}
});
}
@Override
public void stop() {
if (runner != null) {
runner.shutdown();
}
}
private void initBenchmark(String runId, Benchmark benchmark, Handler> handler) {
if (runner != null) {
log.error("Another simulation is running!");
handler.handle(Future.failedFuture("Another simulation is running"));
return;
}
runner = new SimulationRunnerImpl(benchmark);
controlFeedConsumer = listenOnControl();
reportSender = new ReportSender(eb, address, runId);
statisticsCountDown = new CountDown(1);
sessionStatsSender = new SessionStatsSender(eb, address, runId);
runner.init((phase, status, succesful) -> {
log.debug("{} changed phase {} to {}", address, phase, status);
eb.send(Feeds.RESPONSE, new PhaseChangeMessage(address, runId, phase, status, succesful));
}, result -> {
if (result.succeeded()) {
statsTimerId = vertx.setPeriodic(benchmark.statisticsCollectionPeriod(), timerId -> {
runner.visitStatistics(reportSender);
reportSender.send(statisticsCountDown);
runner.visitSessionPoolStats(sessionStatsSender);
sessionStatsSender.send();
});
}
handler.handle(result);
});
}
}