Page 1 of 1

Checkpoint restart in TI process

Posted: Tue May 29, 2012 11:30 am
by rahul1tm1
Hi All,

Is there any checkpoint restart in TI process? Can such logic be implemented by intermittently comitting long batch process (with some finite UOW) so that work is not lost in case of process aborts or hangs.

Thanks,
Rahul

Re: Checkpoint restart in TI process

Posted: Tue May 29, 2012 11:41 am
by tomok
No, not inside a single process. If your processing can be split into several distinct TI processes you could group them together in a chore and have a SaveDataAll interpersed between the different processes,

Re: Checkpoint restart in TI process

Posted: Tue May 29, 2012 12:28 pm
by rahul1tm1
tomok wrote:No, not inside a single process. If your processing can be split into several distinct TI processes you could group them together in a chore and have a SaveDataAll interpersed between the different processes,
Thanks!