use of net.dempsy.lifecycle.annotation.utils.KeyExtractor in project Dempsy by Dempsy.
the class TestContainer method addOutputCatchStage.
public NodeManager addOutputCatchStage() throws InterruptedException {
// =======================================================
// configure an output catcher tier
final Node out = new Node("test-app").defaultRoutingStrategyId("net.dempsy.router.simple").receiver(new BlockingQueueReceiver(new ArrayBlockingQueue<>(16))).setNodeStatsCollector(// same app as the spring file.
new BasicNodeStatsCollector());
out.cluster("output-catch").mp(new MessageProcessor<OutputCatcher>(new OutputCatcher()));
out.validate();
final NodeManager nman = track(new NodeManager()).node(out).collaborator(track(sessionFactory.createSession())).start();
// wait until we can actually reach the output-catch cluster from the main node
assertTrue(poll(o -> {
try {
return canReach(getRouter(manager), "output-catch", new KeyExtractor().extract(new OutputMessage("foo", 1, 1)).iterator().next());
} catch (final Exception e) {
return false;
}
}));
// =======================================================
return nman;
}
use of net.dempsy.lifecycle.annotation.utils.KeyExtractor in project Dempsy by Dempsy.
the class TestElasticity method testForProfiler.
@Test
public void testForProfiler() throws Throwable {
try {
// set up the test.
final Number[] numbers = new Number[profilerTestNumberCount];
final Random random = new Random();
for (int i = 0; i < numbers.length; i++) numbers[i] = new Number(random.nextInt(1000), 0);
final KeyExtractor ke = new KeyExtractor();
runCombos("testForProfiler", (r, c, s, t, ser) -> isElasticRoutingStrategy(r), actxPath, new String[][][] { null, { { "min_nodes", "3" } }, { { "min_nodes", "3" } }, { { "min_nodes", "3" } }, null }, ns -> {
final List<NodeManagerWithContext> nodes = ns.nodes;
// Grab the one NumberRank Mp from the single Node in the third (0 base 2nd) cluster.
final NumberRank rank = nodes.get(4).ctx.getBean(NumberRank.class);
try (final ClusterInfoSession session = ns.sessionFactory.createSession()) {
waitForEvenShardDistribution(session, "test-cluster1", 3, nodes);
// get the Adaptor Router's statCollector
final List<NodeMetricGetters> scs = nodes.stream().map(nwm -> nwm.manager).map(nm -> nm.getNodeStatsCollector()).map(sc -> (NodeMetricGetters) sc).collect(Collectors.toList());
// grab the adaptor from the 0'th cluster + the 0'th (only) node.
final NumberProducer adaptor = nodes.get(0).ctx.getBean(NumberProducer.class);
// grab access to the Dispatcher from the Adaptor
final Dispatcher dispatcher = adaptor.dispatcher;
final long startTime = System.currentTimeMillis();
for (int i = 0; i < numbers.length; i++) dispatcher.dispatch(ke.extract(numbers[i]));
LOGGER.info("====> Checking exact count.");
// keep going as long as they are trickling in.
assertTrue(() -> {
IntStream.range(0, scs.size()).forEach(i -> {
System.out.println("======> " + i);
final NodeMetricGetters mg = scs.get(i);
if (mg != null) {
System.out.println("discarded: " + mg.getDiscardedMessageCount());
System.out.println("not sent: " + mg.getMessagesNotSentCount());
}
});
return "expected: " + profilerTestNumberCount + " but was: " + (rank.totalMessages.get() + scs.get(0).getMessagesNotSentCount()) + ", (delivered: " + rank.totalMessages.get() + ", not sent: " + scs.get(0).getMessagesNotSentCount() + ")";
}, poll(o -> profilerTestNumberCount == (rank.totalMessages.get() + scs.stream().map(sc -> new Long(sc.getMessagesNotSentCount())).reduce(new Long(0), (v1, v2) -> new Long(v1.longValue() + v2.longValue()).longValue()))));
// assert that at least SOMETHING went through
assertTrue(rank.totalMessages.get() > 0);
LOGGER.info("testForProfiler time " + (System.currentTimeMillis() - startTime));
@SuppressWarnings("unchecked") final AtomicLong count = nodes.stream().map(// get the NumberCounter Mp
nmwc -> (MessageProcessor<NumberCounter>) nmwc.manager.getMp("test-cluster1")).filter(// if it exists
l -> l != null).map(// pull the prototype
l -> l.getPrototype().messageCount).reduce(new AtomicLong(0), // sum up all of the counts
(v1, v2) -> new AtomicLong(v1.get() + v2.get()));
assertEquals(profilerTestNumberCount, count.get());
}
});
} catch (final Throwable th) {
th.printStackTrace();
throw th;
}
}
Aggregations