Hi Igor, I recently faced an issue with Cassandra store closing idle connections after some time. While investigating I found that this is caused by SessionPool and its SessionMonitor thread which closes sessions that were not acquired from the pool within 5 minutes.
I have several questions regarding this: - What is the general idea behind this? - Why the timeout is not configurable? - Is it possible to add an option to disable this thread completely? Will this have any drawbacks? -Val