Good morning all - hoping that you can help me; I’ve got a fairly lengthy workbench which we run daily updating our internal data warehouse from a variety of sources. due to the complexisty, there are several no features testers included in the workbench which continue the translation when no data feeds in at certain points. However, there are certain instances where we would want the translation to stop (no new source file available, source system not ready for update etc.). We currently use terminators in order to stop the subsequent no features testers from triggering - however it would make it easier for us to keep on top of our monitoring if this didn’t then appear as a failed job in our server log - is there any alternative way of stopping the translation without it appearing as a fail?
Terminator alternative
Best answer by jkr_wrk
Breaking down the workbench into multiple workbenches and use workspaceRunners could help keep the overview?
If you build your workbench with
If you don't run the workbench with FeatureCaching enabled you could also use VariableSetters and VariableRetrievers. If there is a trigger that concludes that parts do not have to run you set a NoRun variable in the VariableSetter and a VariableRetriever to test if NoRun is true and test if the NoRun is true to block the features.
In my case workbenches look like this:
Creator → FeatureReader → do stuff → Sampler (1) → Keeper → other FeatureReader → do more stuff → FeatureWriter → Sampler (1) → Keeper → FeatureReader etc.
This way I only read additional features if this is needed. I hate it if my workbench is reading many features first to find out that my input (first reader) is wrong to begin with.
And if you only want to proceed if something reads 0, 1 or more than 1 feature you test with a FeatureMerger solution and use that output as the next trigger.
Rebuilding an existing workbench could indeed be harder.
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.