I have a node.js backend that does operations that take over a minute to complete and the result of these operations is returned to the user.
This node.js application is behind an aws load balancer, which has a timeout of 60 seconds (I cannot change it) so when the user does an api call to my backend, the operation takes over 60 seconds so the load balancer times out as the connection was idle for too long.
My question: is it possible for the backend to send some sort of information/packets back to the user every 30 seconds, so the connection is not considered idle?