Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对无服务器架构有一个大致的了解。我想知道与以前常用的架构相比,使用这种架构的顶级专业人士和缺点是什么。
优点
仅在事件触发期间调用 Lambda 函数,VS保持实例空闲一段合理的时间。
VS
只为您将要使用的东西VS付费,为正在运行的空闲实例付费。
轻松与其他流行的 AWS 服务集成,例如 API Gateway、S3、SNS、CloudTrail 等。
IAM 策略可配置为每个 lambda 函数。
可根据调用速率进行扩展。
缺点
目前仅支持有限 RAM 的 5 分钟,因此不适用于繁重和复杂的处理。
仅支持流行的编程语言。
结论
是否使用 lambda 取决于您的用例!