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

推荐订阅源

Last Week in AI
Last Week in AI
H
Help Net Security
博客园 - 叶小钗
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
腾讯CDC
MongoDB | Blog
MongoDB | Blog
宝玉的分享
宝玉的分享
P
Proofpoint News Feed
GbyAI
GbyAI
Microsoft Security Blog
Microsoft Security Blog
A
About on SuperTechFans
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
月光博客
月光博客
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News

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
Top 30 Cloud Architect Interview Questions and Answers [2...
Citadel Cloud Management · 2026-06-27 · via DEV Community

Citadel Cloud Management

I have been on both sides of the cloud architect interview table. As a hiring manager at Lockheed Martin and Cigna Healthcare, I conducted over 200 technical interviews for cloud architecture roles. As a candidate, I went through interview loops at three Fortune 500 companies and two government contractors.

Each question below includes the answer I would accept from a senior candidate, with the depth and specificity that separates a hire from a rejection.

Foundational Architecture Questions

1. What is the difference between high availability and fault tolerance?

High availability minimizes downtime through redundancy. A system with 99.99% availability (52 minutes of downtime per year) is highly available. It may experience brief interruptions during failover but recovers quickly.

Fault tolerance means the system continues operating without any interruption when a component fails. Fault tolerance is more expensive because it requires active-active redundancy rather than active-passive.

2. Explain the CAP theorem and how it applies to cloud database selection.

The CAP theorem states that a distributed system can guarantee at most two of three properties: Consistency, Availability, and Partition tolerance.

In practice, partition tolerance is non-negotiable. The real choice is:

  • CP systems (DynamoDB strongly consistent, Cloud Spanner): sacrifice availability during partitions. Use for financial transactions.
  • AP systems (DynamoDB eventually consistent, Cassandra): sacrifice consistency during partitions. Use for social feeds, session stores.

3. How do you design a multi-region active-active architecture?

Key challenges: data replication, conflict resolution, and routing.

  1. Data layer: globally distributed database (DynamoDB Global Tables, CockroachDB, Cloud Spanner) or cross-region replication with conflict resolution
  2. Application layer: identical stacks per region with feature flags for regional rollouts
  3. Routing: Route 53 latency-based routing or Cloudflare load balancing
  4. Conflict resolution: last-writer-wins, vector clocks, or application-level merge logic
  5. Testing: regular "region evacuation" drills

4. How would you migrate a monolithic application to microservices?

I use the Strangler Fig pattern, not a big-bang rewrite:

  1. Map domains using domain-driven design. Identify bounded contexts
  2. Extract incrementally, starting with the domain that has the clearest API boundary
  3. Separate the shared database into per-service databases with eventual consistency through events
  4. Introduce an API gateway to route between monolith and new services
  5. Implement distributed tracing before extracting services
  6. Budget 6-18 months. Teams that try 3 months end up with a distributed monolith

5. Containers vs. serverless -- when do you choose each?

Dimension Containers Serverless
Startup time Seconds to minutes Milliseconds to seconds
Max execution Unlimited 15 minutes (Lambda)
Cost model Per-hour (even when idle) Per-invocation + duration
State Stateful possible Stateless by design
Best for Long-running services Event-driven processing, variable-load APIs

Read all 30 questions with detailed answers covering security, cost optimization, Kubernetes, and system design scenarios ->


Originally published at Citadel Cloud Management. 17 free cloud courses available -- no credit card required.