Maximum number of Integrations for this API has been reached?

0

I'm deploying websocket routes to API Gateway and i'm now getting the following error "Recoverable error occurred (Maximum number of Integrations for this API has been reached. Please contact AWS if you need additional Integrations.)"

What does this mean? I only have 8 routes at the moment..

已提問 5 年前檢視次數 736 次
2 個答案
1

In our v2 model(apigatewayv2), an integration is independent from a route and it can be reused by multiple routes. A route has Target attribute to refer the integration. If you configure a route and an integration in the Console, it will create a route, an integration and update the route with a target reference to the integration. However, when you remove a route, it will remove the route only. This means a number of routes does not always match to a number of integrations.

It is likely that you have dangling integrations by creating/removing/re-creating route(s) in the Console. Unfortunately the Console does not show those dangling integrations. Can you check how many integrations are in your API with CLI? Our integration per API is limited to 300.

aws apigatewayv2 get-integrations --api-id <YOUR_API_ID>

If you already have 300 integrations, use CLI to find which integration(s) are used by current routes.

aws apigatewayv2 get-target --api-id <YOUR_API_ID> | grep Target

This will give integrationIds are currently used.
"Target": "integrations/<YOUR_INTEGRATION_ID>",
"Target": "integrations/<YOUR_INTEGRATION_ID>",
...

Then remove unused integrations using CLI.
aws apigatewayv2 delete-integration --integration-id <UNUSED_INTEGRATION_ID>

I'll add a backlog to provide a better user experience for this.

AWS
已回答 5 年前
profile picture
專家
已審閱 16 天前
0

Ay ok thank you! Yes im sure I had alot of left over integrations because i've been removing alot of routes and re-creating them :D Thanks for this info!!!

已回答 5 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南