-
Notifications
You must be signed in to change notification settings - Fork 96
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
Example usage of kafka endpoints as an input and output for triton server using Python API #92
Merged
fpetrini15
merged 13 commits into
triton-inference-server:main
from
pthalasta:kafka-io-pthalasta
Jul 24, 2024
Merged
Example usage of kafka endpoints as an input and output for triton server using Python API #92
fpetrini15
merged 13 commits into
triton-inference-server:main
from
pthalasta:kafka-io-pthalasta
Jul 24, 2024
Conversation
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
pthalasta
changed the title
[DRAFT] Example usage of kafka endpoints as an input and output for triton server using Python API
Example usage of kafka endpoints as an input and output for triton server using Python API
May 10, 2024
Triton_Inference_Server_Python_API/examples/kafka-io/models/tokenizer/1/model.py
Fixed
Show fixed
Hide fixed
Triton_Inference_Server_Python_API/examples/kafka-io/tritonserver_deployment.py
Fixed
Show fixed
Hide fixed
Triton_Inference_Server_Python_API/examples/kafka-io/tritonserver_deployment.py
Fixed
Show fixed
Hide fixed
Triton_Inference_Server_Python_API/examples/kafka-io/tritonserver_deployment.py
Fixed
Show fixed
Hide fixed
Triton_Inference_Server_Python_API/examples/kafka-io/tritonserver_deployment.py
Fixed
Show fixed
Hide fixed
fpetrini15
reviewed
Jul 18, 2024
fpetrini15
reviewed
Jul 18, 2024
Triton_Inference_Server_Python_API/examples/kafka-io/requirements.txt
Outdated
Show resolved
Hide resolved
fpetrini15
reviewed
Jul 18, 2024
fpetrini15
reviewed
Jul 18, 2024
fpetrini15
reviewed
Jul 18, 2024
Triton_Inference_Server_Python_API/examples/kafka-io/start-kafka.sh
Outdated
Show resolved
Hide resolved
fpetrini15
reviewed
Jul 18, 2024
fpetrini15
reviewed
Jul 18, 2024
fpetrini15
reviewed
Jul 18, 2024
… script to start the server
… script to start the server
fpetrini15
reviewed
Jul 18, 2024
fpetrini15
reviewed
Jul 18, 2024
fpetrini15
reviewed
Jul 18, 2024
fpetrini15
reviewed
Jul 18, 2024
fpetrini15
reviewed
Jul 18, 2024
Triton_Inference_Server_Python_API/examples/kafka-io/start-kafka.sh
Outdated
Show resolved
Hide resolved
fpetrini15
reviewed
Jul 18, 2024
fpetrini15
reviewed
Jul 18, 2024
fpetrini15
reviewed
Jul 18, 2024
Triton_Inference_Server_Python_API/examples/kafka-io/utils/kafka_consumer.py
Outdated
Show resolved
Hide resolved
harryskim
previously approved these changes
Jul 19, 2024
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.
LGTM :) Thanks for putting this together!
Triton_Inference_Server_Python_API/examples/kafka-io/utils/kafka_consumer.py
Fixed
Show fixed
Hide fixed
Triton_Inference_Server_Python_API/examples/kafka-io/tritonserver_deployment.py
Fixed
Show fixed
Hide fixed
Triton_Inference_Server_Python_API/examples/kafka-io/tritonserver_deployment.py
Fixed
Show fixed
Hide fixed
Triton_Inference_Server_Python_API/examples/kafka-io/tritonserver_deployment.py
Fixed
Show fixed
Hide fixed
Triton_Inference_Server_Python_API/examples/kafka-io/tritonserver_deployment.py
Fixed
Show fixed
Hide fixed
Triton_Inference_Server_Python_API/examples/kafka-io/tritonserver_deployment.py
Fixed
Show fixed
Hide fixed
Triton_Inference_Server_Python_API/examples/kafka-io/tritonserver_deployment.py
Fixed
Show fixed
Hide fixed
fpetrini15
approved these changes
Jul 24, 2024
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.
Outstanding work, thanks @pthalasta!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR provides an example of using kafka endpoints as an input and output for triton server using Python API. As an example code, we have deployed a preprocessing stage of tokenizer as a custom model.
Input: Each message in the kafka topic
Output: json string of the output produced after passing the input through the deployed model
This PR has an example to support #3131 using triton's python API