zufolo441 commented on issue #24638:
URL: https://github.com/apache/superset/issues/24638#issuecomment-1633698718

   Hi, thanks for support.
   here it is my config regarding async queries:
   
   # Global async query config options.
   # Requires GLOBAL_ASYNC_QUERIES feature flag to be enabled.
   GLOBAL_ASYNC_QUERIES_REDIS_CONFIG = { 
       "port": 6379,
       "host": "127.0.0.1",
       "password": "",
       "db": 0,
       "ssl": False,
   }   
   GLOBAL_ASYNC_QUERIES_REDIS_STREAM_PREFIX = "async-events-"
   GLOBAL_ASYNC_QUERIES_REDIS_STREAM_LIMIT = 1000
   GLOBAL_ASYNC_QUERIES_REDIS_STREAM_LIMIT_FIREHOSE = 1000000
   GLOBAL_ASYNC_QUERIES_JWT_COOKIE_NAME = "async-token"
   GLOBAL_ASYNC_QUERIES_JWT_COOKIE_SECURE = False
   GLOBAL_ASYNC_QUERIES_JWT_COOKIE_DOMAIN = None
   GLOBAL_ASYNC_QUERIES_JWT_SECRET = "test-secret-change-me"
   GLOBAL_ASYNC_QUERIES_TRANSPORT = "polling"
   GLOBAL_ASYNC_QUERIES_POLLING_DELAY = int(
       timedelta(milliseconds=500).total_seconds() * 1000
   )   
   GLOBAL_ASYNC_QUERIES_WEBSOCKET_URL = "ws://127.0.0.1:8080/"
   
   DEFAULT_FEATURE_FLAGS: Dict[str, bool] = {
   ...
       "GLOBAL_ASYNC_QUERIES": False,
   ...
   }


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