Topic

#Cloud

89 posts tagged “Cloud”.

Chisato Chisato · · 3 min read

What Is a Runbook? Incident Response Playbooks

A runbook is a step-by-step document for handling a specific operational task or incident, turning tribal knowledge into a repeatable procedure.

#DevOps #Cloud #Observability
Chisato Chisato · · 4 min read

What Is a NAT Gateway?

A NAT gateway lets private-subnet resources reach the internet outbound while staying unreachable from it, translating private IPs to a public one.

#Cloud #Networking #DevOps
Chisato Chisato · · 6 min read

Firmus Raises $2B at $10.5B for AI Factories

Nvidia-backed Firmus raised $2B from Blackstone, Coatue and Jane Street at a $10.5B valuation to build energy-efficient AI data centers across Asia-Pacific.

#AI #Cloud #Data Centers
Chisato Chisato · · 4 min read

Kubernetes StatefulSets vs Deployments Explained

Deployments manage interchangeable, stateless pods; StatefulSets give each pod a stable identity and storage. When each one actually belongs.

#Kubernetes #DevOps #Cloud
Chisato Chisato · · 5 min read

Multi-Cloud vs Hybrid Cloud: The Real Difference

Multi-cloud spreads workloads across public cloud providers; hybrid cloud connects private infrastructure to a public cloud. How they differ and why it matters.

#Cloud #DevOps #Infrastructure
Chisato Chisato · · 6 min read

Google's $15B India Data Center Faces Water Protests

Google's $15B Visakhapatnam AI data center with Adani faces legal challenges and protests over water use and a nearby wildlife sanctuary. What's at stake.

#Infrastructure #Cloud #Google
Chisato Chisato · · 5 min read

What Is a Kubernetes Operator?

A Kubernetes operator encodes operational knowledge into software, automating tasks a human admin would otherwise do by hand for a specific application.

#Kubernetes #Cloud #DevOps
Chisato Chisato · · 5 min read

Exponential Backoff and Retry Strategies Explained

Exponential backoff spaces retries further apart after each failure so clients stop hammering a struggling service. How it works, and why it needs jitter.

#DevOps #Cloud #Distributed Systems
Chisato Chisato · · 5 min read

Logs vs Metrics vs Traces: The Three Pillars

Logs, metrics, and traces each answer a different question about a running system — what each captures, and how they work together.

#DevOps #Cloud #Developer Tools
Chisato Chisato · · 5 min read

Terraform vs Ansible: Provisioning vs Configuration

Terraform and Ansible solve different infrastructure problems: declarative provisioning versus procedural configuration. When to use each, and when to use both.

#DevOps #Cloud #Infrastructure
Chisato Chisato · · 4 min read

Monorepo vs Polyrepo: Which Should You Choose

A monorepo holds all projects in one repository; a polyrepo splits them apart. Trade-offs in tooling, ownership, and CI/CD for each approach.

#DevOps #Developer Tools #Cloud
The Lycoris Team The Lycoris Team · · 4 min read

What Is a Dead Letter Queue? Failed Message Handling

A dead letter queue holds messages a system couldn't process after repeated retries, isolating failures so they don't block or silently vanish. How it works.

#Backend #Infrastructure #Cloud
Chisato Chisato · · 4 min read

Active-Active vs Active-Passive Architecture

Active-active runs every region live and load-balanced; active-passive keeps a standby idle until failover. How each affects cost, consistency, and recovery.

#Cloud #DevOps #Distributed Systems
The Lycoris Team The Lycoris Team · · 3 min read

Kafka vs RabbitMQ: Choosing a Message Broker

Kafka is a durable, replayable log built for high-throughput streams; RabbitMQ is a traditional broker built for flexible routing and task queues.

#Backend #Infrastructure #Cloud
Chisato Chisato · · 4 min read

The Twelve-Factor App Methodology Explained

The twelve-factor app is a set of principles for building portable, scalable cloud software. Each factor explained, and why they still hold up today.

#DevOps #Cloud #Developer Tools
Chisato Chisato · · 5 min read

The Pub/Sub Pattern Explained

Publish-subscribe decouples senders from receivers through a message broker, letting services communicate without knowing who's listening.

#Distributed Systems #Cloud #Architecture
Chisato Chisato · · 4 min read

Log Aggregation Explained: Centralizing App Logs

Log aggregation collects logs from every service into one searchable system, so debugging a distributed app doesn't mean SSHing into a dozen machines.

#DevOps #Cloud #Developer Tools
Chisato Chisato · · 4 min read

Kubernetes HPA vs VPA: Autoscaling Explained

Kubernetes HPA scales pod replica count; VPA resizes CPU and memory requests per pod. How each autoscaler works and when to use them together.

#Kubernetes #DevOps #Cloud
Chisato Chisato · · 4 min read

What Is a VPC? Virtual Private Clouds Explained

A VPC is an isolated, software-defined network inside a public cloud. How subnets, routing, and security groups fit together to keep resources private.

#Cloud #Networking #DevOps
Chisato Chisato · · 4 min read

What Is Infrastructure Drift? Causes and Prevention

Infrastructure drift is when a system's real-world state diverges from what its infrastructure-as-code declares. Causes, detection, and how to prevent it.

#DevOps #Cloud #Developer Tools
Chisato Chisato · · 4 min read

What Is Secrets Management?

Secrets management stores API keys, passwords, and certificates in a dedicated system instead of config files, with access control, rotation, and audit logs.

#Security #Cloud #DevOps
Chisato Chisato · · 5 min read

OpenAI Outage: ChatGPT, Codex, API Down Again

OpenAI hit its fourth outage in four days on July 25, 2026, as ChatGPT, Codex and the API returned 503 'circuit open' errors worldwide. What broke and why.

#OpenAI #Infrastructure #Cloud
Chisato Chisato · · 5 min read

Microsoft 365 Outage July 2026: What Broke and Why

A maintenance bug in Microsoft's West US Azure region took down Teams, SharePoint, OneDrive and Copilot for hours on July 23, 2026. Here's the breakdown.

#Cloud #Microsoft #Infrastructure
Chisato Chisato · · 4 min read

What Is CXL (Compute Express Link)?

CXL is an interconnect standard that lets CPUs, GPUs, and memory devices share coherent memory over PCIe, enabling memory pooling and expansion.

#Hardware #Chips #Cloud
Chisato Chisato · · 4 min read

What Is a CRDT? Conflict-Free Replicated Data Types

A CRDT is a data structure that merges concurrent edits from multiple replicas automatically, without coordination or conflicts, using math instead of locks.

#Databases #Cloud #Computer Science
Chisato Chisato · · 4 min read

What Is a Bastion Host?

A bastion host is a hardened server that acts as the single controlled entry point into a private network, shrinking the attack surface for admins.

#Security #Cloud #Networking
Chisato Chisato · · 4 min read

What Is Infrastructure as Code? IaC Explained

Infrastructure as code defines servers, networks, and services in version-controlled files instead of manual setup. How IaC works and why teams use it.

#DevOps #Cloud #Developer Tools
Chisato Chisato · · 4 min read

Horizontal vs Vertical Scaling Explained

Horizontal scaling adds more machines; vertical scaling adds more power to one machine. How each works, their limits, and when to use which.

#Cloud #DevOps #Backend
Chisato Chisato · · 4 min read

API Gateway vs Reverse Proxy: What's the Difference?

An API gateway and a reverse proxy both sit in front of your services, but a gateway adds API-specific logic a plain proxy doesn't. Here's the difference.

#DevOps #Cloud #Developer Tools
Chisato Chisato · · 4 min read

Immutable Infrastructure, Explained

Immutable infrastructure replaces servers instead of patching them in place — every change ships as a new, versioned artifact. How it works and why.

#DevOps #Cloud #Infrastructure
Chisato Chisato · · 4 min read

What Is the Circuit Breaker Pattern in Software?

The circuit breaker pattern stops a service from hammering a failing dependency, failing fast instead and giving the downstream system room to recover.

#DevOps #Cloud #Software Architecture
Chisato Chisato · · 5 min read

AWS CloudFront Outage: What Broke and Why

A 3.5-hour AWS CloudFront outage hit VPC Origins users on July 16, 2026, serving 5xx errors and taking Hugging Face and others offline. Here's the breakdown.

#Cloud #AWS #Infrastructure
Chisato Chisato · · 5 min read

Nvidia, Mitsubishi Heavy Eye AI Data Center Cooling

Nvidia and Mitsubishi Heavy Industries are exploring a partnership on cooling and power systems for AI data centers, targeting the heat and energy bottleneck.

#Infrastructure #AI #Nvidia
Chisato Chisato · · 3 min read

What Is the Sidecar Pattern? Kubernetes Sidecars

The sidecar pattern runs a helper container alongside your app in the same pod, adding logging, proxying, or security without touching app code.

#Kubernetes #DevOps #Cloud
Chisato Chisato · · 4 min read

SLA vs SLO vs SLI: Reliability Metrics Explained

An SLI measures reliability, an SLO sets an internal target for it, and an SLA is the contractual promise built on top. Here's how the three fit together.

#DevOps #Cloud #Developer Tools
Chisato Chisato · · 5 min read

Meta's $10B Alberta Data Center: Canada AI Buildout

Meta is building its first Canadian data center, a 1-gigawatt AI campus in Alberta, backed by a new 932 MW gas plant. The scope, the power problem, and why it matters.

#Meta #Infrastructure #AI
Kurumi Kurumi · · 5 min read

Amazon's $25 Billion AI Bond Sale: What It Signals

Amazon returned to the bond market for $25 billion across eight tranches to fund AI data centers, then paused further 2026 debt. The deal and what it signals.

#Amazon #Markets #AI
Chisato Chisato · · 4 min read

What Is Observability? Logs, Metrics, and Traces

Observability is the ability to understand a system's internal state from its external outputs — built from logs, metrics, and traces working together.

#DevOps #Cloud #Developer Tools
Chisato Chisato · · 4 min read

What Is a Cron Job? Scheduled Tasks Explained

A cron job runs a command automatically on a fixed schedule defined by a five-field expression. How cron syntax works and where it's still used today.

#DevOps #Cloud #Developer Tools
Chisato Chisato · · 5 min read

What Is a Reverse Proxy? How It Works, Explained

A reverse proxy sits in front of servers, forwarding client requests and hiding backend topology. TLS termination, caching, and load balancing explained.

#Networking #Cloud #DevOps
Chisato Chisato · · 6 min read

Google's AI Data Centers Drove a 37% Power Surge

Google's 2026 environmental report shows electricity use jumped 37% in a year — its largest-ever rise — as AI data centers reshaped its energy footprint.

#AI #Infrastructure #Google
Chisato Chisato · · 4 min read

SoftBank Launches SB Neo for a 10GW US Neocloud Push

SoftBank is forming SB Neo to sell AI compute to US hyperscalers and enterprises, scaling toward 10 gigawatts. What the neocloud entrant means for the market.

#Cloud #AI #Infrastructure
Chisato Chisato · · 4 min read

Anatomy of an Outage: The Day Facebook Vanished

On October 4, 2021, Facebook, Instagram, and WhatsApp vanished for six hours. How one network command and a DNS safety mechanism took it all down.

#Networking #DNS #Reliability
Kurumi Kurumi · · 3 min read

The AI Capex Boom: Why Hyperscalers Keep Spending

Hyperscalers are pouring record sums into AI data centers, chips, and power. What's driving the capex boom, who profits, and the risk if demand stalls.

#AI #Markets #Hardware
Chisato Chisato · · 6 min read

How to Deploy a Hono API on Cloudflare Workers

Deploy a Hono API on Cloudflare Workers step by step: scaffold the project, add routes, middleware, and KV storage, test locally, and ship it worldwide.

#Cloud #Serverless #Cloudflare
Takina Takina · · 2 min read

Cloudflare Builds Out Its Platform for AI Agents

Cloudflare's June updates target AI agents: longer-lived Durable Objects, tokenless temporary deploys, PlanetScale databases, and a private bot protocol.

#Cloud #Developer Tools #Agents
The Lycoris Team The Lycoris Team · · 4 min read

Microservices vs Monolith: How to Choose

Monoliths ship faster early; microservices buy independent scaling and team autonomy at the cost of distributed complexity. How to choose.

#DevOps #Cloud #Web Development
The Lycoris Team The Lycoris Team · · 3 min read

China Unveils a $295 Billion AI Infrastructure Plan

China unveiled a $295 billion, five-year national AI infrastructure plan — one of the largest state AI commitments ever. Here's the scale and the strategic stakes.

#AI #Hardware #Cloud
The Lycoris Team The Lycoris Team · · 7 min read

What Is a Load Balancer? How It Works, Explained

A load balancer distributes traffic across servers to prevent overload and downtime. Layer 4 vs Layer 7, routing algorithms, health checks, and TLS.

#Networking #Cloud #Performance
The Lycoris Team The Lycoris Team · · 4 min read

What Is Apache Kafka? Event Streaming, Explained

Apache Kafka is a distributed event-streaming platform built on a durable, append-only log. How topics, partitions, and consumers power real-time pipelines.

#Databases #DevOps #Cloud
The Lycoris Team The Lycoris Team · · 3 min read

What Is Go? Google's Language for the Cloud Era

Go is a compiled language from Google built for simplicity, fast builds, and easy concurrency — the language behind Docker and Kubernetes.

#Programming Languages #Developer Tools #Cloud
The Lycoris Team The Lycoris Team · · 4 min read

What Is Terraform? Infrastructure as Code, Explained

Terraform lets you declare cloud infrastructure as code and provision it reproducibly across AWS, GCP, and Azure. How plan/apply, state, and modules work.

#DevOps #Cloud #Developer Tools
Chisato Chisato · · 4 min read

Post-Quantum Cryptography: Why Migration Starts Now

Quantum computers threaten RSA and ECC. The NIST post-quantum standards are finalized — here's what they replace, what's already deployed, and how to prepare.

#Security #Cryptography #Cloud
Chisato Chisato · · 2 min read

OpenAI and NVIDIA Plan 10 Gigawatts of AI Compute

OpenAI and NVIDIA unveiled a landmark deal: at least 10 gigawatts of NVIDIA systems and up to $100 billion in investment, starting on the Vera Rubin platform.

#AI #Hardware #Cloud
The Lycoris Team The Lycoris Team · · 4 min read

What Is Serverless? Functions, Scaling, and Cost

Serverless means deploying code without managing servers — the platform scales it and you pay per use. How it works and where it fits.

#Cloud #Serverless #DevOps
The Lycoris Team The Lycoris Team · · 4 min read

SQL vs NoSQL: How to Actually Choose

SQL and NoSQL aren't rivals — they suit different shapes of data. How relational and non-relational databases compare, and how to pick.

#Databases #Cloud #Developer Tools
The Lycoris Team The Lycoris Team · · 5 min read

The Quiet Rise of Edge Databases

Putting compute at the edge is old news — now the data is moving there too. Edge databases promise low latency everywhere, with some real trade-offs.

#Cloud #Databases #Edge

← All topics