I have a job that is triggered Friday night and runs until Sunday night.
Sometimes it end with status Faulted.This should be impossible, since I’m using the REFramework. When I look into the Job Details, it just says “Info: Job stopped with an unexpected exit code: 0xE0434352”. I don’t know why this keeps happening.
When i look into the logs, it doesn’t end with any logs of level Error or Fatal or even a Warning. It seems like the execution just randomly stops.
Can you delete all excel processes from task Manager first and then run your workflow and if still doesn’t work may be the file is corrupted or Large Amount of Data in Excel So copy the same file information in another excel and then run and see if you are still receiving the error.
The only usage of Excel files is when the REFramework reads the config file (which is definetely not that big). Microsoft Excel is not even installed (the Excel reading is done using the workbook activity that doesn’t need the Excel app installed) so there are no processes to in the Task Manager.
Having the job split in two seems to have helped. Now, instead of a Trigger that is scheduled to stop the job after 24 hours, I have two triggers as follows:
First trigger starts a job at 12:00AM and is scheduled to stop after 11h 40minutes.
20 minute break to let the machine “cool down”.
Second trigger starts a job at 12:00PM and is scheduled to stop after 11h 40minutes.
My general feeling is that the machine was running out of resources at random times. This seems to have solved the issue for now. Will keep replying here if I discover anything new.