10-21-2018 01:24 PM
Just a little question about the Analysis Server,
Given that the Analysis server runs a headless DIAdem instance in parallel/serial, and that DIAdem uses a .DDD file for loading its settings.
What DDD file will be loaded when a Analysis Procedure is ran in Comparative or Parallel?
This also, I am assuming will affect Worker objects.
I guess I am really asking how some of the settings in the DDD file will be configured when running worker and Analysis Packets in the Analysis Server.
Paul
Solved! Go to Solution.
10-21-2018 01:28 PM
A related question
In the DDD File for Navigator, are able to select the loading configuration. for my use case, I will load all the file level props to the group levels.
When are running a Analysis procedure or worker, how will this setting be configured, or how should I configure it so that when the Analysis procedure runs, and loads the data the file props will be copied to group level.
10-22-2018 03:11 AM
I assume it would be a good idea to get rid of the settings dependencies by defining the load behavior using the import object.
Option Explicit Call Data.Root.Clear() Dim impParams : set impParams = Navigator.Settings.CreateImportParameter("Load") impParams.PropertyHandling.InheritanceMode = eInheritanceMoveToLoadedLevel impParams.LoadReturnMode = eLoadReturnGroupElements impParams.PropertyHandling.InheritanceSeparator = ePropInheritanceSeparatorUnderscore Call DataFileLoad(ProgramDrv & "Examples\Data\Brake_Test_001.tdm","TDM", impParams) Call DataFileLoad(ProgramDrv & "Examples\Data\Brake_Test_002.tdm","TDM", impParams)