Hi Andre,
I have three questions please:
So even for import there is no limit unless we specify to split them to more than one job Right? And where can i find this execution parameter?
Also regarding the workflow job that u said has 100 task..is this found in every production environment? And how many times does it run? Is it recurring?
Now the reason i'm asking all those questions is to try and understand an issue i'm facing
Currently, when a button is clicked to post let's say for example a journal. I have a sysOperationFramework service with reliable async execution mode, that exports a composite entity, inserts in custom table that works as change tracking and sends the exported file to azure blob(in addition to few logic)
This is done so that files reach customer in real time. And this is working quickly in my dev box taking between 10 -15 seconds.
Now in prod, we are having a performance issue where people are saying that it takes more than one minute for the file to reach the customer.
I've looked at few examples and indeed i can see that the difference between the modifiedDateTime for the posting of the journal And the createdDateTime for inserting in my custom table which is done inside the batch after the posting, is sometimes more than 2 minutes!! And there are cases where it's quick.
And that made me wonder if batch jobs limit has something to do with it. Any idea? And what should i do in thus case?
Please note that there is also recurring job that works each min for the same composite entity.
So what happens is, in general, when the journal gets posted, the sysOperationFramework service inserts a record in the custom table and based on some logic, it detects if this journal should be sent real time or batch. If it was real time, it will export the entity now and send to azure blob. If not, it will wait for recurring job to pick it up (where recurring job is running every 1 min)
(there is a filter on the recurring data project and the real time date project based on status so that one exports real time records and the other one exports batch records)