Bug 132

Summary: use Reactor to send instead of blocking directly on writev
Product: TAO Reporter: Ossama Othman <ossama.othman>
Component: ORBAssignee: Carlos O'Ryan <coryan>
Status: RESOLVED FIXED    
Severity: blocker    
Priority: P2    
Version: 1.0   
Hardware: All   
OS: All   
Bug Depends on: 575, 842, 858, 863, 886    
Bug Blocks: 583, 393    

Description Ossama Othman 1999-07-26 17:26:32 CDT
Currently we use blocking writes for the request, we need to change this so we
use the Reactor to send the data instead of blocking directly on the writev
call.
Comment 1 Carlos O'Ryan 1999-08-03 12:08:59 CDT
This is a valid enhacement request, i'm marking it as accepted but their
implementation is deferred
Comment 2 Carlos O'Ryan 1999-08-06 23:25:59 CDT
I'll take care of this one.
BTW, the same issue applies to connects.
Comment 3 Carlos O'Ryan 1999-08-11 11:00:59 CDT
Simply accepting the bugs.
Comment 4 Carlos O'Ryan 2000-01-31 23:22:59 CST
I don't have time to work in this back at any point in the foreseeable future.
I'm returning the bug to the main pool, if anybody wants to take it they are
welcomed to ask questions on how to approach the problem/enhancement.
Comment 5 Carlos O'Ryan 2000-02-08 13:12:59 CST
Bugs moved to the tao-support placeholder.
Comment 6 Carlos O'Ryan 2001-02-07 13:49:14 CST
I've been working on this one for the last couple of weeks.
The current design considers:
- Each transport will contain a queue of messages.
- Each message can have a different timeout.
- Some messages (twoways) wait for the event, potentially using the
leader/follower protocol.
- The twoway waiters should wake up if:
    + The message is sent
    + The connection is closed or fails
    + The message times out
- AMI requests have similar signaling needs.
- Some applications may not want to use the reactor
- Oneway requests can be buffered or not, depending on the policies in place.
- The minimum size of the queue can also be controlled by policies
- Memory management and optimizations are critical, will need to pool the queue
nodes and potentially the 'waiting' objects.
- Currently ACE only has a blocking version of ACE::send() that takes a
Message_Block chain.  Need to replace it with a non-blocking version.
- Using ACE::send() with an SSLIOP protocol (or SHMIOP protocol) is incorrect,
so the code must be refactored at the Svc_Handler or <IPC>_Stream layer.

	Overall the problem is not hard, but it is quite complex and somewhat far
reaching (multiple objects affected, etc.)
Comment 7 Carlos O'Ryan 2001-02-07 13:53:42 CST
This should be a blocking bug for the 1.2 release.
I am planning to fix it long before that, but it must be properly recorded.
Comment 8 Carlos O'Ryan 2001-04-20 17:37:40 CDT
FWIW: the current status in the fix_bug132_iter04 branch is as follows:

- All the regression tests pass, including Big_Oneways and Big_Twoways.
- Both the Reactive and Blocking flushing strategies work, obviously the
Block_Flushing_Strategy is limited in functionality.

we need:

- A regression test for buffered AMI requests, just like Oneway_Buffering.
- More regression tests for the Block_Flushing_Strategy....
- The current implementation adds too much locking overhead, we can share the
lock used to access the underlying connection.
- The ORB does not flush all its queues when it shuts down... I'm not sure what
the right approach is.
Comment 9 Carlos O'Ryan 2001-04-24 13:44:37 CDT
Another status update: the bulk of the changes are in the main trunk now.
I'm going through the build logs, fixing problems and trying to understand why
some tests are failing.
Comment 10 Carlos O'Ryan 2001-05-09 13:06:08 CDT
The bug should be closed one 575 and 886 are closed.  The best ETA guestimate is
a couple of days after they are closed.
Comment 11 Carlos O'Ryan 2001-08-08 12:44:56 CDT
Now that 886 is fixed this bug has been fixed too.