From b7821374af388a7d5d9afe65aee0ea4e1afd90af Mon Sep 17 00:00:00 2001 From: thinhnd2104 <90733094+thinhnd2104@users.noreply.github.com> Date: Fri, 6 May 2022 11:30:09 +0700 Subject: [PATCH 1/2] Add config for running on a WSGI HTTP server Add example `--worker-connections` to improve gevent performance. --- docs/docs/installation/configuring-superset.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/docs/installation/configuring-superset.mdx b/docs/docs/installation/configuring-superset.mdx index 66c89c580654a..c33671aff79b4 100644 --- a/docs/docs/installation/configuring-superset.mdx +++ b/docs/docs/installation/configuring-superset.mdx @@ -105,6 +105,7 @@ well in your environment. Here’s an async setup known to work well in producti ``` -w 10 \ -k gevent \ + --worker-connections 1000 --timeout 120 \ -b 0.0.0.0:6666 \ --limit-request-line 0 \ From 4a7beedd74028f97975dfc763fdf521aaeda5549 Mon Sep 17 00:00:00 2001 From: thinhnd2104 <90733094+thinhnd2104@users.noreply.github.com> Date: Fri, 6 May 2022 11:34:12 +0700 Subject: [PATCH 2/2] Update configuring-superset.mdx --- docs/docs/installation/configuring-superset.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/installation/configuring-superset.mdx b/docs/docs/installation/configuring-superset.mdx index c33671aff79b4..05f845c114ec0 100644 --- a/docs/docs/installation/configuring-superset.mdx +++ b/docs/docs/installation/configuring-superset.mdx @@ -105,7 +105,7 @@ well in your environment. Here’s an async setup known to work well in producti ``` -w 10 \ -k gevent \ - --worker-connections 1000 + --worker-connections 1000 \ --timeout 120 \ -b 0.0.0.0:6666 \ --limit-request-line 0 \