AWS认证SAA-C03每日一题

server/2024/9/22 13:46:30/

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

A company hosts an application on AWS Lambda functions that are invoked by an Amazon API Gateway API. The Lambda functions save customer data to an Amazon Aurora MySQL database Whenever the company upgrades the database, the Lambda functions fail to establish database connections until the upgrade is complete. The result is that customer data is not recorded for some of the event. A solutions architect needs to design a solution that stores customerdata that is created during database upgrades Which solution will meet these requirements?


A  :    Provision an Amazon RDS proxy to sit between the Lambda functions and the database. Configure the Lambda functions to connect to the RDS proxy.


B  :   Increase the run time of the Lambda functions to the maximum. Create are try mechanism in the code that stores the customer data in the database.


C  :   Persist the customer data to Lambda local  storage. Configure new Lambda functions to scan the local storage to save the customer data to the database.


D  :    Store the customer data in an Amazon Simple Queue Service (Amazon SQS) FIFO queue Create anew Lambda function that polls the queue and stores the customer data in the database.


http://www.ppmy.cn/server/100856.html

相关文章

Unity 6 预览版正式发布

Unity 6 预览版发布啦,正式版本将于今年晚些时候正式发布! 下载链接: https://unity.com/releases/editor/whats-new/6000.0.0 Unity 6 预览版是 Unity 6 开发周期的最后一个版本,在去年 11 月 Unite 大会上,我们宣…

【Next】全局样式和局部样式

不同于 nuxt ,next 的样式绝大部分都需要手动导入。 全局样式 使用 sass 先安装 npm i sass -D 。 我们可以定义一个 styles 文件,存放全局样式。 variables.scss $fs30: 30px;mixin border() {border: 1px solid red; }main.scss use ./variables …

AI芯片:高性能卷积计算中的数据复用

随着深度学习的飞速发展,对处理器的性能要求也变得越来越高,随之涌现出了很多针对神经网络加速设计的AI芯片。卷积计算是神经网络中最重要的一类计算,本文分析了高性能卷积计算中的数据复用,这是AI芯片设计中需要优化的重点之一&a…

旅行商问题变体:欧几里德平面中线段最小连接算法

问题描述 假设在欧几里德平面上有有限多条线段,如何将它们连接起来,形成一条最小长度的线段链? 首先,自然可以穷举所有情况,找到最优解。还可以采用动态规划、贪心算法找到局部最优解。 另外,则将其作为T…

tcpdump入门——四次挥手

客户端断开tcp连接: 数据包分析: 上面抓到的四次挥手包确实展示了 TCP 连接终止的过程,但观察到的包顺序和标志位可能会和经典的四次握手示例稍有不同,这是因为在实际网络中,TCP 连接的终止过程可能会有一些优化或变化…

vue2子组件调用父组件传递prop得函数

在Vue中,props是父组件与子组件通信的桥梁。而prop的type选项可以用来指定传入的数据类型,以确保数据的正确性。 当prop的type为function时,这意味着父组件需要传递一个函数给子组件,子组件可以在适当的时候调用这个函数。 以下…

LeetCode 热题100-22

相交链表 给你两个单链表的头节点 headA 和 headB ,请你找出并返回两个单链表相交的起始节点。如果两个链表不存在相交节点,返回 null 。 图示两个链表在节点 c1 开始相交: 题目数据 保证 整个链式结构中不存在环。 注意,函数返…

汽车电子中间件的关键技术

汽车电子中间件的关键技术 中间件架构设计分层架构与模块化设计优势劣势 服务导向架构(SOA)主要特点:SOA在汽车电子中的应用:优势:劣势: 通讯协议与数据传输传统协议(CAN、LIN)CAN&a…