BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
120 / 279 · Module 6 — Mule Routing and Orchestration · filtered: code← prev⊞ allnext →

6.29When NOT to parallelize this example

Suppose Opportunity creation requires:

credit decision

Then these cannot happen simultaneously:

Credit API
Opportunity creation

because one depends on the other.

You need:

Credit API
   ↓
Choice
   ↓
Opportunity

not:

Scatter-Gather
Credit + Opportunity

Rule:

Parallelize only operations without required ordering/dependencies.

Simple but important.