AWS で非常にスケーラブルなサーバーレス WebSocket インフラストラクチャを構築する
Websocket requires a long-running process on the server, but serverless functions are short-lived. This makes serverless architecture not fit for handling WebSocket connections. That said, there are workarounds for building a scaleable WebSocket server. We will set up a Serverless infrastructure for WebSockets. It will use Python, AWS API Gateway, AWS Lambda & Dynamodb using…