You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using Rediscala for some really simple key-value persistence operations.
During the server lifetime, we see a lot of r.a.RedisClientActor - ConnectionClosed PeerClosed.
These are logged at the warning level.
Is this something to be concerned about? We have some connection issues as well, and I am wondering if they are related.
We are running a Play server with an akka ActorSystem running on Heroku.
Can provide more information if this is domain specific.
The text was updated successfully, but these errors were encountered:
In my case, I am running redis:alpine docker image for the server with default redis.conf. I have override the default port with 6400.
I see the following messages when RedisClient establishes connection:
[INFO] [02/19/2019 16:54:50.543] [testing-rediscala.rediscala-client-worker-dispatcher-6] [akka://testing/user/RedisClient-$a] Connect to localhost/127.0.0.1:6400
[INFO] [02/19/2019 16:54:50.554] [testing-rediscala.rediscala-client-worker-dispatcher-6] [akka://testing/user/RedisClient-$a] Connected to localhost/127.0.0.1:6400
[WARN] [02/19/2019 16:54:50.563] [testing-rediscala.rediscala-client-worker-dispatcher-6] [akka://testing/user/RedisClient-$a] ConnectionClosed PeerClosed
[INFO] [02/19/2019 16:54:50.564] [testing-rediscala.rediscala-client-worker-dispatcher-6] [akka://testing/user/RedisClient-$a] Trying to reconnect in 2 seconds
[INFO] [02/19/2019 16:54:52.583] [testing-rediscala.rediscala-client-worker-dispatcher-9] [akka://testing/user/RedisClient-$a] Connect to localhost/127.0.0.1:6400
[INFO] [02/19/2019 16:54:52.584] [testing-rediscala.rediscala-client-worker-dispatcher-9] [akka://testing/user/RedisClient-$a] Connected to localhost/127.0.0.1:6400
[WARN] [02/19/2019 16:54:52.593] [testing-rediscala.rediscala-client-worker-dispatcher-9] [akka://testing/user/RedisClient-$a] ConnectionClosed PeerClosed
[INFO] [02/19/2019 16:54:52.594] [testing-rediscala.rediscala-client-worker-dispatcher-9] [akka://testing/user/RedisClient-$a] Trying to reconnect in 2 seconds
[info] MyRedisStoreSpec
[info] The RedisStore should
[info] when calling get
[error] x return an empty list if the key doesn't exist
Hi,
I am using Rediscala for some really simple key-value persistence operations.
During the server lifetime, we see a lot of
r.a.RedisClientActor - ConnectionClosed PeerClosed
.These are logged at the
warning
level.Is this something to be concerned about? We have some connection issues as well, and I am wondering if they are related.
We are running a Play server with an akka
ActorSystem
running on Heroku.Can provide more information if this is domain specific.
The text was updated successfully, but these errors were encountered: