06-22-2016 05:47 PM
Hello, we are using an Avalon server for our ASAM database. If I use parralel processes, and each worker connects to the database independentantly, will they pull data seperately? Does it matter if the connection strings used are identical? Do you know if it will pull multiple licenses?
Thanks.
06-23-2016 05:54 AM
Hi Russel, you can treat a DIAdem worker as a whole DIAdem started in parallel by the DIAdem master (neglecting some details like UI,....).
This being said, you can use the same connection string to your ASAM server in your DIAdem worker.
Each worker will pull data seperately.
This has no influence on DIAdem licenses - I can't tell for Avalon.
06-27-2016 02:35 AM
It is like Stefan said:
To share a session with its workers
If the current Session was opened with
<additionalauth>CREATE_COSESSION_ALLOWED=TRUE</additionalauth>
the Session IOR can be retrived and be shared with the worker
dim sIOR : sIOR = store.GetContext(300).GetParameter("SESSIONIOR")
if the store is opened with
<corba typ="sessionior">IOR....</corba><createcosession>yes</createcosession>
this will still opne a new session on the server but authentification has to be done only once.