SAP-C02 第 505 题
题目
A company is migrating its on-premises IoT platform to AWS. The platform consists of the following components: • A MongoDB cluster as a data store for all collected and processed IoT data. • An application that uses Message Queuing Telemetry Transport (MQTT) to connect to IoT devices every 5 minutes to collect data. • An application that runs jobs periodically to generate reports from the IoT data. The jobs take 120-600 seconds to finish running. • A web application that runs on a web server. End users use the web application to generate reports that are accessible to the general public. The company needs to migrate the platform to AWS to reduce operational overhead while maintaining performance. Which combination of steps will meet these requirements with the LEAST operational overhead? (Choose three.)
中文翻译:
一家公司正在将其本地 IoT 平台迁移到 AWS。该平台由以下组件组成: • MongoDB 集群作为所有收集和处理的物联网数据的数据存储。 • 使用消息队列遥测传输(MQTT) 每5 分钟连接到IoT 设备以收集数据的应用程序。 • 定期运行作业以根据IoT 数据生成报告的应用程序。这些作业需要 120-600 秒才能完成运行。 • 在Web 服务器上运行的Web 应用程序。最终用户使用 Web 应用程序生成可供公众访问的报告。该公司需要将平台迁移到 AWS,以减少运营开销,同时保持性能。哪种步骤组合能够以最少的运营开销满足这些要求? (选择三项。)
选项
A. Create AWS Step Functions state machines with AWS Lambda tasks to prepare the reports and to write the reports to Amazon S3. Configure an Amazon CloudFront distribution that has an S3 origin to serve the reports
中文翻译:
使用 AWS Lambda 任务创建 AWS Step Functions 状态机以准备报告并将报告写入 Amazon S3。配置具有 S3 源的 Amazon CloudFront 分配来提供报告
B. Create an AWS Lambda function. Program the Lambda function to connect to the IoT devices. process the data, and write the data to the data store. Configure a Lambda layer to temporarily store messages for processing.
中文翻译:
创建 AWS Lambda 函数。对 Lambda 函数进行编程以连接到 IoT 设备。处理数据,并将数据写入数据存储。配置 Lambda 层以临时存储消息以供处理。
C. Configure an Amazon Elastic Kubernetes Service (Amazon EKS) cluster with Amazon EC2 instances to prepare the reports. Create an ingress controller on the EKS cluster to serve the reports.
中文翻译:
使用 Amazon EC2 实例配置 Amazon Elastic Kubernetes Service (Amazon EKS) 集群以准备报告。在 EKS 集群上创建入口控制器来提供报告。
D. Connect the IoT devices to AWS IoT Core to publish messages. Create an AWS IoT rule that runs when a message is received. Configure the rule to call an AWS Lambda function. Program the Lambda function to parse, transform, and store device message data to the data store.
中文翻译:
将 IoT 设备连接到 AWS IoT Core 以发布消息。创建在收到消息时运行的 AWS IoT 规则。配置规则以调用 AWS Lambda 函数。对 Lambda 函数进行编程,以解析、转换设备消息数据并将其存储到数据存储中。
E. Migrate the MongoDB cluster to Amazon DocumentDB (with MongoDB compatibility).
中文翻译:
将 MongoDB 集群迁移到 Amazon DocumentDB(与 MongoDB 兼容)。
F. Migrate the MongoDB cluster to Amazon EC2 instances.
中文翻译:
将 MongoDB 集群迁移到 Amazon EC2 实例。
答案
ADE
解析
正确答案:ADE 解析: 本题应选择 ADE。 正确选项: A. 使用 AWS Lambda 任务创建 AWS Step Functions 状态机以准备报告并将报告写入 Amazon S3。配置具有 S3 源的 Amazon CloudFront 分配来提供报告 D. 将 IoT 设备连接到 AWS IoT Core 以发布消息。创建在收到消息时运行的 AWS IoT 规则。配置规则以调用 AWS Lambda 函数。对 Lambda...