惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
J
Java Code Geeks
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
量子位
S
SegmentFault 最新的问题
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
A
About on SuperTechFans
P
Proofpoint News Feed
Last Week in AI
Last Week in AI
Recent Announcements
Recent Announcements
腾讯CDC
I
InfoQ
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
爱范儿
爱范儿

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why your n8n workflow dies every quarter at 3am
Mirza Iqbal · 2026-06-19 · via DEV Community
Cover image for Why your n8n workflow dies every quarter at 3am

Mirza Iqbal

Everything ran green for ninety days.

Then one Tuesday the lead dashboard was empty, and the first person to notice was the sales lead at nine in the morning, wondering where the overnight leads went.

The flow logic was fine. It had not changed. Nothing in the workflow was broken.

A credential rotated, and the workflow had no idea.

Here is the opinion I will defend in the comments.

Most automation does not fail from bad logic. It fails from something outside the flow that changed without telling the flow it was about to.

Picture the sequence. A quarterly key rotation policy retires the old token. Your node still holds it. The 3am run hits the API, gets a quiet 401, and the workflow records a failure into a log nobody watches at 3am. No page. No alert. The run simply produced nothing.

By the time a human looks, it is morning, the damage is a full batch of missing data, and the cause is buried under nine hours of distance from the symptom.

That distance is what makes this one brutal to trace.

It works in dev, because dev has fresh credentials. It works at launch, because everything was wired moments ago. It breaks weeks later, on the rotation boundary, far from the deploy you would naturally blame.

Step back and the shape is bigger than one token. The dangerous dependencies are the things your flow relies on but does not own.

An API key someone else rotates.

A quota that resets on a billing cycle you do not control.

An upstream schema that adds a field and shifts a response.

A downstream service that starts rate limiting you under real load.

None of these live in your canvas. All of them can take your canvas down.

The fix is a change of posture, not a clever node.

Treat every external dependency as something that will change without warning, because it will. Alert on the silence, not only on the thrown error.

A run that produces zero rows is more dangerous than a run that crashes loudly. The crash gets seen. The empty success slips through, because nobody audits the runs that say they worked.

Watch the quiet failures. They are the ones that reach the C-suite before they reach you.

Your turn

What is the dependency that took down a workflow you thought was solid?

If this was useful

I work through this in public, the wins and the freezes both, mostly on LinkedIn and YouTube. If the real version of building in the open is useful to you, that is where it lives. LinkedIn, YouTube and X under Mirza Iqbal, and the work at next8n.com.