Cache connection established properly, but no keys found inside Redis #30921
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hey @BartoszOrnoch! I'm here to help you out with any bugs, questions, or contributions. Let's squash this bug together! 🤖 It seems like your Redis configuration is mostly set up correctly, but there might be a misunderstanding regarding which Redis databases are being used for different purposes. Based on your configuration, Superset is using multiple Redis databases for different caching and task management purposes:
If you are not seeing any keys in Redis, make sure you are checking the correct database. You can switch to the appropriate database using the redis.myredis.pl:6544> SELECT 1
OK
redis.myredis.pl:6544[1]> KEYS * Ensure that you are selecting the correct database number that corresponds to the cache or backend you want to inspect. If you still don't see any keys, verify that your application is correctly writing to Redis and that there are no errors in the logs indicating issues with Redis connectivity or operations. |
Beta Was this translation helpful? Give feedback.
-
Okey, the problem was ';' sign at the end of my redis-cli commands xD. Thanks for help mr Dosubot |
Beta Was this translation helpful? Give feedback.
Hey @BartoszOrnoch! I'm here to help you out with any bugs, questions, or contributions. Let's squash this bug together! 🤖
It seems like your Redis configuration is mostly set up correctly, but there might be a misunderstanding regarding which Redis databases are being used for different purposes. Based on your configuration, Superset is using multiple Redis databases for different caching and task management purposes:
DATA_CACHE_CONFIG
).FILTER_STATE_CACHE_CONFIG
).EXPLORE_FORM_DATA_CACHE_CONFIG
).