node.js - Ever multiple socket connections for one HTTP request? -
i'm working on zero-downtime update/clustering server. essentially, server listening on port 80 , 443. when gets request, request piped child node instance listening on other ports (may or may not on same server). when update, spin more children new code , start piping new requests those. when old children done handling requests, close themselves.
my question is: there ever http(s) request broken on multiple connections? maybe large file broken chunks each chunk closing previous connection , creating new 1 new chunk? potentially end going different servers , never joined together.
i'm talking standard get/post/put/delete , file upload. understanding, these requests take 1 connection. maybe information sent on multiple packets, information sent on 1 connection, yes?
thanks!
Comments
Post a Comment