'After Save Record triggered flow is not working for bulk update in account object

We have got a talk to convert workflow into flow, So while doing that there is a workflow which has two action one is field update and other is send Out bound message for the below condition.

AND( (Magento_ID__c <> null && !BEGINS(Magento_ID__c,'9')), RecordType.DeveloperName = 'Lorentz_Customer', OR( ISCHANGED( BillingCity ) || ISCHANGED( BillingCountry ) || ISCHANGED( BillingStreet ) || ISCHANGED( BillingState ) || ISCHANGED( BillingPostalCode )|| ISCHANGED( ShippingCity ) || ISCHANGED( ShippingCountry) || ISCHANGED( ShippingStreet ) || ISCHANGED( ShippingState ) || ISCHANGED( ShippingPostalCode ) || ISCHANGED(PersonEmail) || ISCHANGED( Birthday__pc ) || ISCHANGED(LastName) || ISCHANGED( FirstName) || ISCHANGED( Salutation) ) )

So i have created before save and after save flow. Both working fine for few number of data. but if i upload large amount of data (5000) with batch size of 200 then its failing because of after save flow. Is there any way where we can bulkify the after save flow?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source