zhaoyongjie commented on issue #22664:
URL: https://github.com/apache/superset/issues/22664#issuecomment-1972723224

   Hey @rusackas, as @unnyns-307 mentioned, we resolved this issue by appending 
the following line to the config.py file: broker_transport_options = 
{'visibility_timeout': 18000}. The snippet below might be helpful for other 
users experiencing the same issue.
   
   ```
         class CeleryConfig(object):
             broker_url = f"redis://{REDIS_HOST}:{REDIS_PORT}/0"
             broker_transport_options = {'visibility_timeout': 18000}
             imports = ("superset.sql_lab", "superset.tasks", 
"superset.tasks.thumbnails")
             result_backend = f"redis://{REDIS_HOST}:{REDIS_PORT}/0"
   ```


-- 
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]

Reply via email to