dosubot[bot] commented on issue #30741: URL: https://github.com/apache/superset/issues/30741#issuecomment-2444381191
<!-- Greeting --> Hello @carza06! I'm here to help you with any issues you're experiencing in Superset. I can assist with bug fixes, answer questions, and guide you on becoming a contributor. Let's tackle this challenge together! <!-- Answer --> To increase the query timeout value in Superset version 4.0.2 from the default 60 seconds, you need to modify the `SUPERSET_WEBSERVER_TIMEOUT` setting in the `superset_config.py` file. You can set it to a higher value in seconds, for example: ```python SUPERSET_WEBSERVER_TIMEOUT = 120 # Set to 120 seconds or any desired value ``` This change will adjust the client-side timeout limit, allowing longer queries to complete without triggering a timeout warning <sup>[[1]](https://github.com/apache/superset/blob/master/docs/docs/faq.mdx)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
