maintaining a live WebSocket connection in AWS Lambda for two-way communication

0

Hello,

I hope you are all doing well. Currently, I am working with the Amazon Connect Chat API to build a Facebook connector. The purpose is to receive messages from Facebook on behalf of our agents. The process involves calling the CreateParticipantConnection API, which returns a WebSocket URL. Subsequently, I create a WebSocket connection using the "ws" module in Node.js.

However, there is an issue with the Lambda execution. After calling the APIs and establishing the WebSocket connection, the Lambda execution completes, and the WebSocket connection is closed. To facilitate two-way communication, I need to keep the WebSocket URL live.

I would like to know if this approach is correct for the task at hand. If it is, I need guidance on how to maintain a live WebSocket connection in the Lambda environment for seamless two-way communication.

Any assistance and advice on this matter would be greatly appreciated.

Thank you,

1 Risposta
0
Risposta accettata

Given the nature of Lambda - mostly that functions have a maximum runtime of 15 minutes - I'd suggest that it isn't the right service for what you're trying to do.

Instead, I'd suggest looking at Fargate for this instead.

profile pictureAWS
ESPERTO
con risposta 10 mesi fa
profile picture
ESPERTO
verificato 10 mesi fa
profile picture
ESPERTO
verificato 10 mesi fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande