168 / 279 · Module 11 — Salesforce Bulk Processing + Mule Batch Jobs · filtered: code← prev⊞ allnext →
11.2Why normal CRUD stops scaling
Suppose:
250,000 Accounts
Naive implementation:
For Each
↓
Salesforce Upsert
That's potentially:
250,000 connector operations
Problems:
API limits
network overhead
very long runtime
Salesforce throttling
memory
error recovery
restartability
Instead, large data movement should usually be batch-oriented.