BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
513 / 1048 · Module 11 — Salesforce Bulk Processing + Mule Batch Jobs← prev⊞ allnext →

11.47Don't put an HTTP call inside each Batch record casually

Imagine:

1 million records

and Batch Step:

call customer-score API

That's:

1 million HTTP requests

Maybe unavoidable.

But first ask:

Does scoring API support bulk?
Can scores be preloaded?
Can we batch requests?
Can we cache repeated lookups?

The best optimization is architectural.