AWS认证SAA-C03每日一题

embedded/2024/9/24 8:16:05/

本题库由云计算狂魔微信公众号分享。
【SAA-C03助理级解决方案架构师认证】

A company's application integrates with multiple software-as-a-service(SaaS) sources for data collection. The company runs Amazon EC2 instances to receive the data and to upload the data to an Amazon S3 bucket for analysis. The same EC2 instance that receives and uploads the data also sends a notification to the user when an upload is complete. The company has noticed slow application performance and wants to improve the performance as much as possible Which solution will meet these requirements with the LEAST operational overhead?


A  :   Create an Auto Scaling group so that EC2 instances can scale out. Configure an S3 event notification to send events to an Amazon Simple Notification Service(Amazon SNS) topic when the upload to the S3 bucket is complete


B  :   Create an Amazon AppFlow flow to transfer data between each SaaS source and the S3 bucket Configure an S3 event notification to send events to an Amazon Simple Notification Service (Amazon SNS) topic when the upload to the S3 bucket is complete


C  :   Create an Amazon EventBridge (Amazon CloudWatch Events) rule for each SaaS source to send output data. Configure the S3bucket as the rule's target. Create a second EventBridge (CloudWatch Events) rule to send events when the upload to the S3 bucket is complete. Configure an Amazon Simple Notification Service (Amazon SNS) topic as the second rule's target.


D  :   Create a Docker container to use instead of an EC2 instance. Host the containerized application on Amazon Elastic Container Service (Amazon ECS)Configure Amazon CloudWatch Container Insights to send events to an Amazon Simple Notification Service (AmazonSNS)topic when the upload to the S3 bucket is complete.


http://www.ppmy.cn/embedded/101027.html

相关文章

【LLM之Data】Persona Hub论文阅读笔记

研究背景 在大语言模型(LLMs)的发展过程中,合成数据逐渐成为关键资源,特别是用于训练和增强模型能力。然而,传统的合成数据生成方式在扩展数据规模时常常面临多样性不足的问题。现有研究尝试通过实例驱动或关键点驱动…

UV LED供电为什么要选择使用恒流驱动电源

LED为何一定要恒流供电? 在讨论此议题之前,什么是电源的恒流恒压? 什么是电源的恒流恒压   恒流,就是输出电流是恒定的,但电源电流却不是固定的,标称的电压只是安全上限;恒压,就是输出电压是…

Elasticsearch用法

💥 该系列属于【SpringBoot基础】专栏,如您需查看其他SpringBoot相关文章,请您点击左边的连接 目录 一、初识elasticsearch 1. 安装Elasticsearch和Kibana 2. 倒排索引 3. IK分词器 4. 基础概念 二、索引库操作 1. Mapping映射属性 2…

神经网络模型剪枝快速指南

模型剪枝(Model Pruning)是指从深度学习神经网络模型中删除不重要的参数,以减小模型大小并实现更高效的模型推理。通常,只剪枝参数的权重,而不影响偏差。偏差的剪枝往往有更明显的缺点。 非结构化剪枝期间权重如何归零…

uni-app的示例项目--简单的登陆页面及列表页面

uni-app的示例项目--简单的登陆页面及列表页面 文章说明核心代码效果展示源码下载 文章说明 随着移动端使用占比升高,手机端的App、小程序也成了一些场景下的首选;采用uni-pp开发此类应用具有很多优势,它可以直接使用vue3进行开发&#xff0c…

设计模式篇(DesignPattern - 结构型模式)(持续更新迭代)(图片待加载)

一、适配器模式(充电器问题) 1. 简介 现实生活中的适配器例子 泰国插座用的是两孔的(欧标),可以买个多功能转换插头 (适配器) ,这样就可以使用了。 2. 基本介绍 适配器模式(Adapter Pattern)将某个类的…

洛谷p1168中位数题解

题目描述 给定一个长度为 N 的非负整数序列 A,对于前奇数项求中位数。 输入格式 第一行一个正整数 N。 第二行 N 个正整数 A1…N。 输出格式 共 ⌊(N1)/2⌋ 行,第 i 行为 A1…2i−1的中位数。 输入输出样例 输入 #1复制 7 1 3 5 7 9 11 6 输出…

LeetCode 128. 最长连续序列 ⭐️

题目描述 给定一个未排序的整数数组 nums ,找出数字连续的最长序列(不要求序列元素在原数组中连续)的长度。 请你设计并实现时间复杂度为 O(n) 的算法解决此问题。 示例 1: 输入:nums [100,4,200,1,3,2] 输出&#xf…