Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Support autoconfigure additional redis instances #27834

Closed
quaff opened this issue Aug 30, 2021 · 2 comments
Closed

Support autoconfigure additional redis instances #27834

quaff opened this issue Aug 30, 2021 · 2 comments
Labels
status: declined A suggestion or change that we don't feel we should currently apply

Comments

@quaff
Copy link
Contributor

quaff commented Aug 30, 2021

It's common to connect multiple redis servers in the sample application, currently It's not easy to reuse RedisAutoConfiguration and LettuceConnectionConfiguration to create multiple redis related beans, I hope spring-boot could handle this just by adding a few properties, for example:

# primary redis
spring.redis:
  host: localhost
  port: 6379

# additional redis instances
spring.redis.additional-instances: foo,bar
foo.redis:
  host: localhost
  port: 6379
  database: 1
bar.redis:
  host: localhost
  port: 6379
  database: 2

default redis related beans should be @Primary

// default redis
@Autowired RedisTemplate redisTemplate;
@Autowired RedisTemplate stringRedisTemplate;

// foo redis
@Autowired RedisTemplate fooRedisTemplate;
@Autowired RedisTemplate fooStringRedisTemplate;

// bar redis
@Autowired RedisTemplate barRedisTemplate;
@Autowired RedisTemplate barStringRedisTemplate;
@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label Aug 30, 2021
@quaff
Copy link
Contributor Author

quaff commented Aug 30, 2021

Actually It's impossible to reuse LettuceConnectionConfiguration since it's not visible.

@philwebb
Copy link
Member

This is a general problem with our current design and something that we hope to address more holistically with #21322. I don’t think we’ll be able to tackle the problem in a piecemeal fashion without making things worse. We’d rather keep our existing approach of requiring manual configuration if multiple services are being used until we can find a good general purpose solution.

@philwebb philwebb added status: declined A suggestion or change that we don't feel we should currently apply and removed status: waiting-for-triage An issue we've not yet triaged labels Aug 30, 2021
quaff added a commit to quaff/spring-boot that referenced this issue Aug 31, 2021
Allow application to extends those configurations
mitigate spring-projectsgh-27834
quaff added a commit to quaff/spring-boot that referenced this issue Aug 31, 2021
Allow application to extends those configurations
mitigate spring-projectsgh-27834
quaff added a commit to quaff/spring-boot that referenced this issue Aug 31, 2021
Allow application to extends those configurations
mitigate spring-projectsgh-27834
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
status: declined A suggestion or change that we don't feel we should currently apply
Projects
None yet
Development

No branches or pull requests

3 participants