@@ -43,7 +43,7 @@ For notebook examples, see: [Amazon SageMaker Examples](https://github.com/awsla
43
43
4 . [ Pre/Post-Processing] ( #pre/post-processing )
44
44
5 . [ Deploying a TensorFlow Serving Model] ( #deploying-a-tensorflow-serving-model )
45
45
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 )
47
47
8 . [ Deploying to Multi-Model Endpoint] ( #deploying-to-multi-model-endpoint )
48
48
49
49
## Getting Started
@@ -614,15 +614,22 @@ SAGEMAKER_TFS_NUM_BATCH_THREADS="16"
614
614
SAGEMAKER_TFS_MAX_ENQUEUED_BATCHES=" 10000"
615
615
```
616
616
617
- ## Other Configurable Environment Variables
617
+ ## Configurable SageMaker Environment Variables
618
618
The following environment variables can be set on a SageMaker Model or Transform Job if further configuration is required:
619
619
620
620
``` bash
621
621
# 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
623
624
# Defaults to "info"
624
625
SAGEMAKER_GUNICORN_LOGLEVEL=" debug"
625
626
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
+
626
633
# Configures how long to wait in seconds for GUnicorn
627
634
# to finish starting up before timing out.
628
635
# Defaults to 30.
0 commit comments