Add pareto and others

This commit is contained in:
2026-05-19 08:38:31 -07:00
parent 7b4b2cc946
commit bc4f85518f
3 changed files with 22 additions and 2 deletions
+7
View File
@@ -12,3 +12,10 @@ Professionals are moving away from purely cost-optimized, "just-in-time" chains
- **Diversification:** Reducing reliance on single suppliers to avoid catastrophic failures.
- **Digital Service Agility:** In the context of digital services, resilience means the ability to handle massive, unpredictable spikes in demand without service degradation.
- **Sustainability:** Integration of circular supply chains and carbon footprint reduction.
## Navigating Trade-offs with MIP Solvers
In a real-world cloud environment, the "optimal" solution is rarely a single point, but a choice along the Pareto frontier. Practitioners use Mixed-Integer Programming (MIP) solvers to navigate these trade-offs.
Rather than optimizing for a single metric (like minimum servers), they employ techniques such as **Scalarization** (creating a weighted sum of utilization and SLA risk) or the **$\epsilon$-constraint method** (optimizing for utilization while keeping the probability of an SLA violation below a threshold $\epsilon$).
By iteratively adjusting these constraints, operators can generate a set of non-dominated placement strategies. This allows them to make a conscious business decision: "How much additional hardware utilization are we willing to trade for a 0.1% increase in SLA stability?" This transforms a technical placement problem into a strategic business decision.