use of com.hortonworks.streamline.streams.runtime.rule.action.ActionRuntimeContext in project streamline by hortonworks.
the class SplitJoinTest method runSplitJoin.
protected void runSplitJoin(SplitAction splitAction, JoinAction joinAction, Map<String, Object> config) {
SplitActionRuntime splitActionRuntime = new SplitActionRuntime(splitAction);
splitActionRuntime.setActionRuntimeContext(new ActionRuntimeContext(null, splitAction));
splitActionRuntime.initialize(config);
StreamlineEvent event = createRootEvent();
final List<Result> results = splitActionRuntime.execute(event);
JoinActionRuntime joinActionRuntime = new JoinActionRuntime(joinAction);
joinActionRuntime.setActionRuntimeContext(new ActionRuntimeContext(null, joinAction));
joinActionRuntime.initialize(config);
List<Result> effectiveResult = null;
for (Result result : results) {
for (StreamlineEvent e : result.events) {
List<Result> processedResult = joinActionRuntime.execute(e);
if (processedResult != null) {
effectiveResult = processedResult;
}
}
}
Assert.assertNotNull(effectiveResult);
}
use of com.hortonworks.streamline.streams.runtime.rule.action.ActionRuntimeContext in project streamline by hortonworks.
the class SplitJoinTest method testStageProcessor.
@Test
public void testStageProcessor() {
final String enrichFieldName = "foo";
final String enrichedValue = "foo-enriched-value";
Map<Object, Object> data = new HashMap<Object, Object>() {
{
put("foo-value", enrichedValue);
}
};
InmemoryTransformDataProvider transformDataProvider = new InmemoryTransformDataProvider(data);
EnrichmentTransform enrichmentTransform = new EnrichmentTransform("enricher", Collections.singletonList(enrichFieldName), transformDataProvider);
StageAction stageAction = new StageAction(Collections.<Transform>singletonList(enrichmentTransform));
stageAction.setOutputStreams(Collections.singleton("output-stream"));
StageActionRuntime stageActionRuntime = new StageActionRuntime(stageAction);
stageActionRuntime.setActionRuntimeContext(new ActionRuntimeContext(null, stageAction));
stageActionRuntime.initialize(Collections.<String, Object>emptyMap());
final List<Result> results = stageActionRuntime.execute(createRootEvent());
for (Result result : results) {
for (StreamlineEvent event : result.events) {
final Map enrichments = (Map) event.getAuxiliaryFieldsAndValues().get(EnrichmentTransform.ENRICHMENTS_FIELD_NAME);
Assert.assertEquals(enrichments.get(enrichFieldName), enrichedValue);
}
}
}
use of com.hortonworks.streamline.streams.runtime.rule.action.ActionRuntimeContext in project streamline by hortonworks.
the class SplitJoinTest method testStageProcessorWithRules.
@Test
public void testStageProcessorWithRules() {
final String enrichFieldName = "foo";
final String enrichedValue = "foo-enriched-value";
Map<Object, Object> data = new HashMap<Object, Object>() {
{
put("foo-value", enrichedValue);
}
};
InmemoryTransformDataProvider transformDataProvider = new InmemoryTransformDataProvider(data);
EnrichmentTransform enrichmentTransform = new EnrichmentTransform("enricher", Collections.singletonList(enrichFieldName), transformDataProvider);
StageAction stageAction = new StageAction(Collections.<Transform>singletonList(enrichmentTransform));
SplitJoinRule stageRule = new SplitJoinRule("stage-1", stageAction, Collections.singleton("output-stream"));
StageActionRuntime stageActionRuntime = new StageActionRuntime(stageAction);
stageActionRuntime.setActionRuntimeContext(new ActionRuntimeContext(stageRule, stageAction));
stageActionRuntime.initialize(Collections.<String, Object>emptyMap());
final List<Result> results = stageActionRuntime.execute(createRootEvent());
for (Result result : results) {
for (StreamlineEvent event : result.events) {
final Map enrichments = (Map) event.getAuxiliaryFieldsAndValues().get(EnrichmentTransform.ENRICHMENTS_FIELD_NAME);
Assert.assertEquals(enrichments.get(enrichFieldName), enrichedValue);
}
}
}
use of com.hortonworks.streamline.streams.runtime.rule.action.ActionRuntimeContext in project streamline by hortonworks.
the class SplitJoinTest method runSplitJoin.
private void runSplitJoin(SplitJoinRule splitRule, SplitJoinRule joinRule, Map<String, Object> config) {
final SplitAction splitAction = (SplitAction) splitRule.getAction();
SplitActionRuntime splitActionRuntime = new SplitActionRuntime(splitAction);
splitActionRuntime.setActionRuntimeContext(new ActionRuntimeContext(splitRule, splitAction));
splitActionRuntime.initialize(config);
StreamlineEvent streamlineEvent = createRootEvent();
final List<Result> results = splitActionRuntime.execute(streamlineEvent);
JoinAction joinAction = (JoinAction) joinRule.getAction();
JoinActionRuntime joinActionRuntime = new JoinActionRuntime(joinAction);
joinActionRuntime.setActionRuntimeContext(new ActionRuntimeContext(joinRule, joinAction));
joinActionRuntime.initialize(config);
List<Result> effectiveResult = null;
for (Result result : results) {
for (StreamlineEvent event : result.events) {
List<Result> processedResult = joinActionRuntime.execute(event);
if (processedResult != null) {
effectiveResult = processedResult;
}
}
}
Assert.assertNotNull(effectiveResult);
}
use of com.hortonworks.streamline.streams.runtime.rule.action.ActionRuntimeContext in project streamline by hortonworks.
the class RuleProcessorRuntime method createActionRuntimes.
private List<ActionRuntime> createActionRuntimes(Rule rule) {
List<ActionRuntime> runtimeActions = new ArrayList<>();
for (Action action : rule.getActions()) {
final ActionRuntime actionRuntime = ActionRuntimeService.get().get(action);
actionRuntime.setActionRuntimeContext(new ActionRuntimeContext(rule, action));
runtimeActions.add(actionRuntime);
}
return runtimeActions;
}
Aggregations