0Pricing
Cloud & IT Cert Prep · 课时

识别题目中的关键词与服务信号

训练自己识别“最具成本效益”“最高可用性”“运营开销”和“无服务器”等触发词,从而判断正确的服务选择

识别题目中的关键词与服务信号 是 CoddyKit 上的免费 Cloud & IT Cert Prep 课时。 这是第 2 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Cloud & IT Cert Prep 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Cloud & IT Cert Prep 课程共包含 4 节课。

关键词为何对考试很重要

SAA-C03 场景题通常会描述一个业务问题,但不会直接指出正确的 AWS 服务。相反,题目会嵌入关键词信号——这些词语和短语一旦被识别,就能直接指向正确的服务或方法。应试经验丰富的人会将每个场景阅读两遍:第一遍了解整体背景,第二遍寻找能够缩小答案范围的具体关键词。漏掉 'serverless' 或 'lowest cost' 这样的单个关键词,可能会让您选中看似合理但实际错误的答案。

成本信号关键词

当题目强调成本时,特定关键词会对应特定的 AWS 模式。'most cost-effective'通常表示 Spot Instances、S3 Glacier 或 Savings Plans。'reduce cost without code changes' → Reserved Instances 或适当调整。'pay only for what you use' → Lambda 或 Fargate(无服务器)。'minimise data transfer cost' → CloudFront、VPC 端点或同一 Region 内的访问。当成本是主要约束时,请始终优先选择更便宜且完全托管的选项。

# Cost keyword -> answer mapping:
# 'lowest cost for batch jobs' -> Spot Instances
# 'archive rarely accessed data' -> S3 Glacier Deep Archive
# 'steady workload for 3 years' -> Reserved Instances or Savings Plans
# 'event-driven, unpredictable traffic' -> Lambda (pay per invocation)
# 'reduce inter-Region data transfer' -> CloudFront or regional caching
# 'remove idle EC2 instances' -> AWS Compute Optimizer right-sizing

性能信号关键词

性能关键词对应特定的架构选择。'millisecond latency' → DynamoDB 或 ElastiCache。'global low latency' → CloudFront 或 Global Accelerator。'high IOPS' → EBS io2 Block Express 或实例存储。'shared file system across multiple EC2' → EFS。'read-heavy workload' → Read Replicas 或 ElastiCache。'GPU / machine learning' → P 或 G EC2 实例系列。请将性能要求与为相应工作负载而设计的服务相匹配。

# Performance keyword -> answer mapping:
# 'sub-millisecond cache' -> ElastiCache (Redis)
# 'global static content delivery' -> CloudFront
# 'HPC / tightly coupled compute' -> Cluster placement group, EFA
# 'shared POSIX filesystem across Linux instances' -> Amazon EFS
# 'Windows SMB file shares' -> FSx for Windows File Server
# 'in-memory key-value, session state' -> ElastiCache (Memcached or Redis)
# 'relational + scales to millions of writes' -> Aurora

安全信号关键词

鉴于域 1 占 30% 的权重,安全关键词在 SAA-C03 中十分常见。'encrypt data at rest' → KMS(SSE-KMS、S3-KMS、EBS/RDS 加密)。'rotate credentials automatically' → Secrets Manager。'detect threats in real time' → GuardDuty。'scan for vulnerabilities' → Amazon Inspector。'discover PII in S3' → Amazon Macie。'block SQL injection / XSS' → AWS WAF。'DDoS protection' → AWS Shield Standard(免费)或 Shield Advanced(付费,并提供 DRT 支持)。

# Security keyword -> answer mapping:
# 'IAM role for EC2 to access S3' -> EC2 instance profile with IAM role
# 'prevent public access to S3 bucket' -> Block Public Access + bucket policy
# 'audit all API calls in account' -> AWS CloudTrail
# 'ensure resources comply with policy' -> AWS Config + Config Rules
# 'TLS certificate for ALB' -> AWS Certificate Manager (ACM)
# 'cross-account role assumption' -> IAM Trust Policy + STS AssumeRole

运营开销关键词

'least operational overhead'是考试中最常见的限定条件之一。它总是会引导您优先选择托管服务或无服务器服务,而不是自行管理的替代方案。EC2 需要修补 OS → 改用 Fargate 或 Lambda。自行管理的 MySQL → 改用 RDS。自行管理的 Redis → ElastiCache。自定义负载均衡器 → ALB。自定义 DNS → Route 53。自定义 cron 任务 → EventBridge Scheduled Rules。如果两个答案在架构上等效,但一个是托管服务、另一个需要自行管理,那么 'least operational overhead' 会指向托管选项。

# 'least operational overhead' -> managed service wins
# Self-managed on EC2          -> Managed AWS equivalent
# MySQL on EC2                 -> Amazon RDS for MySQL
# Redis on EC2                 -> Amazon ElastiCache for Redis
# Kafka on EC2                 -> Amazon MSK (Managed Streaming for Kafka)
# Elasticsearch on EC2         -> Amazon OpenSearch Service
# Custom batch scheduler       -> AWS Batch
# Custom ETL scripts on EC2    -> AWS Glue (serverless ETL)

可扩展性和弹性关键词

'variable load'、'sudden traffic spikes'或 'unpredictable demand'表示需要自动扩展和弹性。答案几乎总是涉及 Auto Scaling Groups(用于 EC2)、Lambda(用于可扩展到零的事件驱动计算)、DynamoDB On-Demand(用于不可预测的数据库负载),或带有自动扩展分片的 Kinesis Data Streams。当场景描述的是可变或不可预测的负载时,请避免选择固定容量的答案(Reserved Instances、预置吞吐量)。

# Scalability keyword -> answer mapping:
# 'scale to zero when no traffic' -> Lambda or Fargate (task count 0)
# 'handle flash sales / burst traffic' -> ALB + ASG with step scaling
# 'unpredictable database read/write' -> DynamoDB On-Demand mode
# 'stream processing with variable throughput' -> Kinesis On-Demand
# 'global traffic with automatic failover' -> Route 53 health check failover
# 'scale read capacity for RDS' -> Read Replicas (up to 15 for Aurora)

迁移和现代化关键词

迁移场景中的关键词会直接对应 7 Rs 和 AWS 迁移工具。'move quickly with no changes' → Rehost / AWS MGN。'reduce DBA overhead' → 重新平台化到 RDS。'heterogeneous database engine migration' → DMS + SCT。'move VMware workloads' → VMware Cloud on AWS(Relocate)。'discover on-premises servers' → Application Discovery Service。'track migration progress' → AWS Migration Hub。'transfer terabytes of data offline' → AWS Snowball Edge。

# Migration keyword -> answer mapping:
# 'petabytes of data, slow internet' -> AWS Snowball Edge (offline transfer)
# 'replicate servers to AWS with < 1 hour RTO' -> AWS MGN
# 'Oracle to PostgreSQL schema conversion' -> AWS SCT + DMS
# 'ongoing DB replication, minimal downtime' -> DMS Full Load + CDC
# 'inventory 5000 on-premises VMs' -> Application Discovery Service
# 'assess portfolio and recommend strategy' -> Migration Hub Strategy Recommendations

数据库选择关键词

数据库相关问题会出现在领域 2 和领域 3 中。请将需求映射到正确的数据库服务。'relational, managed, ACID' → RDS 或 Aurora。'key-value, millisecond at scale' → DynamoDB。'in-memory cache / session store' → ElastiCache。'analytics / columnar queries on petabytes' → Amazon Redshift。'fully managed search' → Amazon OpenSearch Service。'graph relationships' → Amazon Neptune。'time series' → Amazon Timestream。数据库类型中只要有一个关键词不匹配,通常就可以立即排除该选项。

# Database keyword -> correct service:
# 'ACID transactions, joins' -> RDS (MySQL/PostgreSQL) or Aurora
# 'single-digit millisecond at any scale' -> DynamoDB
# 'session caching, Pub/Sub, leaderboard' -> ElastiCache Redis
# 'complex SQL analytics, BI' -> Amazon Redshift
# 'social network, fraud detection graphs' -> Amazon Neptune
# 'IoT sensor time series' -> Amazon Timestream
# 'document / JSON flexibility' -> DynamoDB or DocumentDB

解耦与消息传递关键词

解耦场景主要考查 SQS、SNS、EventBridge 和 Kinesis 的区别。'decouple producers from consumers' → SQS standard queue。'exactly-once, ordered processing' → SQS FIFO。'fan-out to multiple subscribers' → SNS。'route events by content' → EventBridge。'real-time streaming with replay' → Kinesis Data Streams。'deliver to S3/Redshift without code' → Kinesis Data Firehose。关键区别包括:持久化/回放(Kinesis)、顺序处理(FIFO)、扇出(SNS)以及基于内容的路由(EventBridge)。

# Decoupling keyword -> service:
# 'buffer requests, async processing' -> SQS Standard
# 'order must be preserved, no duplicates' -> SQS FIFO
# 'notify many services of one event' -> SNS Topic
# 'react to AWS service state changes' -> EventBridge (default bus)
# 'stream analytics data to S3 automatically' -> Kinesis Firehose
# 'multiple apps read same data stream independently' -> Kinesis Data Streams
# 'custom event routing by message content' -> EventBridge with event patterns

无服务器架构关键词

考试经常要求选择无服务器解决方案,以消除管理 EC2 的开销。请根据以下关键词进行映射:'no server management' → Lambda、Fargate、API Gateway。'event-driven' → 由 S3、SQS、DynamoDB Streams 触发的 Lambda。'HTTP API backend' → API Gateway + Lambda。'run containers without managing infrastructure' → Fargate。'serverless SQL on S3' → Athena。'serverless ETL' → AWS Glue。'serverless orchestration' → Step Functions Express 工作流。当问题说“无需服务器”时,应立即排除所有基于 EC2 的答案。

# Serverless keyword -> service:
# 'code triggered by events, no EC2' -> Lambda
# 'REST API with no infrastructure' -> API Gateway + Lambda
# 'containers without cluster management' -> ECS Fargate
# 'Kubernetes without node management' -> EKS Fargate Profiles
# 'SQL queries on S3, no warehouse' -> Amazon Athena
# 'NoSQL database, no capacity management' -> DynamoDB On-Demand
# 'workflow orchestration, no servers' -> AWS Step Functions
# 'ETL without Spark cluster' -> AWS Glue (serverless Spark)

网络与连接关键词

网络相关问题考查您将连接需求匹配到正确 AWS 服务的能力。'connect on-premises to AWS privately' → Direct Connect 或 Site-to-Site VPN。'route traffic globally with static anycast IPs' → AWS Global Accelerator。'reduce latency for a global fleet of users' → CloudFront(content)或 Global Accelerator(动态流量)。'private connectivity to AWS services without internet' → VPC Endpoints(S3/DynamoDB 使用 Gateway,其他服务使用 Interface)。'connect multiple VPCs in a hub-and-spoke model' → AWS Transit Gateway。请将连接需求匹配到专为该网络模式设计的服务。

# Networking keyword -> service mapping:
# 'private dedicated bandwidth to AWS' -> AWS Direct Connect
# 'encrypted tunnel over internet to AWS' -> Site-to-Site VPN
# 'accelerate global TCP/UDP traffic' -> AWS Global Accelerator
# 'connect 100 VPCs without full mesh' -> AWS Transit Gateway
# 'private access to S3 from VPC' -> S3 Gateway Endpoint (free)
# 'private access to SQS/SNS from VPC' -> Interface Endpoint (PrivateLink)
# 'accelerate static content globally' -> CloudFront CDN

快速检查

请检验您对本课 AWS Solutions Architect(SAA-C03)相关概念的理解。

课程回顾

本课您学到了:考试关键词可以直接映射到 AWS 服务——成本信号 → 托管服务/无服务器,性能信号 → 缓存/CDN/高 IOPS,安全信号 → KMS/GuardDuty/WAF;“least operational overhead”始终优先选择托管服务,而不是自行管理的 EC2;以及无服务器关键词会立即排除所有基于 EC2 的答案。接下来,我们将学习排除法以及识别干扰项答案模式。

常见问题解答

「识别题目中的关键词与服务信号」课时是免费的吗?

是的 — 「识别题目中的关键词与服务信号」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Cloud & IT Cert Prep 课程的其余内容,请升级到 CoddyKit PRO。 Cloud & IT Cert Prep 课程共包含 4 节课。

「识别题目中的关键词与服务信号」这节课中我会学到什么?

训练自己识别“最具成本效益”“最高可用性”“运营开销”和“无服务器”等触发词,从而判断正确的服务选择 你通过在浏览器中直接运行的动手代码来练习 Cloud & IT Cert Prep,全天候 AI 导师会在你学习这节课的过程中回答你的问题。

学习 Cloud & IT Cert Prep 需要有经验吗?

无需任何先前经验。CoddyKit 上的 Cloud & IT Cert Prep 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 2 节课,共 4 节。

「识别题目中的关键词与服务信号」课时需要多长时间?

大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。

我能在这节 Cloud & IT Cert Prep 课中编写并运行代码吗?

能。每节 Cloud & IT Cert Prep 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。

此课程中的所有课时

  1. 了解考试形式与领域权重
  2. 识别题目中的关键词与服务信号
  3. 排除法与干扰项模式
  4. 时间管理与复查技巧
← 返回 Cloud & IT Cert Prep