Summary: | Another scenario on connection closes and TAO | ||
---|---|---|---|
Product: | TAO | Reporter: | Rich Seibel <seibel_r> |
Component: | ORB | Assignee: | DOC Center Support List (internal) <tao-support> |
Status: | ASSIGNED --- | ||
Severity: | normal | ||
Priority: | P3 | ||
Version: | 1.2.1 | ||
Hardware: | other | ||
OS: | other | ||
Bug Depends on: | 124 | ||
Bug Blocks: |
Description
Rich Seibel
2003-02-10 10:57:51 CST
Adding dependancy Accepting for tao-support Accepting for tao-support The CORBA spec (taking 2.6.1) describes closing connections in sections 15.5.1.1 and 15.7.1. To achieve proper behaviour I have a proposal: 1. Reduce situations where the request is only detected as 'completed maybe'. This is not always avoidable, i.e. if the server crashes. But the chance for that case can be lowered. OTOH application code does not see COMM_FAILURE that often anymore and is not tested to handle it :-( Also it could have an impact on throughput if test for connection loss is done before sending the request. It should be optional feature. Connection is lost if the server has closed its side or if it has send a GIOP CloseConnection. In both cases the socket is readable. So the client should do its best and test that condition before actual sending data. If round-trip timeouts are applied, on some platforms where sendv_timedwait() is not avail., TAO anyway needs to check that he can write to the socket. Maybe it could be done in same step. End of connection is easy to see, but it may not be peachy to peek out a CloseConnection at this place in the sending path - it seems to be necessary. If CloseConnection is seen, immediately close own side. In both cases sending the request could be avoided. Also, if CloseConnection is received in place of the regular reply, it is only worth a TRANSIENT exception. 2. Upper layer is enhanced to reestablish the connection and do a retry, if (1) has detected that connection was closed and nothing has been send to the server. I'm not sure if this is affected by FT-CORBA policies or if the ORB is always free to retry in that case. Maybe it could be further configurable whether COMM_FAILURE exception is suppressed even in case no explicit CloseConnection message has been received, only end of file, as not every ORB impl. CloseConnection yet. 3. Sending CloseConnection from the server should be done. (also as a client in GIOP 1.2 due to bidirectional connections) 4. TAO server could even defer closing of the socket for a (configurable) time, so that clients do not so easily run into the situation where they write to a closed connection with a reset as result. That potentially helps lazy clients, who only only look what is in the input queue after they've send there own stuff. (But I'm not sure if that delay is the right thing) |