skip to Main Content

Error creating bean with name 'enableRedisKeyspaceNotificationsInitializer'

I am able to connect to Azure Cache for Redis with the following Spring Session configuration: <bean id="redisPassword" class="org.springframework.data.redis.connection.RedisPassword"> <constructor-arg index="0" value="xxxxxxxxxxxxxxxx"/> </bean> <bean id="redisStandaloneConfiguration" class="org.springframework.data.redis.connection.RedisStandaloneConfiguration"> <property name="hostName" value="acmedev.redis.cache.windows.net"/> <property name="port" value="6380"/> <property name="password" ref="redisPassword"/> </bean> <context:annotation-config/> <bean class="org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration"/> <bean…

VIEW QUESTION

Pyspark + Redis Remote Server

I have a server with redis and maven configured I then do the following sparkSession spark = pyspark .sql .SparkSession .builder .master('local[4]') .appName('try_one_core') .config("spark.redis.host", "XX.XXX.XXX.XXX") .config("spark.redis.port", "6379") .config("spark.redis.auth", "XXXX") .getOrCreate() I am trying to connect to a remote redis server…

VIEW QUESTION

Error with redis and nodejs in kubernetes

I need to deploy web (angularjs), api (node.js) , redis. However, i am getting error reaching redis to api (node.js) using kubernetes. [ioredis] Unhandled error event: Error: getaddrinfo ENOTFOUND redis redis:6379 at errnoException (dns.js:50:10) at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:92:26) I…

VIEW QUESTION
Back To Top
Search