CONCEPT Cited by 1 source
IP warming¶
Definition¶
IP warming is the email-marketing practice of gradually increasing daily send volume from a new sending IP over a period of weeks so that receiving ISPs (Gmail, Outlook, Yahoo, etc.) build a reputation for that IP based on its observed behavior, rather than treating it as anonymous (and therefore suspicious) traffic.
A new IP that immediately starts sending hundreds of thousands of emails will get throttled, deferred, or hard-blocked by major ISPs — they treat sudden high-volume sends from unknown IPs as a signal of spam or compromise. By starting small and ramping smoothly, the IP accumulates positive sender reputation (low bounce rate, low spam-complaint rate, healthy engagement) before hitting full production volume.
Why it matters¶
ISPs are the gatekeepers of inbox delivery. The wiki's first canonical IP-warming source notes verbatim: "Common to the industry, launching email campaigns for new retailers requires gradually warming IP addresses to maintain sender reputation." (sources/2026-05-14-instacart-scaling-personalized-marketing-for-multi-tenant-commerce-platforms)
Without warming, the consequences are:
- Throttling — ISP delays delivery (typical: 30 min – 24 h).
- Deferral — ISP returns a temporary failure; messages retry until the warm-up period passes naturally or are dropped.
- Hard blocks — the IP gets listed on a blocklist (Spamhaus / SORBS / etc.), affecting all senders sharing the IP.
These outcomes hit campaigns at the worst time — at launch — when the platform is trying to make a first impression.
Canonical ramp shape¶
Instacart's automated ramp (per the 2026-05-14 source):
- Start with small daily send volumes (50–1,000 emails) for the first day(s).
- Gradually increase over 4–6 weeks following an industry-standard curve.
- Monitor bounce rates, spam complaints, and deliverability metrics continuously.
- Automatically adjust send volume based on metrics — slow the ramp if signals deteriorate, accelerate it if signals stay healthy.
This is the canonical instance of patterns/automated-ip-warming-with-deliverability-feedback — the ramp isn't a fixed schedule, it's a feedback control loop.
Shared IPs vs dedicated IPs¶
The 2026-05-14 source documents a multi-tenant tradeoff: "To use infrastructure efficiently, we share IPs across retailers where appropriate. The system monitors deliverability signals — bounce rates, spam complaints, and engagement metrics — and dynamically adjusts send volume or triggers capacity expansion when thresholds are reached."
The decision space:
- Dedicated IP per retailer — strongest isolation; each retailer's reputation is separate; one retailer's bounce rate doesn't pollute another's. Most expensive (vendors charge per dedicated IP) and slowest to warm (each new IP needs its own 4–6-week ramp).
- Shared IP across retailers — cheaper; faster to bootstrap new retailers because IPs are already warm; but one retailer's reputation issue (high bounce rate, spam-trap hits) affects everyone sharing the IP. Acceptable when retailers' content/audiences are similar enough that cross-contamination risk is low.
Instacart's choice — "share IPs across retailers where appropriate" — implies a hybrid model with deliverability- metric thresholds gating which retailers can stay on which shared pools.
Composes with¶
- concepts/sender-reputation — the property IP warming builds.
- concepts/per-tenant-workspace-isolation — IP allocation is one of the workspace-level resources the platform has to manage even when other primitives are vendor-enforced.
- patterns/automated-ip-warming-with-deliverability-feedback — the canonical pattern; a feedback-driven ramp instead of a fixed schedule.
Caveats¶
- Specific bounce-rate / spam-complaint thresholds for the auto-adjust loop are not disclosed in the 2026-05-14 source.
- Domain warming (the SPF/DKIM-aligned domain reputation alongside IP reputation) is not discussed but is a related practice; modern ISPs increasingly track domain reputation more than IP reputation.
- IP warming applies to email; push notifications don't have an analogous practice because Apple Push / FCM apply authentication-based admission rather than reputation-based admission.
Seen in¶
- sources/2026-05-14-instacart-scaling-personalized-marketing-for-multi-tenant-commerce-platforms — first wiki canonicalization. Automated 4–6-week ramp from 50–1,000/day with bounce-rate / spam-complaint feedback; shared-IPs-where-appropriate multi-tenant cost optimization.