Skip to content
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

Updated configuration.md for missing config properties #337

Merged
merged 13 commits into from
May 21, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
addressed review comments.
  • Loading branch information
shivamshriwas committed May 20, 2020
commit a76474897952f76eab442323232295fa4eda1e46
10 changes: 5 additions & 5 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@ Most of the following properties are designed for performance tuning. Adjusting
* `decode_input_request`: Configuration to let backend workers to decode requests, when the content type is known.
If this is set to "true", backend workers do "Bytearray to JSON object" conversion when the content type is "application/json" and
the backend workers convert "Bytearray to utf-8 string" when the Content-Type of the request is set to "text*". Default: true
* `debug`: runs Torchserve in debug mode where `default_workers_per_model` is set to 1 when this flag is true.
* `model_store` : path of model store directory.
* `model_server_home` : Torchserve home directory.
* `max_request_size` : The maximum allowable request size that the Torchserve accepts.
* `max_response_size` : The maximum buffer size the frontend allocates for a worker response, in bytes.
* `debug`: Run Torchserve in debug mode. Default: false
* `model_store` : Path of model store directory.
* `model_server_home` : Torchserve home directory.
* `max_request_size` : The maximum allowable request size that the Torchserve accepts, in bytes. Default: 6553500
* `max_response_size` : The maximum buffer size the frontend allocates for a worker response, in bytes. Default: 6553500

---
**NOTE**
Expand Down