What are the Best practices to follow in Batch Apex?
These are a few best practices we need to follow when we work with Batch Apex code.
Whenever we try to work with batch Apex there are a couple of things that we need to keep in mind.
We are not supposed to write all the complex code that we write in Apex classes within batch apex.
We will be looking at a couple of bottlenecks that we will be coming across when we try to work with inner queries, batch Apex and iterators, post which will walk you through the workarounds.
First, when we try to put an inner query within the start method, the batch will start to show unexpected behavior.
Here is the sample code!
Workaround for this is to have the SOQL query without inner queries in the start method and then in the execute method we need to re-query the sObject with inner queries.
Here is the refactored code.
Second, we are not supposed to use the iterator() method multiple times in the start method, it gives us back unexpected results.
Here is the code!
As per the documentation
To iterate over a query locator, save the iterator instance that this method returns in a variable and then use this variable to iterate over the collection. Calling iterator every time you want to perform an iteration can result in incorrect behaviour because each call returns a new iterator instance.
So we need to call iterator()
once per QueryLocator
and we can call the hasNext()
method multiple times on the iterator instance multiple times.
Here is the refactored code.
If you were to iterate over the result set multiple times then try to save each record into a list and you are free to iterate the list.
Did you like the post? Let me know what you think of it.
Interested in learning LWC Development with me? Subscribe to my course (use this if you are out of India).