You need to sign in to do that
Don't have an account?
asynchronous apex limits questions
I'm sure these questions have been covered somewhere on this board, but I could not find them via search...
1. Is the limit for @future calls 200 per org per 24 hours OR 200 per license per 24 hours?
2. If it's 200 per org per 24 hours, can this limit be raised?
3. Lastly, I have a trigger on leads that calls an @future class after insert and when I check the apex job queue, hundreds of jobs show up in the queue even when we load a list of 500 or so leads via the import wizard. For a list of 500 or so leads, wouldn't that only generate 3 @future calls, assuming the batch size is 200? (and yes, I've written the aforementioned trigger for bulk processing)
Thanks in advance!!
1. Is the limit for @future calls 200 per org per 24 hours OR 200 per license per 24 hours?
2. If it's 200 per org per 24 hours, can this limit be raised?
3. Lastly, I have a trigger on leads that calls an @future class after insert and when I check the apex job queue, hundreds of jobs show up in the queue even when we load a list of 500 or so leads via the import wizard. For a list of 500 or so leads, wouldn't that only generate 3 @future calls, assuming the batch size is 200? (and yes, I've written the aforementioned trigger for bulk processing)
Thanks in advance!!
3) Not sure, I'd have to see how you're making the @future call.
my async method "routeLeads" does not call any other methods. is the reasoning in the third point of my first post incorrect?
"No more than 200 method calls per Salesforce license per 24 hours" in the @future annotations documentation
AND
"Salesforce also imposes an organization-wide limit of 200 method calls with the future annotation per 24 hours." in the governor limits documentation