SaveDataAll interfering with other TI Process
Posted: Tue Dec 17, 2013 11:05 am
We have a situation repeating for last few days, where in a TI process that exports data from a cube into SQL table, is unable to load any rows - when executed as a chore. However, when run independently it is able to load the table with desired number of rows!
Looking at the log files, something that jumped out was that SaveDataAll was executed (by a separate chore) about a sec or 2 later. It took precedence, completed the work and then the export process finished its job.
This TI Process:
So far I have tried to:
I'd appreciate your input. Thanks.
Looking at the log files, something that jumped out was that SaveDataAll was executed (by a separate chore) about a sec or 2 later. It took precedence, completed the work and then the export process finished its job.
This TI Process:
- Reads data from cube and puts it into a file
- Truncates the table
- Inserts rows into the table from file
Code: Select all
3268 [] INFO 2013-12-17 03:52:50.910 TM1.Process Process EXPORT_DC executed by chore ExportChore
3768 [] INFO 2013-12-17 03:53:52.036 TM1.Chore Chore "SaveDataAll" executed by scheduler
3768 [] INFO 2013-12-17 03:53:52.036 TM1.Process Process zSaveDataAll executed by chore SaveDataAll
3768 [] INFO 2013-12-17 03:53:52.177 TM1.Process Process "zSaveDataAll": finished executing normally, elapsed time 0.14 seconds
3768 [] INFO 2013-12-17 03:53:52.177 TM1.Chore Chore "SaveDataAll" time = 0.14 seconds
3768 [] INFO 2013-12-17 03:53:52.177 TM1.Chore Chore "SaveDataAll" finished executing
3268 [] INFO 2013-12-17 03:55:57.991 TM1.Process Process "EXPORT_DC": finished executing normally, elapsed time 187.08 seconds
- Run the TI process with my id multiple times and it works
- Schedule it as a separate chore and it works!
I'd appreciate your input. Thanks.