Is Mixpanel down?
Last checked 6m agoNo incidents right now.
Mixpanel is operational right now. Last checked 6m ago; the most recent incident resolved 7d ago.
Real-time Mixpanel status, recent outages, and incident history — pulled directly from Mixpanel's official status page at https://status.mixpanel.com every 5 minutes. Pingoru tracks 9 Mixpanel services and has captured 11 incidents in the last 90 days (98.39% uptime). Get email, Slack, Discord, or webhook alerts the moment Mixpanel reports a new incident — free for 5 monitors, no credit card.
Recent outages & incidents
Past 90 days-
Timeline · 4 updates
- investigating · Jul 22, 2026, 08:03 AM UTC
We are currently experiencing issues with the Mixpanel agent within the webapp. Our engineering team has been alerted and is investigating the issue and working to restore its functionality. We appreciate your patience as we work to resolve this matter. If you have any questions, please contact support.
- investigating · Jul 22, 2026, 09:52 AM UTC
the team continues to investigate the issue and next steps. Thanks for your patience.
- monitoring · Jul 22, 2026, 10:55 AM UTC
A fix has been implemented and we are monitoring the results.
- resolved · Jul 22, 2026, 02:47 PM UTC
This incident has been resolved.
Latest: This incident has been resolved.
-
- Ingestion API Availability (US)
Timeline · 7 updates
- investigating · Jul 11, 2026, 07:53 AM UTC
We are currently experiencing delays in our data ingestion pipeline, which is affecting real-time data for projects enrolled in the US projects, resulting in delays for a subset of projects. While no data is being lost, our engineering team is actively investigating the matter and working to restore real-time functionality as quickly as possible. We appreciate your patience during this time. If you have any questions, please contact support.
- investigating · Jul 11, 2026, 09:17 AM UTC
We are continuing to investigate this issue.
- identified · Jul 11, 2026, 10:15 AM UTC
The issue has been identified and a fix is being implemented.
- identified · Jul 11, 2026, 12:54 PM UTC
We are continuing to work on a fix for this issue.
- monitoring · Jul 11, 2026, 02:25 PM UTC
A fix has been implemented and we are monitoring the results.
- resolved · Jul 11, 2026, 03:54 PM UTC
This incident has been resolved.
- postmortem · Jul 16, 2026, 11:47 PM UTC
# Summary Between approximately **11:35 PM PT on July 10 and 7:19 AM PT on July 11, 2026**, data ingestion for Mixpanel projects in the US region ran behind by up to ~2 hours. During this window, reports and dashboards temporarily showed incomplete data — recent time ranges could appear as sharp, artificial drops in metrics such as active users or revenue. **No data was lost.** All events were queued durably and processed in full once the backlog cleared; metrics returned to accurate values on their own, with no customer action required. The root cause was on our side: for a small number of very high-volume projects, the ingestion rates we allowed had drifted out of alignment with the capacity provisioned for those projects. Large historical imports — entirely legitimate use of the platform — were therefore admitted faster than their infrastructure could absorb, and two properties of our pipeline turned that localized overload into a region-wide delay. The fixes below realign those controls so that any import, of any size, is automatically kept within safe bounds. # What happened Mixpanel's ingestion pipeline is sharded and multi-tenant: each project's data is distributed across a set of partitions sized for its expected volume, and for throughput, events from many customers are processed together in batches. This design delivers high efficiency, but it depends on one invariant: the rate at which we admit a project's traffic must match the capacity provisioned for it. When that invariant holds, even very large imports are absorbed smoothly. Here, it did not hold. A small number of very large historical data imports ran on projects whose allowed ingestion rates had, over time, grown well beyond their provisioned partition capacity. The excess volume concentrated onto specific partitions as **hot spots**, saturating the portion of the streaming fleet serving them. Two factors then widened the impact: * **Batched, multi-tenant processing amplified the hot spots.** Because events from many customers travel together in batches, slowness and failures on the overloaded partitions delayed unrelated customers' events sharing those batches. * **Automatic scale-up was ineffective.** Adding capacity cannot dissolve a hot spot of this kind — the overloaded partitions stay pinned to the same infrastructure — and an undocumented capacity limit in a third-party component of our streaming infrastructure silently prevented the added capacity from taking effect at all. Together, these turned what should have been a brief, self-healing slowdown into a multi-hour delay requiring manual intervention. # Timeline \(Pacific Time, July 10–11\) * **11:35 PM** — Automated alerting detected the ingestion backlog; on-call engineer engaged immediately. * **12:49 AM** — Status page incident posted; impact scoped to the US region only. * **1:23 AM** — The largest contributing import was paused. * **1:55–6:48 AM** — Progressive mitigations: additional traffic sources throttled, low-value backlogged data deferred with the owning customer's agreement, failure isolation enabled in the pipeline, and misbehaving infrastructure nodes replaced. * **7:19 AM** — Backlog fully processed; all projects current. Status page moved to monitoring, then resolved after a stable observation period. # Root cause 1. **Ingestion rate limits misaligned with provisioned capacity.** For the driving projects, the rates our platform admitted had grown out of step with the infrastructure provisioned for them, so legitimate high-volume imports were let in faster than their partitions could absorb. This is the systemic root cause, and it was ours to prevent — not a customer error. 2. **Batched, multi-tenant processing amplified the overload.** Failures on the overloaded partitions delayed unrelated customers' events sharing the same processing batches, spreading a localized problem across the platform. 3. **Traffic to the overloaded partitions could not be redistributed.** Partition-to-server assignment in the streaming layer was not load-aware, so the hot spots stayed pinned to the same servers regardless of fleet size — total capacity was sufficient, but it could not be brought to bear. A scaling limit in a third-party component compounded this by silently preventing scale-up from adding capacity, delaying diagnosis until engineers intervened manually. # What we're changing The end state we are building toward: **every project's ingestion limits automatically match its provisioned capacity, so imports of any size — including full historical backfills and data warehouse syncs — run safely hands-off**, with no advance coordination, and no possibility of one project's volume affecting another's data freshness. Already deployed — improving our ingestion handling: * **Improved hot-spot handling.** Traffic distribution in the streaming layer is now load-aware, spreading concentrated load more evenly across the fleet, and individual problem items are now retried separately instead of holding up the rest of their batch — reducing, though not eliminating, the impact a localized overload can have on unrelated traffic. * **Re-provisioned the highest-volume workloads** onto appropriately sized infrastructure, prioritized by risk. Already deployed — changing how we operate the third-party streaming service: * **Audited and re-tuned the fleet's capacity profile** so individual servers have substantially more headroom for concentrated load, and worked with the provider to resolve the scaling limitation encountered during the incident. In progress: * **Capacity-aware rate limiting** — closing the gaps between individually granted project rate limits and each project's real provisioned capacity, extending rate limiting to ingestion paths that previously lacked it, and coupling any future limit increase to a capacity increase — so the misalignment that caused this incident cannot recur silently. * **Finer-grained volume monitoring and alerting** so capacity misalignment is detected and corrected before it can affect any customer. * Evaluating stronger workload isolation/backlog recovery prioritization for bulk/backfill traffic paths, so historical imports have reduced impact on live traffic # Common questions * **Was any data lost?** No. Events were durably queued throughout the incident and were fully processed once the backlog cleared. Any metric drops seen during the window were a display artifact of the delay and self-corrected. * **Do I need to coordinate large imports or backfills with Mixpanel?** No — and that is by design. Our direction is that the platform itself keeps any import within safe rates, so backfills and warehouse syncs run hands-off without scheduling or notice. * **How is this prevented going forward?** The systemic fix is tightening the gaps between individually granted project rate limits and each project's real provisioned capacity, and extending rate limiting to the ingestion paths that previously lacked it — so overload of this kind is stopped at admission. In addition, the scaling limitation that prolonged the incident is fixed, the pipeline now retries individual problem items separately so a localized overload has far less impact on unrelated traffic, and bulk traffic is being further isolated from live traffic. * **Can individual projects be prioritized during recovery?** This capability did not exist during the incident — all projects recovered at the same rate. We are evaluating prioritization mechanisms for backlog recovery as part of our follow-up work. We apologize for the disruption and for the concern the temporarily depressed metrics caused. Please reach out through your account team or support with any questions.
Latest: # Summary Between approximately **11:35 PM PT on July 10 and 7:19 AM PT on July 11, 2026**, data ingestion for Mixpanel projects in the US region ran behind by up to ~2 hours. Duri…
-
- Application Availability (US)Application Availability (EU)Application Availability (IN)
Timeline · 5 updates
- investigating · Jun 29, 2026, 07:47 PM UTC
Mixpanel is experiencing degraded performance with our Query API, including increased latency. You may see slow-loading reports or query errors. We appreciate your patience while our engineers work to restore normal functionality. We will post progress updates on our status page. If you have any questions, please contact support.
- identified · Jun 29, 2026, 09:04 PM UTC
The issue has been identified and a fix is being implemented.
- identified · Jun 29, 2026, 10:42 PM UTC
Query latency has stabilized, though our team continues to investigate the underlying cause of the degraded performance. We will continue to post updates as our investigation progresses. Thank you for your patience.
- monitoring · Jun 30, 2026, 02:15 AM UTC
A fix has been implemented and we are monitoring the results.
- resolved · Jun 30, 2026, 03:30 AM UTC
This incident has been resolved.
Latest: This incident has been resolved.
-
-
Timeline · 3 updates
- investigating · Jun 03, 2026, 08:05 PM UTC
Mixpanel is currently experiencing a disruption in the ability to invite and delete internal users within organizations. We appreciate your patience while our engineers work to restore this functionality. If you have any questions, please contact [email protected]
- identified · Jun 03, 2026, 08:17 PM UTC
The issue has been identified and a fix is being implemented.
- resolved · Jun 03, 2026, 09:27 PM UTC
This incident has been resolved.
Latest: This incident has been resolved.
-
-
Timeline · 4 updates
- investigating · Jun 02, 2026, 11:02 AM UTC
We are experiencing delays with our data ingestion and shuffling pipeline to projects with all projects. No data is being lost but as a result, real-time data is delayed. We appreciate your patience while our engineers work to restore real-time functionality. If you have any questions, please contact support
- identified · Jun 02, 2026, 12:31 PM UTC
The issue has been identified and a fix is being implemented.
- monitoring · Jun 02, 2026, 02:31 PM UTC
A fix has been implemented and we are monitoring the results.
- resolved · Jun 02, 2026, 04:53 PM UTC
This incident has been resolved.
Latest: This incident has been resolved.
-
See the full Mixpanel outage history
6 more incidents in the last 90 days, plus the full multi-year archive of per-service events and update timelines.
Browse Mixpanel outage history →Or sign up free to get alerts when Mixpanel breaks · 10 free monitors · No credit card
- Started Jul 22, 2026, 08:03 AM UTC · Resolved Jul 22, 2026, 02:47 PM UTC · 6h 43m
- Started Jul 11, 2026, 07:53 AM UTC · Resolved Jul 11, 2026, 03:54 PM UTC · 8h
- Query API Degraded Performance ResolvedStarted Jun 29, 2026, 07:47 PM UTC · Resolved Jun 30, 2026, 03:30 AM UTC · 7h 43m
- Started Jun 03, 2026, 08:05 PM UTC · Resolved Jun 03, 2026, 09:27 PM UTC · 1h 22m
- Started Jun 02, 2026, 11:02 AM UTC · Resolved Jun 02, 2026, 04:53 PM UTC · 5h 50m
- Started Jun 01, 2026, 02:15 PM UTC · Resolved Jun 01, 2026, 07:42 PM UTC · 5h 27m
- Board Access Issues ResolvedStarted May 19, 2026, 07:03 PM UTC · Resolved May 19, 2026, 09:18 PM UTC · 2h 15m
- Query API degraded performance ResolvedStarted May 14, 2026, 11:17 PM UTC · Resolved May 16, 2026, 02:50 AM UTC · 1d 3h