You need to sign in to do that
Don't have an account?

How many batches can be processed simultaneouly by Salesforce?
Hello there,
I wonder if salesforce's Apex runtime can process batches of two different classes at the same time (simultaneouly)? If yes, can we track using AsyncApexJob which class is executing current batch?
Thanks in advance.
I wonder if salesforce's Apex runtime can process batches of two different classes at the same time (simultaneouly)? If yes, can we track using AsyncApexJob which class is executing current batch?
Thanks in advance.
Batch Apex can have 5 concurrent (simultaneous) jobs running in parallel.
For more info
https://help.salesforce.com/apex/HTViewSolution?id=000182449
All Answers
Batch Apex can have 5 concurrent (simultaneous) jobs running in parallel.
For more info
https://help.salesforce.com/apex/HTViewSolution?id=000182449
Thanks for the response.