Showing 100 articles max
Coder Trainee
Coder Trainee
May 16, 2026 · Cloud Native

Spring Cloud Gateway: Unified Entry Point for Microservice Calls

This tutorial walks through adding Spring Cloud Gateway as a single entry point for client calls to multiple microservices, covering why a gateway is needed, project structure, dependency and configuration setup, global logging and authentication filters, startup verification, and common pitfalls with solutions.

AuthenticationGlobal FilterLoad Balancer
0 likes · 13 min read
Spring Cloud Gateway: Unified Entry Point for Microservice Calls
21CTO
21CTO
May 15, 2026 · Cloud Native

Why LLMs Are Undermining 20‑Year‑Old Stateless Web Architecture

The article explains how the longstanding web architecture that separates stateful databases from stateless compute is being challenged by large language models and AI agents, which introduce long‑running, stateful, bidirectional workflows, exposing the need for new routing primitives such as persistent pub/sub channels rather than traditional HTTP‑load‑balancer setups.

LLMRoutingpersistent execution
0 likes · 8 min read
Why LLMs Are Undermining 20‑Year‑Old Stateless Web Architecture
Coder Trainee
Coder Trainee
May 15, 2026 · Cloud Native

Simplify Service Calls in Spring Cloud Microservices with OpenFeign (Revised Edition)

This article shows how to replace verbose WebClient/Nacos calls with declarative OpenFeign in a Spring Cloud microservice setup, reducing code by about 80%, improving readability, adding automatic load balancing, retries, logging, and circuit‑breaker support, and provides step‑by‑step configuration, code examples, and common pitfalls.

Circuit BreakerFeign clientMicroservices
0 likes · 12 min read
Simplify Service Calls in Spring Cloud Microservices with OpenFeign (Revised Edition)
ByteDance SE Lab
ByteDance SE Lab
May 13, 2026 · Cloud Native

Can Business Teams Build Apps Themselves? How Volcano Supabase Powers Yuanfudao’s Conversational Agent

Facing hour‑level demands for new educational tools, Yuanfudao created the internal Rush platform that lets any employee describe a need in natural language and instantly receive a full‑stack application, thanks to Volcano Supabase’s AI‑native BaaS, dramatically cutting development time, cost, and operational complexity.

AI-nativeBaaSCloud Native
0 likes · 14 min read
Can Business Teams Build Apps Themselves? How Volcano Supabase Powers Yuanfudao’s Conversational Agent
Coder Trainee
Coder Trainee
May 13, 2026 · Cloud Native

Spring Cloud Microservices Revised Edition – Intro and New Tech Stack

After finishing the Spring Boot source‑code series, the author launches a refreshed Spring Cloud microservices tutorial built on Spring Boot 3.x, Jakarta EE, GraalVM native images, full production‑grade demos, Kubernetes deployment, observability and performance testing, outlining a 12‑episode roadmap.

KubernetesMicroservicesNacos
0 likes · 7 min read
Spring Cloud Microservices Revised Edition – Intro and New Tech Stack
Su San Talks Tech
Su San Talks Tech
May 12, 2026 · Cloud Native

How Nacos 3.2 Evolves into an Enterprise AI Governance Platform

Nacos 3.2 expands beyond a micro‑service registry to become a unified AI asset governance platform, introducing AI Registry, MCP Registry, a three‑layer Skill security sandbox, Copilot assistance, and A2A protocol integration for seamless enterprise AI adoption.

A2A ProtocolAI RegistryMCP Registry
0 likes · 11 min read
How Nacos 3.2 Evolves into an Enterprise AI Governance Platform
ByteDance SE Lab
ByteDance SE Lab
May 11, 2026 · Cloud Native

How to Deploy with TRAE and IGA Pages in One Click

This guide walks through the challenges of turning a locally built prototype into a globally accessible site and shows how TRAE AI IDE combined with IGA Pages enables one‑click, serverless deployment, GitHub integration, edge functions, custom domains, and sustainable CI/CD workflows for developers and product teams.

AI IDEEdge FunctionsGitHub CI/CD
0 likes · 16 min read
How to Deploy with TRAE and IGA Pages in One Click
MaGe Linux Operations
MaGe Linux Operations
May 10, 2026 · Cloud Native

Docker Container Fails to Start? Common Causes and Troubleshooting Commands

This guide walks operators through a systematic, step‑by‑step process for diagnosing Docker container startup failures, covering status checks, log inspection, detailed use of docker inspect, and categorized troubleshooting of image, configuration, resource, permission, network, and volume issues with concrete commands and examples.

ContainerDockerImage
0 likes · 27 min read
Docker Container Fails to Start? Common Causes and Troubleshooting Commands
Weekly Large Model Application
Weekly Large Model Application
May 6, 2026 · Cloud Native

How OpenAI Scales Low-Latency Voice AI with WebRTC: Architecture Deep Dive

The article dissects OpenAI's engineering approach to delivering low‑latency voice AI at scale, explaining why WebRTC was chosen, how a Relay + Transceiver split solves Kubernetes integration challenges, the use of ICE ufrag for deterministic routing, and how global relay and implementation choices reduce perceived latency.

KubernetesLow latencyOpenAI
0 likes · 9 min read
How OpenAI Scales Low-Latency Voice AI with WebRTC: Architecture Deep Dive
MaGe Linux Operations
MaGe Linux Operations
May 3, 2026 · Cloud Native

How to Troubleshoot Kubernetes NotReady Nodes: A Complete Step‑by‑Step Guide

This article walks Kubernetes operators through a systematic investigation of NotReady node symptoms, explaining the kubelet status mechanism, detailing each diagnostic step—from verifying node conditions with kubectl to checking kubelet, container runtime, resources, network, and certificates—and providing concrete remediation and preventive measures.

KubernetesMonitoringNotReady
0 likes · 35 min read
How to Troubleshoot Kubernetes NotReady Nodes: A Complete Step‑by‑Step Guide
DataFunSummit
DataFunSummit
May 2, 2026 · Cloud Native

GooseFS + Lance: Accelerating Vector Storage for the AI Era

The article explains how GooseFS integrates with the Lance vector format to overcome the IO bottlenecks of object storage, detailing native acceleration mechanisms such as namespace catalog services, event‑driven warm caching, automatic compaction, native transactions, and page‑level caching that together deliver up to three‑fold performance gains for AI workloads.

AICache AccelerationCloud Native
0 likes · 12 min read
GooseFS + Lance: Accelerating Vector Storage for the AI Era
Architect's Guide
Architect's Guide
May 2, 2026 · Cloud Native

Implementing End-to-End Gray Release with Spring Cloud, Nacos, and Load Balancer

This article walks through a practical implementation of gray (canary) release in a Spring Cloud ecosystem using Nacos for service discovery, Spring Cloud Gateway for routing, Ribbon (or Spring Cloud LoadBalancer) for load balancing, and custom interceptors to control traffic based on request metadata.

Gray ReleaseLoad BalancerMicroservices
0 likes · 20 min read
Implementing End-to-End Gray Release with Spring Cloud, Nacos, and Load Balancer
Coder Trainee
Coder Trainee
May 2, 2026 · Cloud Native

Spring Cloud Microservices Series #10: Key Takeaways and Best Practices

This article reviews the entire Spring Cloud microservices series, presents a full technology stack diagram, outlines production‑grade best practices for service decomposition, configuration, remote calls, rate limiting, databases, logging and monitoring, lists common pitfalls, offers performance‑tuning tips, discusses the pros and cons of microservices, and points to future directions such as service mesh, serverless and cloud‑native adoption.

Best PracticesConfiguration ManagementKubernetes
0 likes · 14 min read
Spring Cloud Microservices Series #10: Key Takeaways and Best Practices
Coder Trainee
Coder Trainee
May 1, 2026 · Cloud Native

Containerizing Spring Cloud Microservices with Docker and Kubernetes (Part 9)

This article explains why traditional deployment is problematic, then walks through building Docker images, composing services with Docker‑Compose, deploying to a Kubernetes cluster, setting up CI/CD pipelines, and addressing common pitfalls such as slow starts and service discovery failures.

DockerDocker-ComposeKubernetes
0 likes · 12 min read
Containerizing Spring Cloud Microservices with Docker and Kubernetes (Part 9)
MaGe Linux Operations
MaGe Linux Operations
Apr 30, 2026 · Cloud Native

Kubernetes Service Connectivity Issues? A Step‑by‑Step Guide from Pods to Services to Ingress

This article provides a systematic, layer‑by‑layer troubleshooting guide for Kubernetes service connectivity problems, covering pod health, service and endpoint configuration, kube‑proxy rules, CNI plugins, Ingress controllers, DNS resolution, and NetworkPolicy, with concrete commands, examples, and preventive scripts.

KubernetesPodService
0 likes · 39 min read
Kubernetes Service Connectivity Issues? A Step‑by‑Step Guide from Pods to Services to Ingress
Architecture & Thinking
Architecture & Thinking
Apr 30, 2026 · Cloud Native

How RocketMQ 5.0’s New Proxy Layer Enables Compute‑Storage Separation and Cloud‑Native Scaling

RocketMQ 5.0 replaces the monolithic Broker with a stateless Proxy layer that decouples compute from storage, solves scalability, multi‑protocol and cloud‑native adaptation challenges, and is demonstrated through detailed architecture comparisons, Java code samples, and two real‑world IoT and finance case studies showing significant performance and cost benefits.

Cloud NativeCompute-Storage SeparationMessage Queue
0 likes · 20 min read
How RocketMQ 5.0’s New Proxy Layer Enables Compute‑Storage Separation and Cloud‑Native Scaling
dbaplus Community
dbaplus Community
Apr 27, 2026 · Cloud Native

When MTU Misconfiguration Turns Into a Two‑Day Network Mystery

A two‑day investigation of intermittent packet loss in a hybrid‑cloud Kubernetes environment revealed that an oversized VXLAN MTU caused fragmentation, prompting a step‑by‑step analysis of MTU fundamentals, diagnostic commands, Cilium configuration changes, and best‑practice recommendations for cloud‑native networks.

CiliumKubernetesMTU
0 likes · 30 min read
When MTU Misconfiguration Turns Into a Two‑Day Network Mystery
ITPUB
ITPUB
Apr 27, 2026 · Cloud Native

Why Skipping Backups Makes Kubernetes Operations Impossible

The article explains that running production Kubernetes clusters without regular backup and recovery plans exposes businesses to severe risks such as cluster failures, data loss, and prolonged downtime, and it details practical etcd physical and Velero logical backup strategies to mitigate these threats.

Cloud NativeKubernetesRestore
0 likes · 9 min read
Why Skipping Backups Makes Kubernetes Operations Impossible