Rediscluster

when i use redis cluster as my RedisTrackerStore, it get an erro:redis.exceptions.ResponseError: MOVED. i google this erro, it means Python’s redis connection package does not support redis cluster connection mode, you need to replace the connection package.

rasa is support config redis cluster?

If you’re using a helm template you can try set your values.yaml like below:

redis:
    ...
    cluster:
        enabled: false
1 Like

To use redis in cluster just follow this:

lock_store:
  type: redis
  db: 0
  url: your_URL
  port: your_PORT
  key_prefix: your bot name or anything

I hope this usefull…