v.20.9Improvement
Added requirepass authorization for Redis external dictionary
Added requirepass authorization for Redis external dictionary. #13688 (Ivan Torgashov).Why it matters
This feature enables ClickHouse to connect toRedis dictionaries that require authentication with a password, enhancing security and allowing integration with secured Redis instances.How to use it
To use this feature, specify therequirepass parameter with the Redis password in the external dictionary configuration that uses the Redis layout. Example configuration snippet:<dictionary>
<source>
<redis>
<host>redis_host</host>
<port>6379</port>
<requirepass>your_redis_password</requirepass>
</redis>
</source>
<!-- other dictionary settings -->
</dictionary>