Mantis - Resin
Viewing Issue Advanced Details
5055 minor always 04-30-12 09:41 05-09-12 17:04
cowan  
cowan  
high  
closed 3.1.12  
fixed  
none    
none 3.1.13  
0005055: Slow response with save-mode=after-request
When using session-config save-mode=after-request, responses to the client are delayed by the time it takes to serialize, CRC, and persist the session. The description of after-request says "Save the session after the request has been served and completed". This is true, however the response is stored in the buffer but not flushed to the client unit the request is "finished".

The response needs to be flushed before the session is persisted.
Reported by IHG

Notes
(0005756)
cowan   
05-06-12 12:00   
Response is delayed only using load-balance. HmuxLoadBalancerServlet waits for the HMUX_QUIT signal before flushing the response to the client, which HmuxRequest does not deliver until after the invocation is complete. HttpRequest does not suffer from this, thus connections direct to the app-tier are faster for the 1st request.

Additionally, all requests of a keep-alive sequence except the 1st are delayed for session persistence. Even though the session is persisted after the response is written, the connection thread is busy persisting the session and not available to process the next incoming request.

load-balance-connect-timeout and load-balance-socket-timeout are significant here, because if the pier app-server is unresponsive or slow, the delay can be significant.

(0005760)
cowan   
05-09-12 17:04   
server/015p