Skip to content

Commit

Permalink
Update the limitation of multiple servers binding to the same http/gr…
Browse files Browse the repository at this point in the history
…p… (triton-inference-server#4991)

* Update the limitation of multiple server binding to the same http/grpc port

* Address comment

* Address comment
  • Loading branch information
krishung5 committed Oct 18, 2022
1 parent 0301b7a commit dfa101c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,9 @@ std::vector<Option> options_
"The port for the server to listen on for HTTP requests."},
{OPTION_REUSE_HTTP_PORT, "reuse-http-port", Option::ArgBool,
"Allow multiple servers to listen on the same HTTP port when every "
"server has this option set."},
"server has this option set. If you plan to use this option as a way to "
"load balance between different Triton servers, the same model "
"repository or set of models must be used for every server."},
{OPTION_HTTP_ADDRESS, "http-address", Option::ArgStr,
"The address for the http server to binds to."},
{OPTION_HTTP_THREAD_COUNT, "http-thread-count", Option::ArgInt,
Expand All @@ -414,7 +416,9 @@ std::vector<Option> options_
"The port for the server to listen on for GRPC requests."},
{OPTION_REUSE_GRPC_PORT, "reuse-grpc-port", Option::ArgBool,
"Allow multiple servers to listen on the same GRPC port when every "
"server has this option set."},
"server has this option set. If you plan to use this option as a way to "
"load balance between different Triton servers, the same model "
"repository or set of models must be used for every server."},
{OPTION_GRPC_ADDRESS, "grpc-address", Option::ArgStr,
"The address for the grpc server to binds to."},
{OPTION_GRPC_INFER_ALLOCATION_POOL_SIZE,
Expand Down

0 comments on commit dfa101c

Please sign in to comment.