...
In the global properties
Config Example |
|
|---|
For all internal Delft-FEWS modules that have been tested no changes are needed to the configuration. For external modules that are run using the General adapter some changes may be needed to the configuration.
Tested modules
Module | Remarks |
|---|---|
Transformation (old) | Test ok |
Interpolation | Test ok. Interpolation via DLL not tested |
TransformationModule (new) | Test ok. Interpolation via DLL not tested |
pcrTransformation | Test ok |
General Adapter | test ok |
Sample input and output (with explanation of all options)
An example for parallel running an import and then processing of the import modules is:
...
<parallel>
<activity>
<runIndependent>true</runIndependent>
<moduleInstanceId>Import1</moduleInstanceId>
</activity>
<activity>
<runIndependent>true</runIndependent>
<moduleInstanceId>Import2</moduleInstanceId>
</activity>
<activity>
<runIndependent>true</runIndependent>
<moduleInstanceId>Import3</moduleInstanceId>
</activity>
</parallel>
<activity>
<runIndependent>true</runIndependent>
<moduleInstanceId>CombineImports</moduleInstanceId>
</activity>
<activity>
<runIndependent>true</runIndependent>
<moduleInstanceId>SpatialInterpolation</moduleInstanceId>
</activity>
| Info | ||
|---|---|---|
| ||
Please note that it is essential to change the configuration of the <rootDir> in the GeneralAdapter. A rootDir needs to be configured per ensembleMember. This can be done in two ways:
The latter gives you more control (e.g. in a stand-alone environment), because all folders remain after the run. Obvious downside is that this option takes up more storage. |
In this example the imports are run in parallel (as many as the runInLoopParallelProcessorCount is defined). Once they are all ready, the postprocessing modules are performed.
Another example for running a SobekRE model requires more advanced configuration. It is possible to run in parallel the sobek models, but the preprocessor of the adapter is not thread safe. So we need to ensure that the preprocessor (that converts the PI-timeseries into model) never runs in parallel.
The workflow shows:
...
<activity>
<runIndependent>false</runIndependent>
<moduleInstanceId>Sobek_Prep</moduleInstanceId>
<ensemble>
<ensembleId>EPS</ensembleId>
<runInLoop>true</runInLoop>
</ensemble>
</activity>
<activity>
<runIndependent>false</runIndependent>
<moduleInstanceId>Sobek_GA</moduleInstanceId>
<ensemble>
<ensembleId>EPS</ensembleId>
<runInLoop>true</runInLoop>
</ensemble>
</activity>
<activity>
<runIndependent>true</runIndependent>
<moduleInstanceId>Sobek_Post</moduleInstanceId>
</activity>
The workflow first runs the Sobek_Prep module for each ensemble member individually. You can also run the Sobek_prep in one go (like the Sobek_Post). In that case the whole ensemble is looped in the transformation module itselves but that requires more RAM and does not use multiple threading.
The next module Sobek_GA runs the sobek model for each individual ensemble member. See the details for sobek below. The last module Sobek_Post is run in one go. Here defined as an example, but probably it is more efficient to run this activity also in parallel like the Sobek_Prep for performance reasons.
...
|
Notice that it is ensured that the preprocessor does not run in parallel with another ensemblemember by defining the element waitForOtherRun=true.
In this example the next global.properties should be defined:
| No Format |
|---|
runInLoopParallelProcessorCount=2
|
This makes that maximum 2 threads are used and the Sobek runs are performed in temporary directories that are created in regionhome/temp/session. These directories are removed after running. The directories are filled with data that you should export from a moduledataset. Notice that purgeActivities will not work therefore. When running in debug mode the temp is deleted when closing FEWS instead when the run is finished
In a test using 2 CPU the total run of the whole ensemble reduced from exactly 900 seconds to 546 seconds.
Internal variables
You can use in any filename or directory the properties from the global.properties file or the next internal variables:
...
The colon characters ":" will be replaced by an underscore "_". Use the internal variables with % characters (like %TEMP_DIR%) and the global.properties variables with $ characters (like e.g. $DUMP_DIR$).
Combination of ensembles and normal time series
You may have a combination of for example a rainfall ensemble with other non-ensemble timeseries (like structure operation or boundary levels). In case you run an ensemble with the runInLoop option at workflow level by default all timeseries are used from the defined ensembleId and member, also for a non-ensemble timeseries. That means that you should configure transformations to create also an ensemble of your non-ensemble series, which is of course not convenient. To enable non-ensemble timeseries FEWS has an option that overrules the ensemble member forcing at workflow level. Therefore you define for the non-ensemble series the fixed ensembleId "main". This is a "virtual" ensemble.
A configuration example:
|
Error and warning messages
Description of errors and warnings that may be generated
Error: | Error message |
|---|---|
Action: | Action to fix |
Known issues
- Running modules in parallel means you will use more memory
In some cases, the increase in speed may be very limited. Although it depends on a case by case basis the following simple rules may be used to determine the experted increase in execution speed:
- execution time of an individual module <= 1 sec: expected increase < 20%
- execution time of an individual module > 1 sec < 10: expected increase between 20 and 50%
- execution time of an individual module > 10 sec: expected increase > 50 % and < 100 %
The percentage given in the list above should be scaled using the amount of cores used. The 100% in the example above is a two-fold increase using two cores.
Other factors that influence this are the amount of data being retrieved and store in the FEWS database in relation to the total execution time and (in the case of an external module) the amount of data written to and read from the file system.
Related modules and documentation
Links to related parts of the system
Technical reference
...
Entry in moduleDescriptors:
...
none
...
Link to schema:
...
|