-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding HTTP sources & sinks #977
Adding HTTP sources & sinks #977
Conversation
…cudf logic outside of server, but allowing the rest server to return an accurate http response
…ad parser to the service Clean up includes
…xplicitly release reference to the executor after join and stop
…ethod, explicitly release reference to the executor after join and stop" This reverts commit 7de3daa.
I was thinking we could consider the following names.
"Hook" meaning "I'm awaiting a request" and "Request" meaning "I'm performing a request" I know edit: After discussing, we landed on
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets make an issue to add C++ implementations using the REST client loader
Done #1150 |
/merge |
/merge |
1 similar comment
/merge |
* Adds four new stages (nv-morpheus#864): 1. HttpServerSourceStage - Spins up a rest server to listen for incoming POSTS 2. HttpClientSourceStage - Source that polls a remote HTTP server for incoming data 3. HttpClientSinkStage - Sink that POSTS data to a remote HTTP server 4. HttpServerSinkStage - Sink that statrs a rest server listening for GET requests * Fix `TensorIndex` usage for the `stop_after` feature of the KafkaSourceStage fixes nv-morpheus#864 Currently `HttpServerSourceStage` is the only one of the four with a C++ impl. The rest server itself is written in C++ with Python bindings and is used by both C++ & Python stages. Authors: - David Gardner (https://github.com/dagardner-nv) Approvers: - Michael Demoret (https://github.com/mdemoret-nv) URL: nv-morpheus#977
Description
TensorIndex
usage for thestop_after
feature of the KafkaSourceStagefixes #864
Currently
HttpServerSourceStage
is the only one of the four with a C++ impl. The rest server itself is written in C++ with Python bindings and is used by both C++ & Python stages.Checklist