Re: Tomcat session management with Redisson

2019-02-24 Thread Herb Burnswell
On Mon, Feb 18, 2019 at 11:13 AM Harpreet Sandhu wrote: > If you want to go with redis in HA environment. You should opt redis > sentinel over master-slave architecture. > Thanks Harpreet. I did switch to using the sentinel configuration as I have: sentinel 1 -- sentinel 2 ---

Re: Tomcat session management with Redisson

2019-02-24 Thread Herb Burnswell
On Mon, Feb 18, 2019 at 12:27 PM John Dale wrote: > Regarding clustering and state recovery, I opted some time ago to > store session information in the database - I prefer full control over > session state for security/obscurity reasons. > > Load balancing is straightforward this way. > > I'm no

Re: Tomcat session management with Redisson

2019-02-18 Thread John Dale
tha Fernando > Director > RevPort (Pvt.) Ltd. > malith.ferna...@revport.net | +94 713 76 92 17 > > > > > From: John Dale > Sent: Tuesday, February 19, 2019 1:57:10 AM > To: Tomcat Users List > Subject: Re: Tomcat session management with

Re: Tomcat session management with Redisson

2019-02-18 Thread Malith Pamuditha Fernando
management with Redisson Regarding clustering and state recovery, I opted some time ago to store session information in the database - I prefer full control over session state for security/obscurity reasons. Load balancing is straightforward this way. I'm not sure I would ever need more than 2

Re: Tomcat session management with Redisson

2019-02-18 Thread John Dale
Regarding clustering and state recovery, I opted some time ago to store session information in the database - I prefer full control over session state for security/obscurity reasons. Load balancing is straightforward this way. I'm not sure I would ever need more than 2 nodes for my purposes, thou

Re: Tomcat session management with Redisson

2019-02-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Herb, On 2/18/19 13:59, Herb Burnswell wrote: > On Fri, Feb 15, 2019 at 12:21 PM Christopher Schultz < > ch...@christopherschultz.net> wrote: > > Herb, > > On 2/14/19 12:41, Herb Burnswell wrote: Tomcat 8.5.23 RHEL 7.5 We are lo

Re: Tomcat session management with Redisson

2019-02-18 Thread Harpreet Sandhu
If you want to go with redis in HA environment. You should opt redis sentinel over master-slave architecture. On Tue 19 Feb, 2019, 12:29 AM Herb Burnswell On Fri, Feb 15, 2019 at 12:21 PM Christopher Schultz < > ch...@christopherschultz.net> wrote: > > > -BEGIN PGP SIGNED MESSAGE- > > Has

Re: Tomcat session management with Redisson

2019-02-18 Thread Herb Burnswell
On Fri, Feb 15, 2019 at 12:21 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Herb, > > On 2/14/19 12:41, Herb Burnswell wrote: > > Tomcat 8.5.23 RHEL 7.5 > > > > We are looking to set up session management via Redisson to off

Re: Tomcat session management with Redisson

2019-02-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Herb, On 2/14/19 12:41, Herb Burnswell wrote: > Tomcat 8.5.23 RHEL 7.5 > > We are looking to set up session management via Redisson to offload > the CPU consumption of using Tomcat's built in clustering session > management. We have CPU licensin

Tomcat session management with Redisson

2019-02-14 Thread Herb Burnswell
All, Tomcat 8.5.23 RHEL 7.5 We are looking to set up session management via Redisson to offload the CPU consumption of using Tomcat's built in clustering session management. We have CPU licensing limits and need to conserve as much CPU as possible. I have never set up a configuration this way