Good Morning Sir,
I am confused about multi commit which commits each process individually whereas synchronize and serialize functions seems to be doing the same.
What is the difference between them and what situation each should be use? Please explain.
Muti commit ,synchronize and serialize
-
- Posts: 43
- Joined: Fri Aug 01, 2014 5:17 pm
- OLAP Product: Cognos
- Version: 10.1.1
- Excel Version: 2010
Re: Muti commit ,synchronize and serialize
anybody please.
-
- MVP
- Posts: 264
- Joined: Mon Nov 03, 2014 8:23 pm
- OLAP Product: TM1
- Version: 9.5.2 10.1 10.2 PA2
- Excel Version: 2016
Re: Muti commit ,synchronize and serialize
I don't fully understand the question, but I'll explain what I can anyway.
Multi commit mode is an option for CHORES. The default behavior (single commit mode) commits/saves/publishes all changes from all the chore TI processes once after the entire chore has finished running. When multiple commit mode is enabled there is a commit/save/publish done in between each TI that's part of the chore.
Synchronize is a function that can be used in a TI script. You can think of it as a mutex operator. You specify it with a string such as TM1 will only allow a single TI process to execute at a given time that contains the exact same string parameter.
There is no relationship between the chore multiple commit mode option and the synchronize TI function.
I have no idea what 'serialize' function you are referring to.
Multi commit mode is an option for CHORES. The default behavior (single commit mode) commits/saves/publishes all changes from all the chore TI processes once after the entire chore has finished running. When multiple commit mode is enabled there is a commit/save/publish done in between each TI that's part of the chore.
Synchronize is a function that can be used in a TI script. You can think of it as a mutex operator. You specify it with a string such as
Code: Select all
Synchronize('foo');
There is no relationship between the chore multiple commit mode option and the synchronize TI function.
I have no idea what 'serialize' function you are referring to.
-
- Posts: 43
- Joined: Fri Aug 01, 2014 5:17 pm
- OLAP Product: Cognos
- Version: 10.1.1
- Excel Version: 2010
Re: Muti commit ,synchronize and serialize
Thanks for your help BrianL.