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

推荐订阅源

N
Netflix TechBlog - Medium
G
Google Developers Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
L
LangChain Blog
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
小众软件
小众软件
WordPress大学
WordPress大学
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
Jina AI
Jina AI
T
Tailwind CSS Blog
Google DeepMind News
Google DeepMind News
D
Docker

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
Moving from 60s to 6s: Latency Optimization Lessons from ...
Shubham · 2026-06-24 · via DEV Community

Shubham

The broader tech community often views functional programming (FP) as an elegant academic exercise great for type systems, formal reasoning, and compiler guarantees, but less relevant to the realities of high-throughput production systems.

That assumption is wrong.

While optimizing a large-scale distributed workflow engine, we used PureScript and Haskell to rethink a legacy execution model, reducing end-to-end latency from roughly 60 seconds to under 6 seconds a nearly 90% improvement.

This wasn't achieved through additional hardware, bigger databases, or infrastructure tuning. Instead, the gains came from applying a few core functional programming principles: non-blocking asynchronous effects, explicit modeling of side effects, and treating workflows as composable data structures.

This is the engineering story behind that transformation.

The Bottleneck: Polling-Based Workflow Execution

The original system relied on a pull-based worker architecture.

Each request flowed through multiple sequential stages, including validation, business rule evaluation, external service interactions, state transitions, and final reconciliation.

The execution model was built around a database-backed work queue:

  • A worker completed a step and persisted the updated state.

  • The next worker periodically polled the database for pending work.

  • Once discovered, it executed the next stage and persisted the result.

  • The process repeated until completion.

While this approach provided durability and operational simplicity, it introduced significant latency.

Every stage depended on a polling interval before the next stage could begin. Even relatively small delays compounded across multiple workflow stages.

As the number of sequential steps increased, the majority of request time was spent waiting for the next polling cycle rather than performing useful work.

The system wasn't compute-bound.

It was wait-bound.

The Strategy: Introducing a Fast Execution Path

To eliminate unnecessary waiting, we split execution into two distinct paths:

  • A Fast Path optimized for low-latency request processing.

  • A Durable Path optimized for reliability, retries, and recovery.

Rather than routing every request through the durable workflow engine immediately, the system first attempts direct execution using PureScript's Aff runtime.

Aff provides lightweight, non-blocking asynchronous execution with structured error handling and resource safety.

A typical request now follows a path similar to:

Request

→ Validation

→ Business Rules

→ External Service Call

→ State Update

→ Response

If all operations succeed, the request completes immediately without entering the background workflow system.

By avoiding unnecessary persistence and polling between every stage, latency dropped dramatically.

In the common success case, requests now completed in under six seconds.

The Reliability Challenge

Fast paths are easy to build.

Reliable fast paths are significantly harder.

Any optimization that bypasses durable infrastructure risks losing execution state when failures occur.

To preserve reliability guarantees, we needed a mechanism that could seamlessly transition between immediate execution and durable recovery without introducing duplicate side effects.

Modeling Workflows as Data

The solution was to represent workflow operations as a custom DSL built using algebraic data types and interpreted through a Free Monad.

Instead of executing side effects directly, workflow steps were first modeled as data.

Operations such as:

  • Reading state

  • Writing state

  • Calling external services

  • Running parallel computations

  • Updating workflow progress

were represented as declarative instructions.

This separation between workflow definition and execution enabled a powerful capability: deterministic replay.

As execution progressed, the interpreter recorded the result of completed operations.

If an error occurred during fast-path execution, the current workflow state could be persisted and handed off to the durable execution engine.

When processing resumed later:

  • Previously completed operations were replayed from recorded results.

  • Successful work was not re-executed.

  • Execution continued from the exact point of failure.

This allowed the system to combine low-latency execution with strong reliability guarantees while avoiding duplicate side effects.

Results

The biggest lesson wasn't simply that the system became faster.

It was that functional programming provided architectural tools that made an entirely different execution model possible.

Don't Poll When You Can Propagate

Polling introduces latency even when no real work is being done.

For multi-stage workflows, event-driven execution often produces substantial performance improvements.

Separate Workflow Definition from Execution

Representing workflows as data creates opportunities for replay, testing, simulation, recovery, and optimization that are difficult to achieve when side effects are tightly coupled to business logic.

Types Enable Architectural Confidence

Strong type systems make it possible to build complex execution and recovery mechanisms with far greater confidence.

Many categories of invalid state transitions and workflow bugs can be eliminated before code ever reaches production.

Final Thoughts

Reducing latency from 60 seconds to 6 seconds wasn't primarily a performance-tuning exercise.

It was the result of changing how the system modeled work.

Functional programming provided the abstractions needed to separate business logic from execution, build reliable recovery mechanisms, and optimize the common path without sacrificing correctness.

The next time someone describes functional programming as purely academic, consider that some of its most powerful ideas aren't about writing cleaner code.

They're about building systems that are both fast and resilient at scale.