use of io.siddhi.core.util.config.InMemoryConfigManager in project siddhi by wso2.
the class MultiClientDistributedSinkTestCase method singleClientBroadcastWithRef.
@Test(dependsOnMethods = { "multiClientFailingBroadcast4" })
public void singleClientBroadcastWithRef() throws InterruptedException {
log.info("Test inMemorySink And EventMapping With SiddhiQL Dynamic Params with ref");
InMemoryBroker.Subscriber subscriptionWSO2 = new InMemoryBroker.Subscriber() {
@Override
public void onMessage(Object msg) {
topic1Count.incrementAndGet();
}
@Override
public String getTopic() {
return "topic1";
}
};
InMemoryBroker.Subscriber subscriptionIBM = new InMemoryBroker.Subscriber() {
@Override
public void onMessage(Object msg) {
topic2Count.incrementAndGet();
}
@Override
public String getTopic() {
return "topic2";
}
};
// subscribe to "inMemory" broker per topic
InMemoryBroker.subscribe(subscriptionWSO2);
InMemoryBroker.subscribe(subscriptionIBM);
String streams = "" + "@app:name('TestSiddhiApp')" + "define stream FooStream (symbol string, price float, volume long); " + "@sink(ref='test1', @map(type='passThrough'), " + " @distribution(strategy='broadcast'," + " @destination(ref='test2'), " + " @destination(ref='test3'))) " + "define stream BarStream (symbol string, price float, volume long); ";
String query = "" + "from FooStream " + "select * " + "insert into BarStream; ";
Map<String, String> systemConfigs = new HashMap<>();
systemConfigs.put("test1.type", "testInMemory");
systemConfigs.put("test2.topic", "topic1");
systemConfigs.put("test3.topic", "topic2");
InMemoryConfigManager inMemoryConfigManager = new InMemoryConfigManager(null, systemConfigs);
SiddhiManager siddhiManager = new SiddhiManager();
siddhiManager.setConfigManager(inMemoryConfigManager);
SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(streams + query);
try {
InputHandler stockStream = siddhiAppRuntime.getInputHandler("FooStream");
siddhiAppRuntime.start();
stockStream.send(new Object[] { "WSO2", 55.6f, 100L });
stockStream.send(new Object[] { "IBM", 75.6f, 100L });
stockStream.send(new Object[] { "WSO2", 57.6f, 100L });
stockStream.send(new Object[] { "IBM", 57.6f, 100L });
stockStream.send(new Object[] { "WSO2", 57.6f, 100L });
stockStream.send(new Object[] { "WSO2", 57.6f, 100L });
Thread.sleep(100);
// assert event count
AssertJUnit.assertEquals("Number of topic 1 events", 6, topic1Count.get());
AssertJUnit.assertEquals("Number of topic 2 events", 6, topic2Count.get());
} finally {
siddhiAppRuntime.shutdown();
// unsubscribe from "inMemory" broker per topic
InMemoryBroker.unsubscribe(subscriptionWSO2);
InMemoryBroker.unsubscribe(subscriptionIBM);
}
}
use of io.siddhi.core.util.config.InMemoryConfigManager in project siddhi by wso2.
the class Aggregation2TestCase method incrementalStreamProcessorTest5SGTTimeZoneDay2.
@Test(dependsOnMethods = { "incrementalStreamProcessorTest5SGTTimeZoneDay" })
public void incrementalStreamProcessorTest5SGTTimeZoneDay2() throws InterruptedException {
// feb 29 leap
LOG.info("incrementalStreamProcessorTest5");
SiddhiManager siddhiManager = new SiddhiManager();
Map<String, String> systemConfigs = new HashMap<>();
systemConfigs.put("aggTimeZone", "Asia/Singapore");
ConfigManager configManager = new InMemoryConfigManager(null, null, systemConfigs);
siddhiManager.setConfigManager(configManager);
String stockStream = "define stream stockStream (symbol string, price float, timestamp long);";
String query = " define aggregation stockAggregation " + "from stockStream " + "select symbol, avg(price) as avgPrice " + "group by symbol " + "aggregate by timestamp every day ;";
SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(stockStream + query);
InputHandler stockStreamInputHandler = siddhiAppRuntime.getInputHandler("stockStream");
siddhiAppRuntime.start();
// Saturday February 29, 2020 00:00:01 (am) in time zone Asia/Singapore (+08)
stockStreamInputHandler.send(new Object[] { "WSO2", 50f, 1582905601000L });
// Saturday February 29, 2020 23:59:59 (pm) in time zone Asia/Singapore (+08)
stockStreamInputHandler.send(new Object[] { "WSO2", 70f, 1582991999000L });
// Sunday March 01, 2020 00:00:01 (am) in time zone Asia/Singapore (+08)
stockStreamInputHandler.send(new Object[] { "WSO2", 80f, 1582992001000L });
Thread.sleep(2000);
Event[] events = siddhiAppRuntime.query("from stockAggregation " + "within \"2020-**-** **:**:**\" " + "per \"day\"");
EventPrinter.print(events);
Assert.assertNotNull(events, "Queried results cannot be null.");
AssertJUnit.assertEquals(2, events.length);
List<Object[]> eventsOutputList = new ArrayList<>();
for (Event event : events) {
eventsOutputList.add(event.getData());
}
List<Object[]> expected = Arrays.asList(new Object[] { 1582905600000L, "WSO2", 60.0 }, new Object[] { 1582992000000L, "WSO2", 80.0 });
AssertJUnit.assertTrue("In events matched", SiddhiTestHelper.isUnsortedEventsMatch(eventsOutputList, expected));
siddhiAppRuntime.shutdown();
}
use of io.siddhi.core.util.config.InMemoryConfigManager in project siddhi by wso2.
the class Aggregation2TestCase method incrementalStreamProcessorTest56.
@Test(dependsOnMethods = { "incrementalStreamProcessorTest55" }, expectedExceptions = SiddhiAppCreationException.class)
public void incrementalStreamProcessorTest56() {
Map<String, String> propertiesMap = new HashMap<>();
propertiesMap.put("partitionById", "true");
InMemoryConfigManager inMemoryConfigManager = new InMemoryConfigManager(null, null, propertiesMap);
LOG.info("incrementalStreamProcessorTest55 - Checking partitionbyid system param overriding");
SiddhiManager siddhiManager = new SiddhiManager();
siddhiManager.setConfigManager(inMemoryConfigManager);
String stockStream = "define stream stockStream (symbol string, price float, lastClosingPrice float, volume long , " + "quantity int);\n";
String query = "" + "define aggregation stockAggregation " + "from stockStream " + "select avg(price) as avgPrice, sum(price) as totalPrice, (price * quantity) " + "as lastTradeValue " + "aggregate every sec...year; ";
SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(stockStream + query);
siddhiAppRuntime.start();
}
use of io.siddhi.core.util.config.InMemoryConfigManager in project siddhi by wso2.
the class Aggregation2TestCase method incrementalStreamProcessorTestInvalidTimeZone.
@Test(dependsOnMethods = { "incrementalStreamProcessorTest5SGTTimeZoneYear" }, expectedExceptions = SiddhiAppCreationException.class)
public void incrementalStreamProcessorTestInvalidTimeZone() throws InterruptedException {
LOG.info("incrementalStreamProcessorTest5");
SiddhiManager siddhiManager = new SiddhiManager();
Map<String, String> configMap = new HashMap<>();
configMap.put("aggTimeZone", "Asia/Singapo");
ConfigManager configManager = new InMemoryConfigManager(null, null, configMap);
siddhiManager.setConfigManager(configManager);
String stockStream = "define stream stockStream (symbol string, price float, timestamp long);";
String query = " define aggregation stockAggregation " + "from stockStream " + "select symbol, avg(price) as avgPrice " + "group by symbol " + "aggregate by timestamp every year ;";
SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(stockStream + query);
siddhiAppRuntime.shutdown();
}
use of io.siddhi.core.util.config.InMemoryConfigManager in project siddhi by wso2.
the class Aggregation2TestCase method incrementalStreamProcessorTest5SGTTimeZoneYear.
@Test(dependsOnMethods = { "incrementalStreamProcessorTest5SGTTimeZoneMonth" })
public void incrementalStreamProcessorTest5SGTTimeZoneYear() throws InterruptedException {
LOG.info("incrementalStreamProcessorTest5");
SiddhiManager siddhiManager = new SiddhiManager();
Map<String, String> configMap = new HashMap<>();
configMap.put("aggTimeZone", "Asia/Singapore");
ConfigManager configManager = new InMemoryConfigManager(null, null, configMap);
siddhiManager.setConfigManager(configManager);
String stockStream = "define stream stockStream (symbol string, price float, timestamp long);";
String query = " define aggregation stockAggregation " + "from stockStream " + "select symbol, avg(price) as avgPrice " + "group by symbol " + "aggregate by timestamp every year ;";
SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(stockStream + query);
// siddhiAppRuntime.
InputHandler stockStreamInputHandler = siddhiAppRuntime.getInputHandler("stockStream");
siddhiAppRuntime.start();
// Tuesday January 01, 2019 00:00:01 (am) in time zone Asia/Singapore (+08)
stockStreamInputHandler.send(new Object[] { "WSO2", 50f, 1546272001000L });
// Tuesday December 31, 2019 23:59:59 (pm) in time zone Asia/Singapore (+08)
stockStreamInputHandler.send(new Object[] { "WSO2", 70f, 1577807999000L });
// Wednesday January 01, 2020 00:00:01 (am) in time zone Asia/Singapore (+08)
stockStreamInputHandler.send(new Object[] { "WSO2", 80f, 1577808001000L });
Thread.sleep(2000);
Event[] events = siddhiAppRuntime.query("from stockAggregation " + "within \"2018-**-** **:**:**\" " + "per \"year\"");
EventPrinter.print(events);
Assert.assertNotNull(events, "Queried results cannot be null.");
AssertJUnit.assertEquals(1, events.length);
List<Object[]> eventsOutputList = new ArrayList<>();
for (Event event : events) {
eventsOutputList.add(event.getData());
}
List<Object[]> expected = new ArrayList<>();
expected.add(new Object[] { 1546272000000L, "WSO2", 60.0 });
AssertJUnit.assertTrue("In events matched", SiddhiTestHelper.isUnsortedEventsMatch(eventsOutputList, expected));
siddhiAppRuntime.shutdown();
}
Aggregations