Pains
2403 pains collected
mongos (sharding router) crashes frequently under load
8The mongos routing layer is unreliable and crashes every few hours to days under load. Some crashes involve assertion failures that don't fully terminate the process, leaving it in a broken state even with restart supervision.
Breaking change in HTTP query template function usage
8Neon's Node.js SDK v19+ introduces a breaking change in how the HTTP query template function can be called. Calling it as a conventional function (with parentheses) is now an SQL injection risk and throws an error, requiring developers to update their applications.
Docker build reproducibility issues with dependency version changes
8Docker builds pulling dependencies from the public internet during build time cannot guarantee reproducibility over time. Different versions of dependencies may be pulled on subsequent builds, and if exact versions are no longer available, Docker throws errors, blocking deployments.
Prisma environment variable handling breaks in monorepos and ESM contexts
8Prisma struggles to correctly load `.env` files in monorepo setups, doesn't support NODE_ENV-based `.env` switching, and silently pollutes `process.env` without explicit dotenv usage. Recent versions (6.7.0+) have introduced critical ESM-related module resolution failures across Turborepo, Next.js, Remix, and other frameworks.
Self-Hosted Deployment Complexity
8Self-hosted Sentry is a distributed system requiring management of PostgreSQL, ClickHouse, Kafka, and Redis. It demands dedicated DevOps/SRE resources for scaling and maintenance, often resulting in total cost of ownership exceeding SaaS pricing.
Project File Access Regression Breaking Existing Workflows
8Project file access functionality broke on November 25 after previously working, with no rollback capability. This regression persists during investigation, blocking users who relied on this feature.
Extremely slow bulk delete operations
8MongoDB's CUD (Create, Update, Delete) operations are inefficient at scale. Deleting all documents from a 50-million-document collection takes many hours, forcing developers to drop and recreate collections instead. MongoDB lacks a TRUNCATE TABLE equivalent.
Premature Microservices Adoption Creates Operational Complexity
8Teams adopt microservices before understanding business domain, resulting in distributed transactions, data consistency issues, painful debugging, and unnecessary operational complexity that becomes a blocker for scalability rather than an enabler.
Sensitive data exposure and authorization complexity
8GraphQL's unified endpoint and flexible query structure can inadvertently expose sensitive data. Without strict authentication and authorization checks at the field level, unauthorized users can query restricted information. Field-level security is complex, error-prone, and can cause entire requests to fail.
Sharding fails under high load during chunk migration
8Adding a shard to a MongoDB cluster under heavy load is problematic. MongoDB either migrates chunks so aggressively that it causes DoS conditions on production traffic, or refuses to move chunks at all, making it unsuitable for high-traffic sites with heavy write volumes.
Replication becomes bottleneck on busy servers
8Replication on heavily loaded MongoDB servers either causes DoS on the master or replicates so slowly that the operation log is exhausted, requiring very large oplog sizes (e.g., 50GB) and still failing to keep up.
Production Database Concurrency Issues
8The official FastAPI documentation's recommended DB integration pattern using dependencies leads to deadlocks when handling more concurrent users in production environments.
Lack of observability makes it impossible to trust agents in production
894% of organizations with agents in production have implemented observability tooling because agents cannot be trusted without visibility into execution traces and reasoning. Observability is a blocker for production deployment despite 89% adoption attempts.
Security vulnerabilities with unbundled dev servers over networks
8Unbundled dev servers can expose sensitive files and create unintended access vulnerabilities when exposed over networks for testing, requiring explicit permissions and careful configuration to mitigate risks.
Garbage collection causes unpredictable latency
8Go's garbage collector is unpredictable and unsuitable for latency-sensitive environments like high-frequency trading or real-time analytics. GOMEMLIMIT is described as unreliable, allowing requests 10x over the limit.
Global write lock kills performance under heavy write loads
8MongoDB requires a global write lock for any write operation. Under write-heavy loads, this severely degrades performance, making it unsuitable for applications with balanced or write-heavy read/write ratios.
Overly broad scopes and long-lived access tokens
8Teams define scopes too broadly (e.g., `full_access`, `admin_all`) and issue access tokens valid for hours or days instead of minutes, dramatically increasing the blast radius if a token is stolen.
Authorization code and access token leakage through redirect vulnerabilities
8OAuth implementations risk leaking authorization codes via HTTP Referrer headers and access tokens through URL hash fragments. Redirect hijacking vulnerabilities enable account takeover, and optional CSRF state token protection is frequently ignored in implementations.
Serverless function timeout limits prevent complex workloads
8Vercel's serverless functions have a 10-second timeout limit on free tier and 60-300 second limits on paid plans, causing issues with complex payment processing, long-running agents, and AI workloads. Documentation claims 300 seconds but functions timeout at 60 seconds under load. Edge functions have even stricter limits and lack full Node.js compatibility.
Using wrong OAuth 2.0 grant types for the scenario
8Developers select inappropriate grant types (e.g., Client Credentials for user authentication, Implicit or Password grant) without considering whether the client can securely store secrets, leading to security vulnerabilities and blurred trust boundaries.
Slow Maintainer Response and PR Review Bottleneck
8The FastAPI maintainer (@tiangolo) is a bottleneck for development; most PRs go months without response, require extensive rework, or remain unmerged despite being high-quality. No delegation of merge permissions limits community contribution.
Big-Bang SwiftUI Rewrite Risk for Legacy Applications
8Wholesale adoption of SwiftUI to rewrite large, long-lived applications introduces significant business risk. Incremental migration strategies focusing only on the view layer while preserving UIKit navigation are recommended but require more planning than big-bang rewrites.
Frequent pipeline failures in interconnected services
8Pipeline failures occur frequently in enterprise environments when changes affect multiple interconnected services, stretching MTTR into hours.
Configuration drift from identical dev and prod manifests
7Using the same Kubernetes manifests across development, staging, and production without environment-specific customization leads to instability, poor performance, and security gaps. Environment factors like traffic patterns, scaling needs, and access control differ significantly.