skip to Main Content

Configuration Redis Sentinel in Micronaut

I currently have a running application with Redis and I would like to add Redis Sentinel configuration to ensure high availability for my database. Could someone help me with configuring Redis Sentinel in Micronaut? Application.yml file: redis: uri: redis-sentinel://localhost:26379,localhost:26380,localhost:26381/0#redismaster My…

VIEW QUESTION

Error invoking scheduled task Error instantiating bean of type [io.micronaut.configuration.lettuce.health.RedisHealthIndicator]

I have the following problem when running this schedule. @Singleton public class TaskScheduler { private static final Logger LOG = LoggerFactory.getLogger(TaskScheduler.class); @Inject private BuildLayerJob buildLayerJob; @Scheduled(fixedDelay = "30s", initialDelay = "30s") public void loadRegistriesDescriptions(){ try { LOG.info("Cargando lista de registries…

VIEW QUESTION
Back To Top
Search