Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 5cabd4c

Browse files
committed
Update readme with PR feedback.
1 parent 45b0373 commit 5cabd4c

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ For notebook examples, see: [Amazon SageMaker Examples](https://github.com/awsla
4343
4. [Pre/Post-Processing](#pre/post-processing)
4444
5. [Deploying a TensorFlow Serving Model](#deploying-a-tensorflow-serving-model)
4545
6. [Enable Batching](#enabling-batching)
46-
7. [Other Configurable Environment Variables](#other-configurable-environment-variables)
46+
7. [Configurable SageMaker Environment Variables](#configurable-sagemaker-environment-variables)
4747
8. [Deploying to Multi-Model Endpoint](#deploying-to-multi-model-endpoint)
4848

4949
## Getting Started
@@ -614,15 +614,22 @@ SAGEMAKER_TFS_NUM_BATCH_THREADS="16"
614614
SAGEMAKER_TFS_MAX_ENQUEUED_BATCHES="10000"
615615
```
616616

617-
## Other Configurable Environment Variables
617+
## Configurable SageMaker Environment Variables
618618
The following environment variables can be set on a SageMaker Model or Transform Job if further configuration is required:
619619

620620
```bash
621621
# Configures the logging level for GUnicorn.
622-
# Valid values can be found here: https://docs.gunicorn.org/en/stable/settings.html#loglevel
622+
# When looking to set this environment variable, please refer to:
623+
# https://docs.gunicorn.org/en/stable/settings.html#loglevel
623624
# Defaults to "info"
624625
SAGEMAKER_GUNICORN_LOGLEVEL="debug"
625626

627+
# Configures how long a GUnicorn worker may be silent before it is killed and restarted.
628+
# When looking to set this environment variable, please refer to:
629+
# https://docs.gunicorn.org/en/stable/settings.html#timeout
630+
# Defaults to 30.
631+
SAGEMAKER_GUNICORN_TIMEOUT_SECONDS="60"
632+
626633
# Configures how long to wait in seconds for GUnicorn
627634
# to finish starting up before timing out.
628635
# Defaults to 30.

0 commit comments

Comments
 (0)