PrivateConlin commented on issue #2137:
URL: https://github.com/apache/superset/issues/2137#issuecomment-893181223


   These settings finally worked for me after the new upgrade.
   ```
   SUPERSET_CACHE_REDIS_URL = "".join(['redis://:', REDIS_PASSWORD, '@', 
REDIS_SERVER_IP, ':6379/1'])
   SUPERSET_BROKER_URL = "".join(['redis://:', REDIS_PASSWORD, '@', 
REDIS_SERVER_IP, ':6379/0'])
   SUPERSET_CELERY_RESULT_BACKEND = "".join(['redis://:', REDIS_PASSWORD, '@', 
REDIS_SERVER_IP, ':6379/0'])
   CACHE_CONFIG = {
       'CACHE_TYPE': 'redis',
       'CACHE_DEFAULT_TIMEOUT': 60 * 60 * 24,
       'CACHE_KEY_PREFIX': 'superset_',
       'CACHE_REDIS_PORT': 6379,
       'CACHE_REDIS_DB': 1,
       'CACHE_REDIS_URL': SUPERSET_CACHE_REDIS_URL
       }
   ```
   
   I had to explicitly remove` 'CACHE_REDIS_HOST': 'redis',` from my previous 
redis cache config to get it working. phew!
       
       


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