AWS Api Gateway 每个 api 的最大资源限制

问题描述 投票:0回答:1

Api Gateway 中每个 REST api 的资源硬性限制是多少?根据 AWS 文档 https://docs.aws.amazon.com/apigateway/latest/developerguide/limits.html#api-gateway-execution-service-limits-table,默认配额为每个 api 300,可以增加根据要求。 我的用途是我有多个版本的 api,我试图将其添加到 Api 网关中的单个 REST api 中。 AWS 是否有硬性限制,超过该限制就不会增加?

amazon-web-services rest aws-api-gateway aws-limits
1个回答
0
投票

在同一个 API 网关中创建多个版本不被认为是最佳实践。相反,建议利用阶段进行版本控制,或者为每个版本创建单独的 API 网关。

参见:

https://aws.plainenglish.io/serving-data-safely-managing-versions-and-environments-with-api-gateway-and-lambda-eee86bef7e05

https://aws.amazon.com/it/blogs/compute/implementing-header-based-api-gateway-versioning-with-amazon-cloudfront/

© www.soinside.com 2019 - 2024. All rights reserved.