-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Router nodes to support single input, multi output routing. (#502)
Overview of new classes added in this PR: - `DynamicRouterBase` - Sink - `WritableProvider`, `ReadableAcceptor`, `SinkChannelOwner` - Source - `MultiWritableAcceptor`, `MultiReadableProvider`, `MultiSourceChannelOwner` - Runnable with ability to change number of outputs at runtime - Cannot be added to a Segment - Good backpressure support. Can still process requests if downstream blocks - `LambdaDynamicRouter` - Provide key function via lambda - `DynamicRouterComponentBase` - Sink - `ForwardingWritableProvider` - Source - `MultiWritableAcceptor`, `MultiReadableProvider`, `MultiSourceChannelOwner` - Non-Runnable with ability to change number of outputs at runtime - Limited backpressure support. Will block if downstream blocks - `LambdaDynamicRouterComponent` - Provide key function via lambda - `StaticRouterRunnableBase` - Sink - `WritableProvider`, `ReadableAcceptor`, `SinkChannelOwner` - Source - `MultiWritableAcceptor`, `MultiReadableProvider`, `MultiSourceChannelOwner` - Runnable with fixed number of outputs - Can be added to a Segment since it supports child outputs - Good backpressure support. Can still process requests if downstream blocks - `LambdaStaticRouterRunnable` - Provide key function via lambda - `StaticRouterComponentBase` - Sink - `ForwardingWritableProvider` - Source - `MultiWritableAcceptor`, `MultiReadableProvider`, `MultiSourceChannelOwner` - Non-Runnable with fixed number of outputs - Can be added to a Segment since it supports child outputs - Limited backpressure support. Will block if downstream blocks - `LambdaStaticRouterComponent` - Provide key function via lambda Closes #491 Authors: - Michael Demoret (https://github.com/mdemoret-nv) - David Gardner (https://github.com/dagardner-nv) Approvers: - David Gardner (https://github.com/dagardner-nv) URL: #502
- Loading branch information
1 parent
61862b5
commit a4b2ca1
Showing
72 changed files
with
5,127 additions
and
1,047 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.