DIAdem

cancel
Showing results for 
Search instead for 
Did you mean: 

Analysis Server DDD file used?

Solved!
Go to solution

 

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

0 Kudos
Message 1 of 3
(2,725 Views)

 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.

 

 

 

0 Kudos
Message 2 of 3
(2,724 Views)
Solution
Accepted by topic author Pesmith8

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)

 

Message 3 of 3
(2,695 Views)