This is an automated email from the ASF dual-hosted git repository.
kristw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new 73e119a [config] clarifications around SUPERSET_WEBSERVER_TIMEOUT
(#6840)
73e119a is described below
commit 73e119a84ef68a8fa5cfdc2758b3112de4723a3e
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Mon Feb 11 10:32:11 2019 -0800
[config] clarifications around SUPERSET_WEBSERVER_TIMEOUT (#6840)
---
superset/config.py | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/superset/config.py b/superset/config.py
index 5e46c5f..d038816 100644
--- a/superset/config.py
+++ b/superset/config.py
@@ -59,7 +59,13 @@ SUPERSET_CELERY_WORKERS = 32 # deprecated
SUPERSET_WEBSERVER_ADDRESS = '0.0.0.0'
SUPERSET_WEBSERVER_PORT = 8088
-SUPERSET_WEBSERVER_TIMEOUT = 60 # deprecated
+
+# This is an important setting, and should be lower than your
+# [load balancer / proxy / envoy / kong / ...] timeout settings.
+# You should also make sure to configure your WSGI server
+# (gunicorn, nginx, apache, ...) timeout setting to be <= to this setting
+SUPERSET_WEBSERVER_TIMEOUT = 60
+
SUPERSET_DASHBOARD_POSITION_DATA_LIMIT = 65535
EMAIL_NOTIFICATIONS = False
CUSTOM_SECURITY_MANAGER = None