Current CMD command within the container runs gunicorn + gevent server with default parameters specified in the documentation:
CMD ["gunicorn", "--workers=10", "--worker-class=gevent", "--timeout=120", "--bind=0.0.0.0:8088", "--limit-request-line=0", "--limit-request-field_size=0", "superset:app"]
Note, that default superset runserver is deprecated in favor of gunicorn command, a.k.a. "A proper WSGI HTTP Server"
Command line arguments are hardcoded in the configuration, e.g. --workers=10. Add ability to set them from outside.
Current
CMDcommand within the container runs gunicorn + gevent server with default parameters specified in the documentation:Note, that default
superset runserveris deprecated in favor of gunicorn command, a.k.a. "A proper WSGI HTTP Server"Command line arguments are hardcoded in the configuration, e.g.
--workers=10. Add ability to set them from outside.