-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Closed
Labels
Milestone
Description
Feature Request
Redis open source will support TLS in the not distant future. TLS support in the Sentinel will likely follow soon thereafter.
Please implement TLS support in Jedis to support Sentinel mode. This would include not only connecting to the Sentinel over TLS, but also connecting to the sentinel-reported master over TLS.
Is your feature request related to a problem? Please describe
Financial services and enterprise users of Jedis, including those using Jedis by way of Spring Data Redis, are increasingly being asked to ensure all service traffic is encrypted via TLS.
Describe alternatives you've considered
- removing calls to the Sentinel API in our code, migrating to the lower level Redis API for Redis Cluster (when it supports TLS - see link above) or Redis Enterprise. This would be painful for the number of applications we have that program to the Sentinel API.
- stunnel and spiped, neither of which work well for how our services are deployed and maintained
- exotic IPSec solutions to encrypt traffic on the wire in lieu of first class TLS support in Sentinel mode
Vir2el, ztx0728, aamrute-idnow and ddimitriou