Tagged articles
446 articles
Page 1 of 5
Architect Chen
Architect Chen
May 2, 2026 · Cloud Computing

Docker vs Traditional VMs: 4 Key Differences Explained

The article compares Docker containers with traditional virtual machines across four core aspects—resource consumption, isolation mechanisms, startup speed, and deployment efficiency—showing that containers use shared kernels for lower memory and CPU overhead, provide process‑level isolation, start in under a second, and enable rapid CI/CD workflows.

DeploymentDockerIsolation
0 likes · 4 min read
Docker vs Traditional VMs: 4 Key Differences Explained
Java Companion
Java Companion
Apr 16, 2026 · Databases

Is Running MySQL in Docker Really a Bad Idea?

This article dissects the common claim that MySQL should not be run in Docker by explaining the underlying design mismatch, measuring I/O overhead, examining persistence and resource‑isolation pitfalls, reviewing replication challenges, and presenting real‑world cases from JD and Tongcheng to show when containerization is safe and when it isn’t.

Data PersistenceDockercontainerization
0 likes · 12 min read
Is Running MySQL in Docker Really a Bad Idea?
Architect Chen
Architect Chen
Apr 15, 2026 · Cloud Native

Choosing the Right Microservice Deployment: Multi-Instance, Containers, Serverless & Kubernetes

This article compares four microservice deployment strategies—single-host multi-instance, containerized with Kubernetes, serverless functions, and full orchestration—detailing their architectures, benefits, drawbacks, and suitable scenarios, helping engineers select the most appropriate approach for scalability, reliability, and operational complexity.

Cloud NativeMicroservicesServerless
0 likes · 4 min read
Choosing the Right Microservice Deployment: Multi-Instance, Containers, Serverless & Kubernetes
Architect's Tech Stack
Architect's Tech Stack
Apr 10, 2026 · Cloud Native

Why Docker and Kubernetes Are Like Shipping Containers: A Beginner’s Guide

Using a shipping‑container analogy, this article explains how Docker packages applications into portable images and how Kubernetes orchestrates those containers across clusters, clarifying key concepts such as images, containers, Pods, Deployments, Services, and the role of nodes in modern cloud‑native environments.

ContainersDockerKubernetes
0 likes · 7 min read
Why Docker and Kubernetes Are Like Shipping Containers: A Beginner’s Guide
Architect Chen
Architect Chen
Apr 9, 2026 · Cloud Native

Understanding Docker: Architecture, Namespaces, cgroups, and UnionFS

This article explains Docker's client‑server architecture, core isolation mechanisms like Linux namespaces and cgroups, the layered UnionFS image model, and how libcontainer/runc creates containers, providing a comprehensive technical overview of Docker as a cloud‑native platform.

Cloud NativeDockerDocker Architecture
0 likes · 5 min read
Understanding Docker: Architecture, Namespaces, cgroups, and UnionFS
IT Services Circle
IT Services Circle
Mar 30, 2026 · Cloud Native

Docker vs K8s: Solving Java Deployment Chaos with Containers

This article explains why traditional Java deployment struggles with environment inconsistencies, introduces Docker’s containerization workflow—including base images, Dockerfiles, images, registries, and tools like Compose and Swarm—and compares it with Kubernetes’ orchestration capabilities, showing how they together streamline Java application delivery.

DevOpsDockerJava
0 likes · 7 min read
Docker vs K8s: Solving Java Deployment Chaos with Containers
21CTO
21CTO
Jan 23, 2026 · Information Security

How Malicious tasks.json Can Auto‑Run Code in VS Code and How to Protect Yourself

Security researchers uncovered a vulnerability where malicious code hidden in a VS Code tasks.json file can execute automatically when a folder is opened, prompting a discussion of VS Code's safeguards, the attack's capabilities, and practical steps developers can take to mitigate the risk.

VS Codecontainerizationmalicious code
0 likes · 5 min read
How Malicious tasks.json Can Auto‑Run Code in VS Code and How to Protect Yourself
vivo Internet Technology
vivo Internet Technology
Jan 21, 2026 · Cloud Native

How Vivo Achieved Parallel Multi‑Version Environments with Full‑Link Management

This article details Vivo's full‑link multi‑version environment management approach, covering the background problem of unstable test environments, the three‑pillar solution architecture, key implementation techniques such as orchestration, elastic resources, traffic isolation and coloring, and the resulting efficiency gains and future roadmap.

Microservicesci/cdcontainerization
0 likes · 21 min read
How Vivo Achieved Parallel Multi‑Version Environments with Full‑Link Management
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Jan 15, 2026 · Cloud Native

Mastering Microservice Deployment: K8s, Service Mesh, Containerization & Serverless

This guide outlines four primary microservice deployment strategies—Kubernetes orchestration, service‑mesh architecture, containerization, and serverless functions—detailing their principles, core advantages, and ideal use cases for large‑scale distributed systems, and highlights self‑healing, auto‑scaling, zero‑ops, and observability features that help handle massive traffic spikes.

MicroservicesServerlesscloud-native
0 likes · 5 min read
Mastering Microservice Deployment: K8s, Service Mesh, Containerization & Serverless
Ray's Galactic Tech
Ray's Galactic Tech
Jan 2, 2026 · Databases

Is Containerized MySQL Ready for Production? A Deep Comparison with Traditional Deployments

This article provides a comprehensive, production‑grade comparison between containerized MySQL on Kubernetes and traditional on‑premises deployments, clarifying core concepts, evaluating elasticity, availability, performance, and operational overhead, and offering concrete best‑practice recommendations, risk considerations, and future trends.

Cloud NativeDatabase Opsbest practices
0 likes · 8 min read
Is Containerized MySQL Ready for Production? A Deep Comparison with Traditional Deployments
DevOps Engineer
DevOps Engineer
Dec 12, 2025 · Cloud Native

Why Your Team Should Ditch VMs for Container‑Based Development Environments

The article examines the hidden costs and inefficiencies of assigning a virtual machine to each developer, explains why containers and cloud‑native tools like Codespaces, Gitpod, and Kubernetes‑based platforms offer lighter, on‑demand alternatives, and provides practical guidance for transitioning.

Development EnvironmentDocker Composecodespaces
0 likes · 6 min read
Why Your Team Should Ditch VMs for Container‑Based Development Environments
Architect Chen
Architect Chen
Nov 12, 2025 · Cloud Native

Understanding Docker: Core Principles, Architecture, and Runtime Workflow

This article provides a comprehensive overview of Docker, explaining its lightweight container model, client‑server architecture, key Linux kernel features such as namespaces and cgroups, image layering, networking, and the three‑stage process of building, distributing, and running containers.

DockerLinux Namespacescgroups
0 likes · 5 min read
Understanding Docker: Core Principles, Architecture, and Runtime Workflow
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Nov 6, 2025 · Cloud Native

Master Docker: Core Architecture, Technologies, and Runtime Explained

This article provides a comprehensive overview of Docker, covering its lightweight container-based virtualization, core advantages, client‑daemon‑registry architecture, underlying Linux namespace and cgroup mechanisms, UnionFS layering, and the complete lifecycle from image building to container execution and removal.

Cloud NativeDockerLinux Namespaces
0 likes · 5 min read
Master Docker: Core Architecture, Technologies, and Runtime Explained
php Courses
php Courses
Oct 27, 2025 · Backend Development

Why PHP-FPM Struggles in Cloud‑Native Environments and What Modern Runtimes Offer

This article examines PHP-FPM's historical strengths, its growing incompatibilities with containerized and micro‑service architectures, outlines three key bottlenecks, and presents modern alternatives such as Swoole, FrankenPHP, and serverless runtimes that enable higher performance, better resource efficiency, and improved observability.

ServerlessSwoolecloud-native
0 likes · 7 min read
Why PHP-FPM Struggles in Cloud‑Native Environments and What Modern Runtimes Offer
Raymond Ops
Raymond Ops
Oct 22, 2025 · Operations

Deploy Large AI Models with Docker: A Complete Zero‑to‑Production Guide

This guide explains why Docker is ideal for deploying large AI models and walks you through every step—from preparing the model and API code, building and running Docker images, to testing, optimizing, and finally deploying the containerized service in production environments.

DeploymentFastAPIcontainerization
0 likes · 10 min read
Deploy Large AI Models with Docker: A Complete Zero‑to‑Production Guide
MaGe Linux Operations
MaGe Linux Operations
Oct 21, 2025 · Cloud Native

Cut Deployment Time by 80% with Docker Swarm and Automated CI/CD Pipelines

This article shares how a team reduced deployment failures from 15% to 0.3% and cut average deployment time from 35 minutes to 8 minutes by integrating Docker Swarm container orchestration with a fully automated CI/CD pipeline, covering architecture choices, pipeline stages, stack configuration, optimisation tips, monitoring, and future AI‑driven ops trends.

AutomationDevOpsDocker Swarm
0 likes · 17 min read
Cut Deployment Time by 80% with Docker Swarm and Automated CI/CD Pipelines
mikechen
mikechen
Oct 16, 2025 · Cloud Native

Understanding Docker’s Core Technologies: Namespaces and Cgroups Explained

This article explains how Docker achieves container isolation and resource management using Linux kernel features—Namespaces for process, network, and filesystem isolation, and Cgroups for CPU, memory, and I/O control—along with practical command examples and configuration details.

DockerNamespacescgroups
0 likes · 5 min read
Understanding Docker’s Core Technologies: Namespaces and Cgroups Explained
Open Source Tech Hub
Open Source Tech Hub
Oct 11, 2025 · Cloud Native

What’s New in Docker‑PHP v4.0.0‑beta1? Deep Dive into FrankenPHP, Laravel Scripts, and QoL Boosts

Docker‑PHP v4.0.0‑beta1 introduces hardened FrankenPHP images, upgraded Laravel automation, a slew of fine‑grained environment variables, and numerous quality‑of‑life and bug‑fix improvements that make containerized PHP deployments smoother, more secure, and ready for production‑grade Kubernetes workloads.

Cloud NativeDockerFrankenPHP
0 likes · 8 min read
What’s New in Docker‑PHP v4.0.0‑beta1? Deep Dive into FrankenPHP, Laravel Scripts, and QoL Boosts
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Sep 30, 2025 · Backend Development

Microservices vs SOA: Key Differences Every Architect Should Know

Microservices and SOA differ in architecture design, communication methods, service granularity, governance, and deployment, with microservices favoring decentralized, fine‑grained, container‑based approaches while SOA relies on larger, centrally orchestrated services via an ESB, making each suited to distinct enterprise scenarios.

MicroservicesSOAService Architecture
0 likes · 4 min read
Microservices vs SOA: Key Differences Every Architect Should Know
Ops Community
Ops Community
Sep 29, 2025 · Cloud Native

Enterprise Docker Deployment: From Zero to Production – A Complete Guide

This comprehensive guide walks through the evolution of container technology, explains Docker's core mechanisms, and presents enterprise‑grade architecture, deployment strategies, monitoring, security hardening, and real‑world case studies, helping ops engineers build efficient, scalable, and secure production‑ready Docker environments.

DockerEnterprise DeploymentSecurity
0 likes · 19 min read
Enterprise Docker Deployment: From Zero to Production – A Complete Guide
DevOps Operations Practice
DevOps Operations Practice
Sep 24, 2025 · Cloud Native

How to Seamlessly Transition from Traditional Ops to Cloud Native: A Practical Guide

This article outlines the fundamental differences between traditional operations and cloud‑native practices, presents a four‑step migration strategy—including containerization, Kubernetes adoption, monitoring overhaul, and cultural shift—and highlights common pitfalls and measurable outcomes for a successful digital transformation.

Digital Transformationcontainerizationmonitoring
0 likes · 7 min read
How to Seamlessly Transition from Traditional Ops to Cloud Native: A Practical Guide
Architect
Architect
Sep 15, 2025 · Cloud Native

Is Docker Still the King? Exploring the Next Generation of Container Tools

While Docker once dominated containerization, its growing overhead, security concerns, and limited flexibility have prompted developers to explore lighter, more secure alternatives such as ServBay, Podman, containerd, and micro‑Kubernetes solutions, signaling a shift toward diversified, cloud‑native orchestration strategies for modern infrastructure.

DevOpsDockerKubernetes
0 likes · 9 min read
Is Docker Still the King? Exploring the Next Generation of Container Tools
Raymond Ops
Raymond Ops
Sep 10, 2025 · Cloud Native

Master Docker from Zero to Pro: The Ultimate Beginner’s Guide

This comprehensive Docker tutorial walks you through the technology's origins, core concepts, installation steps, essential commands, image layering, volume management, Dockerfile creation, and networking, providing clear examples and code snippets to help beginners become proficient container users.

DockerDockerfileInstallation
0 likes · 35 min read
Master Docker from Zero to Pro: The Ultimate Beginner’s Guide
Architecture Digest
Architecture Digest
Sep 2, 2025 · Cloud Native

Is Docker Still the Best Choice? Discover the Future of Containerization

This article examines Docker's diminishing universality, its historical impact, current limitations, and emerging alternatives such as lightweight runtimes, micro‑Kubernetes, and serverless platforms, guiding developers toward more efficient, secure, and adaptable container strategies for 2025 and beyond.

Cloud NativeDevOpsDocker
0 likes · 8 min read
Is Docker Still the Best Choice? Discover the Future of Containerization
ITPUB
ITPUB
Aug 31, 2025 · Cloud Native

Is Docker Still the King? Exploring the Next Generation of Container Tools

The article examines Docker's historic impact, its growing limitations in modern, large‑scale and diverse development environments, and surveys emerging lightweight runtimes, local development alternatives like ServBay, evolving orchestration options, and future trends shaping a more modular, secure, and AI‑driven container ecosystem.

Cloud NativeDockerKubernetes
0 likes · 9 min read
Is Docker Still the King? Exploring the Next Generation of Container Tools
Efficient Ops
Efficient Ops
Aug 25, 2025 · Cloud Native

Master Docker: From Basics to Advanced Networking and Deployment

This article provides a comprehensive guide to Docker, covering its core concepts, installation steps, essential commands, Dockerfile image creation, and networking modes such as bridge, host, and none, with practical code examples and diagrams.

DevOpsDockerDockerfile
0 likes · 10 min read
Master Docker: From Basics to Advanced Networking and Deployment
ITPUB
ITPUB
Aug 25, 2025 · Cloud Native

Unlock Powerful Docker Tools: A Curated Guide to Essential Containers

This article introduces a hand‑picked collection of useful Docker images—including remote IDEs, database managers, task schedulers, lightweight serverless services, personal homepages, monitoring tools, note‑taking apps, analytics, navigation pages, file browsers, and Docker UI managers—providing key features, practical use‑cases, and ready‑to‑run docker‑run and docker‑compose commands for developers and ops engineers.

DockerDocker ComposeOpenSource
0 likes · 16 min read
Unlock Powerful Docker Tools: A Curated Guide to Essential Containers
Airbnb Technology Team
Airbnb Technology Team
Aug 18, 2025 · Operations

How Airbnb’s Impulse Framework Enables Scalable, Decentralized Load Testing

This article explains how Airbnb’s internal Impulse load‑testing‑as‑a‑service framework combines a load generator, dependency simulator, traffic collector, and test‑API generator to provide decentralized, containerized performance testing that integrates seamlessly with CI/CD pipelines and mimics production traffic.

AirbnbDecentralizedLoad Testing
0 likes · 11 min read
How Airbnb’s Impulse Framework Enables Scalable, Decentralized Load Testing
Ops Community
Ops Community
Aug 18, 2025 · Operations

Master Dockerfile: From Beginner Mistakes to Pro-Level Best Practices

Learn how to avoid common Dockerfile pitfalls, choose optimal base images, streamline layer caching, implement health checks, and apply security best practices with real code examples, enabling faster builds, smaller images, and reliable production deployments for developers and ops engineers alike.

DevOpsDockerDockerfile
0 likes · 14 min read
Master Dockerfile: From Beginner Mistakes to Pro-Level Best Practices
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Aug 15, 2025 · Cloud Native

Master Docker Deployment: From Dockerfile to Running Containers

This article walks through Docker’s essential role in modern cloud-native architectures, explaining why containerization solves environment inconsistencies, and provides a step‑by‑step guide—including writing a Dockerfile, building images, running containers, and accessing services—for deploying Spring Boot microservices efficiently.

DevOpsDockerMicroservices
0 likes · 3 min read
Master Docker Deployment: From Dockerfile to Running Containers
Java Web Project
Java Web Project
Aug 4, 2025 · Databases

Why Docker May Not Be Ideal for MySQL: N Critical Reasons Explained

The article analyzes why running MySQL in Docker containers can cause data‑security risks, performance bottlenecks, state management problems, and insufficient resource isolation, while also outlining scenarios where containerization might still be viable.

DockerResource Isolationcontainerization
0 likes · 8 min read
Why Docker May Not Be Ideal for MySQL: N Critical Reasons Explained
IT Xianyu
IT Xianyu
Jul 21, 2025 · Databases

Deploy PostgreSQL on AlmaLinux with Docker Compose in One Click

This guide walks you through installing Docker and Docker Compose on AlmaLinux, creating a concise docker‑compose.yml to run PostgreSQL in an isolated container, connecting with DataGrip, and managing the lifecycle of the database service with simple commands.

AlmaLinuxDataGripDatabase Deployment
0 likes · 11 min read
Deploy PostgreSQL on AlmaLinux with Docker Compose in One Click
Liangxu Linux
Liangxu Linux
Jul 20, 2025 · Operations

Top 10 Essential Tools Every Operations Engineer Should Master

Discover the ten most widely used operations engineering tools—including Shell scripts, Git, Ansible, Prometheus, Grafana, Docker, Kubernetes, Nginx, ELK Stack, and Zabbix—detailing each tool's functions, ideal scenarios, advantages, and real‑world examples, plus sample code and configuration snippets.

ConfigurationDevOpsOperations
0 likes · 8 min read
Top 10 Essential Tools Every Operations Engineer Should Master
dbaplus Community
dbaplus Community
Jul 13, 2025 · Cloud Native

Avoid These 15 Docker Mistakes to Supercharge Your Deployments

This article reveals the 15 most common Docker pitfalls—from oversized images and root‑user containers to insecure secret handling and Kubernetes mismatches—explaining why they happen, showing concrete code fixes, and offering practical tips to build lean, secure, and production‑ready containers.

DevOpsDockerKubernetes
0 likes · 20 min read
Avoid These 15 Docker Mistakes to Supercharge Your Deployments
Efficient Ops
Efficient Ops
Jul 8, 2025 · Cloud Native

6 Must‑Try Docker Images to Supercharge Your Development Workflow

This article introduces six practical Docker images—including Code‑Server, CloudBeaver, QingLong, PocketBase, Uptime‑Kuma, and Dockge—detailing their key features, use cases, and ready‑to‑run Docker commands or compose files, enabling developers of any level to streamline coding, database management, automation, monitoring, and container orchestration.

AutomationDevOpsDocker
0 likes · 8 min read
6 Must‑Try Docker Images to Supercharge Your Development Workflow
Ops Community
Ops Community
Jun 23, 2025 · Cloud Native

Master Docker Deployment: From Installation to Advanced Container Management

This comprehensive guide walks you through Docker fundamentals, Linux installation steps, essential commands, data volume handling, custom image creation with Dockerfiles, networking tricks, full project deployment, and using Docker Compose to orchestrate multi‑service applications, all illustrated with practical code examples.

DockerDocker ComposeLinux
0 likes · 22 min read
Master Docker Deployment: From Installation to Advanced Container Management
Ops Community
Ops Community
Jun 22, 2025 · Cloud Native

Master Docker & Kubernetes: Essential Concepts Explained Simply

This guide walks you through Docker's lightweight container model versus traditional VMs, outlines Docker's architecture and key components, then introduces Kubernetes as an open‑source orchestration platform, detailing its capabilities, master‑node architecture, and core concepts such as Pods, Volumes, Deployments, Services, and Namespaces.

Cloud NativeDockerKubernetes
0 likes · 17 min read
Master Docker & Kubernetes: Essential Concepts Explained Simply
Architect
Architect
Jun 21, 2025 · Cloud Native

10 Essential Docker Images to Supercharge Your Development Workflow

This guide introduces a curated list of useful Docker images—including code‑server, CloudBeaver, QingLong, PocketBase, Homer, Uptime‑Kuma, Memos, Umami, Filebrowser, and Dockge—detailing their key features, recommended use cases, and ready‑to‑run installation commands for developers of all levels.

DevOpsDockerDocker Compose
0 likes · 16 min read
10 Essential Docker Images to Supercharge Your Development Workflow
php Courses
php Courses
Jun 18, 2025 · Cloud Native

Master Dockerizing Go Apps and Building CI/CD Pipelines for Reliable Deployments

Learn how to containerize Go applications with Docker, craft efficient multi‑stage Dockerfiles, and set up a complete CI/CD workflow using GitHub Actions, covering automated testing, image building, deployment, health checks, monitoring, and production best practices for robust, repeatable releases.

DevOpsDockerGitHub Actions
0 likes · 7 min read
Master Dockerizing Go Apps and Building CI/CD Pipelines for Reliable Deployments
dbaplus Community
dbaplus Community
Jun 16, 2025 · Cloud Native

Discover 12 Must‑Have Docker Images to Supercharge Your Development

This guide curates a collection of practical Docker images—including code‑server, CloudBeaver, QingLong, PocketBase, Homer, Uptime‑Kuma, and more—detailing their key features, recommended use cases, and ready‑to‑run docker run and docker‑compose commands to help developers quickly boost productivity.

Backend DevelopmentDevOpsDocker
0 likes · 13 min read
Discover 12 Must‑Have Docker Images to Supercharge Your Development
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Jun 6, 2025 · Cloud Native

Master Docker’s Core: Namespaces and Cgroups Explained

This article explains Docker’s fundamental technologies—how Linux namespaces provide process, network, and filesystem isolation while cgroups enforce resource limits such as CPU, memory, I/O, and process counts—offering a concise guide for building secure, efficient containerized applications.

DockerLinuxNamespaces
0 likes · 5 min read
Master Docker’s Core: Namespaces and Cgroups Explained
Java One
Java One
May 17, 2025 · Cloud Native

Master Docker: From Basics to Deep Dive on Isolation, Images, and Resource Management

This article provides a concise, visual guide to Docker, covering its background, differences from virtual machines, resource isolation mechanisms (namespaces, cgroups, networking), file system handling, image layering, storage drivers, and practical commands for inspecting configurations, transferring files, and packaging images for remote repositories.

DockerImageLinux
0 likes · 13 min read
Master Docker: From Basics to Deep Dive on Isolation, Images, and Resource Management
MaGe Linux Operations
MaGe Linux Operations
May 16, 2025 · Artificial Intelligence

Deploying Massive AI Models with Docker: A Complete From‑Zero‑to‑Production Guide

Learn how to efficiently package, build, and run large AI models in Docker containers—from preparing the model and API code, creating Dockerfiles, building and testing images, to scaling in production with Kubernetes and GPU support—complete with step‑by‑step commands and best‑practice tips.

AI Model DeploymentDockerFastAPI
0 likes · 10 min read
Deploying Massive AI Models with Docker: A Complete From‑Zero‑to‑Production Guide
vivo Internet Technology
vivo Internet Technology
Apr 16, 2025 · Big Data

Offline Mixed Deployment of Spark Tasks on Kubernetes: Containerization, Scheduling, and Elastic Resource Management

The article explains how the vivo Internet Big Data team containerized offline Spark jobs and deployed them with the Spark Operator on a mixed online‑offline Kubernetes cluster, using elastic scheduling and resource‑over‑subscription to boost CPU utilization by 30‑40% and handle over 100,000 daily tasks.

Big DataKubernetesResource Management
0 likes · 36 min read
Offline Mixed Deployment of Spark Tasks on Kubernetes: Containerization, Scheduling, and Elastic Resource Management
Linux Cloud Computing Practice
Linux Cloud Computing Practice
Apr 3, 2025 · Cloud Native

Unlock the Cloud Native Career Boom: 300+ Kubernetes Interview Questions & Resources

Amid ongoing turbulence in the internet industry, many programmers face layoffs and rapid tech changes, prompting a shift toward cloud‑native technologies where demand outpaces supply, salaries soar, and a comprehensive collection of over 300 Kubernetes, Docker, Jenkins, Prometheus, and Kafka interview questions is offered to help professionals seize the emerging opportunities.

cloud-nativecontainerizationinterview-questions
0 likes · 13 min read
Unlock the Cloud Native Career Boom: 300+ Kubernetes Interview Questions & Resources
21CTO
21CTO
Mar 9, 2025 · Fundamentals

10 Open‑Source Tools That Can Supercharge Your Coding Productivity

This article reviews ten open‑source development tools—from IDEs and version control to container platforms and AI‑powered code assistants—explaining how each can streamline workflows, automate repetitive tasks, and significantly boost coding efficiency for developers of any skill level.

AI-assistantIDEcontainerization
0 likes · 13 min read
10 Open‑Source Tools That Can Supercharge Your Coding Productivity
Top Architect
Top Architect
Feb 25, 2025 · Backend Development

Why Docker May Not Be Ideal for Running MySQL: N Reasons and Practical Guidance

The article examines why deploying MySQL in Docker containers can lead to data‑security, performance, state‑management and resource‑isolation problems, outlines mitigation strategies, discusses scenarios where containerization is feasible, and concludes with a call for community discussion while also featuring promotional material for AI‑related services.

Backend DevelopmentDockercontainerization
0 likes · 9 min read
Why Docker May Not Be Ideal for Running MySQL: N Reasons and Practical Guidance
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Feb 22, 2025 · Artificial Intelligence

Deploying DeepSeek Locally with Ollama, Building Personal and Organizational Knowledge Bases, and Integrating with Spring AI

This guide explains how to locally deploy the DeepSeek large‑language model using Ollama on Windows, macOS, and Linux, configure model storage and CORS, build personal and enterprise RAG knowledge bases with AnythingLLM and Open WebUI, and integrate the model into a Spring AI application via Docker and Docker‑Compose.

DeepSeekDockerKnowledge Base
0 likes · 16 min read
Deploying DeepSeek Locally with Ollama, Building Personal and Organizational Knowledge Bases, and Integrating with Spring AI
Xiaohongshu Tech REDtech
Xiaohongshu Tech REDtech
Jan 16, 2025 · Cloud Native

Xiaohongshu Large-Scale Cloud-Native Mixed Deployment and Elasticity Practices

Xiaohongshu’s cloud‑native team transformed its over‑90% containerized services by introducing resource‑pooled mixed deployment, fine‑grained unified scheduling, and an elastic container pool with global HPA and cluster autoscaling—driving 35% of resources to mixed use, tens of millions of daily core‑hours, and roughly 30% cost savings while preparing for hybrid‑cloud expansion and FinOps.

Operating Systemcloud-nativecontainerization
0 likes · 7 min read
Xiaohongshu Large-Scale Cloud-Native Mixed Deployment and Elasticity Practices
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Jan 16, 2025 · Cloud Native

Master High‑Performance Architecture: Caching, Async, Microservices, and Serverless

This article provides a comprehensive guide to building high‑performance systems by covering distributed caching, asynchronous processing, microservice design, containerization with Docker and Kubernetes, serverless computing, database optimization, and load‑balancing techniques such as peak shaving and valley filling.

Database OptimizationMicroservicesServerless
0 likes · 8 min read
Master High‑Performance Architecture: Caching, Async, Microservices, and Serverless
Raymond Ops
Raymond Ops
Jan 13, 2025 · Cloud Native

How Docker Transforms Go Web App Development and Deployment

This tutorial explains how to containerize a simple Go web application with Docker, set up a development workflow using Docker and Bee, build and run images, and automate continuous integration and deployment with Semaphore, covering prerequisites, Dockerfile creation, testing, and production deployment steps.

DockerGoWeb Development
0 likes · 23 min read
How Docker Transforms Go Web App Development and Deployment
IT Architects Alliance
IT Architects Alliance
Dec 24, 2024 · Cloud Native

Unlock Scalable, Highly Available IT Architecture: Key Strategies Explained

This article examines the modern challenges of IT architecture and presents proven techniques—microservices, container orchestration, distributed caching, redundancy, load balancing, and automated fault recovery—illustrated with Amazon and Google case studies, while forecasting future AI and cloud‑native trends.

Cloud NativeMicroservicesScalability
0 likes · 10 min read
Unlock Scalable, Highly Available IT Architecture: Key Strategies Explained
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Dec 21, 2024 · Cloud Native

Understanding Docker and Kubernetes: Principles, Architecture, and Deployment Practices

This article explains the fundamentals of containerization by reviewing virtualization concepts, detailing Docker's architecture and Dockerfile syntax, and then introduces Kubernetes' control‑plane and node components, providing step‑by‑step examples for deploying a simple Nginx service and a Java web application on a K8s cluster, both manually and with automation tools.

Cloud NativeDeploymentDevOps
0 likes · 19 min read
Understanding Docker and Kubernetes: Principles, Architecture, and Deployment Practices
58 Tech
58 Tech
Dec 19, 2024 · Big Data

Architecture Evolution and Implementation of the Intelligent Acceleration Engine in the 58 Big Data Platform

The article details the background, architectural analysis, multi‑tenant redesign, engine selection enhancements, compatibility adaptations, stability fixes, containerized deployment, performance optimizations, and measurable business outcomes of the Intelligent Acceleration Engine upgrade using Apache Kyuubi and StarRocks within the 58 big data platform.

Apache KyuubiBig DataData Architecture
0 likes · 12 min read
Architecture Evolution and Implementation of the Intelligent Acceleration Engine in the 58 Big Data Platform
Liangxu Linux
Liangxu Linux
Dec 5, 2024 · Cloud Native

Why Does Containerization Slow Down Your App? A Deep Dive into Performance Loss and Network Optimizations

Although containerization brings agility and resource efficiency, this article reveals that moving an application from a VM to Kubernetes containers can increase latency by 25% and reduce QPS by 29%, analyzes the root cause in network soft‑interrupt overhead, and proposes optimizations such as ipvlan, macvlan, and Cilium.

CiliumNetworkingcloud-native
0 likes · 8 min read
Why Does Containerization Slow Down Your App? A Deep Dive into Performance Loss and Network Optimizations
Java Tech Enthusiast
Java Tech Enthusiast
Dec 5, 2024 · Cloud Native

Optimizing Docker Images for Lightweight Deployment

By switching to a lightweight Alpine base, employing multi‑stage builds to separate compilation from runtime, and finally serving the React app with an Nginx Alpine image, Docker images can be reduced from over a gigabyte to roughly twenty‑two megabytes, enabling efficient, minimal‑footprint container deployment.

AlpineDockerNGINX
0 likes · 6 min read
Optimizing Docker Images for Lightweight Deployment
Top Architect
Top Architect
Nov 16, 2024 · Cloud Native

Why Docker May Not Be Suitable for Running MySQL: Data Security, Performance, State, and Resource Isolation Issues

The article examines why deploying MySQL in Docker containers can be problematic, highlighting data‑security risks, performance bottlenecks, state‑management challenges, and limited resource isolation, while also noting specific scenarios where containerizing MySQL might still be viable.

Cloud NativeDockercontainerization
0 likes · 8 min read
Why Docker May Not Be Suitable for Running MySQL: Data Security, Performance, State, and Resource Isolation Issues
Code Mala Tang
Code Mala Tang
Nov 13, 2024 · Cloud Native

10 Common Docker Anti‑Patterns and How to Fix Them

This article lists ten frequent Docker anti‑patterns—such as using large base images, running as root, and neglecting health checks—and provides practical solutions to improve container efficiency, security, and scalability.

containerizationperformance
0 likes · 7 min read
10 Common Docker Anti‑Patterns and How to Fix Them
Lobster Programming
Lobster Programming
Nov 12, 2024 · Databases

Why Deploying MySQL in Docker Can Be Problematic: Scaling & Memory Pitfalls

This article explains why using Docker to host MySQL is generally discouraged, highlighting challenges in database scaling due to container‑exclusive storage, difficulties sharing data files, and memory contention among containers, while also outlining possible synchronization solutions and scenarios where containerized MySQL may still be viable.

DockerMemory Managementcontainerization
0 likes · 4 min read
Why Deploying MySQL in Docker Can Be Problematic: Scaling & Memory Pitfalls
Selected Java Interview Questions
Selected Java Interview Questions
Nov 8, 2024 · Cloud Native

Performance Degradation After Containerization: Analysis and Optimization Strategies

The article examines why applications experience slower performance after being containerized on Kubernetes, presenting benchmark comparisons, analyzing increased soft‑interrupt overhead due to the Calico ipip overlay, and proposing network optimizations such as ipvlan modes and Cilium to restore efficiency.

CiliumKubernetesSoft Interrupts
0 likes · 7 min read
Performance Degradation After Containerization: Analysis and Optimization Strategies
Efficient Ops
Efficient Ops
Nov 3, 2024 · Operations

Top 10 Essential Ops Tools Every Engineer Should Master

This article introduces ten indispensable tools for operations engineers, detailing each tool's functionality, ideal use cases, key advantages, and real‑world examples, plus code snippets and visual illustrations to help you choose the right solution for automation, monitoring, configuration, and container management.

containerization
0 likes · 9 min read
Top 10 Essential Ops Tools Every Engineer Should Master
DevOps
DevOps
Oct 16, 2024 · Cloud Native

How Container Technology Boosts R&D Efficiency in DevOps

This article explains the concept of R&D efficiency, introduces container technology and its isolation mechanisms, and details how containers—through micro‑service decomposition, automated CI/CD pipelines, and dynamic orchestration—can dramatically improve development speed, quality, and operational cost in modern software engineering.

DevOpsKubernetesci/cd
0 likes · 12 min read
How Container Technology Boosts R&D Efficiency in DevOps
Architecture and Beyond
Architecture and Beyond
Sep 28, 2024 · Cloud Native

Core Concepts of Docker and Kubernetes for Architects

This article explains the fundamental principles of Docker containerization and Kubernetes orchestration, covering containerization, image layering, core components, declarative APIs, Pods, Services, Namespaces, ConfigMaps, Secrets, Volumes, and their combined advantages and challenges for enterprise‑level system design.

Cloud NativeDockerKubernetes
0 likes · 30 min read
Core Concepts of Docker and Kubernetes for Architects
Liangxu Linux
Liangxu Linux
Sep 17, 2024 · Operations

Top 10 Essential Ops Tools Every Engineer Should Master

This article presents ten indispensable tools for operations engineers—detailing each tool’s functionality, ideal use cases, advantages, and real‑world examples, from shell scripting and Git to Ansible, Prometheus, Grafana, Docker, Kubernetes, Nginx, the ELK stack, and Zabbix, helping professionals streamline automation, monitoring, and deployment tasks.

AutomationConfiguration ManagementDevOps
0 likes · 8 min read
Top 10 Essential Ops Tools Every Engineer Should Master
OPPO Kernel Craftsman
OPPO Kernel Craftsman
Aug 30, 2024 · Cloud Native

Middleware Containerization and Cloud‑Native Transformation at OPPO

OPPO transformed its sprawling, manually‑provisioned middleware clusters into a cloud‑native, containerized platform by building custom Kubernetes controllers, IP‑preserving StatefulSets, resource‑isolated containers, automated monitoring and self‑healing workflows, enabling rapid provisioning, efficient utilization, fault‑tolerant scaling and future serverless and service‑mesh integration.

KubernetesOperatorcloud-native
0 likes · 20 min read
Middleware Containerization and Cloud‑Native Transformation at OPPO
FunTester
FunTester
Aug 28, 2024 · Operations

Shadow Testing: Reducing Risk and Ensuring Seamless System Changes

Shadow testing is a parallel deployment strategy that minimizes the risk of system changes, safeguards user experience, validates performance and data integrity, and provides a controlled environment for comprehensive testing, supported by a suite of modern tools and real‑world case studies.

DeploymentShadow TestingSoftware Testing
0 likes · 17 min read
Shadow Testing: Reducing Risk and Ensuring Seamless System Changes
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Aug 27, 2024 · Frontend Development

Understanding Nginx for Frontend Deployment: Practical Scenarios, Containerized Setup, and Common Pitfalls

This article explains why front‑end developers should master Nginx, covering login and interview scenarios, step‑by‑step containerized deployment with Docker, custom error pages, DNS caching issues, and practical tips to improve both production reliability and interview answers.

DockerNGINXWeb server
0 likes · 13 min read
Understanding Nginx for Frontend Deployment: Practical Scenarios, Containerized Setup, and Common Pitfalls
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Aug 20, 2024 · Cloud Native

Four Common Microservice Deployment Strategies Explained

This article outlines four typical microservice deployment approaches—instance deployment, container deployment, serverless deployment, and container orchestration—detailing their architectures, benefits, drawbacks, and practical illustrations to help developers choose the most suitable method for scalable, efficient cloud-native applications.

DeploymentServerlesscontainerization
0 likes · 7 min read
Four Common Microservice Deployment Strategies Explained
Architecture Development Notes
Architecture Development Notes
Aug 19, 2024 · Cloud Native

10 Essential Docker Best Practices to Boost Efficiency and Security

This guide presents ten essential Docker best practices—from choosing official images and minimizing layers to leveraging multi‑stage builds, .dockerignore, Compose, volumes, resource constraints, security, monitoring, and CI/CD automation—helping developers create efficient, secure, and maintainable containerized applications.

DevOpsDockerbest practices
0 likes · 14 min read
10 Essential Docker Best Practices to Boost Efficiency and Security
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Aug 18, 2024 · Frontend Development

Persisting Frontend Static Resources in Containerized Deployments

The article explains why static assets of a single‑page frontend application disappear after a container restart, analyzes the root cause, and presents a practical solution that stores assets on an external file server or CDN while keeping only index.html inside the container, thereby eliminating 404 errors caused by missing resources.

CDNVitecontainerization
0 likes · 13 min read
Persisting Frontend Static Resources in Containerized Deployments
MaGe Linux Operations
MaGe Linux Operations
Aug 14, 2024 · Cloud Native

Master Docker: Core Concepts, Installation, and Essential Commands

This guide introduces Docker’s fundamental concepts, explains its advantages and architecture, walks through installation steps, and provides a comprehensive list of common Docker commands for managing images and containers, including practical examples such as setting up SSH access within a container.

Container ManagementDevOpsDocker
0 likes · 11 min read
Master Docker: Core Concepts, Installation, and Essential Commands