Databased sessions failing to update

Description

We recently updated from Lucee 5.x to 6.x and began noticing some unusual session behavior. Our session information is stored in a database for round robin load balancing. The initial session update to the database seems to work fine. But, almost all subsequent session updates to the database seem to fail. I believe there is a silent exception being thrown and the initial session is recovered silently from the database which in a lot of cases may be somewhat imperceptible to the user.

We believe the database session updates are failing for 2 reasons:

  1. The ‘expires’ column never updates on 6.x (5.x it updates every cfm/cfc page touch by the user). Regardless of user activity on our websites, their session expire exactly the amount of time set in the session timeout from their first visit. Their session is not being kept alive because ‘expires’ never updates. We can very reliably see this never updates after the initial database update.

  2. Any session variables written after the initial set are eventually lost, I believe this is because they are never written to the database and when it throws and exception/recovers and pulls the initial session variables from the database, the new ones don’t exist. This one is less reliable to figure out. Sometimes session variables created after the initial session creation stick around for a few minutes and sometimes much longer. However they almost always seem to disappear eventually.

Environment

OS: Windows Server 2022

Java: 21.0.6

Tomcat: 9.0.102

Loader Version: 5.x and 6.2.0.321

Activity

Show:

Zac Spitzer last month

first up, the interval for purging datasource sessions is every hour, which ain’t great, for testing this

https://github.com/lucee/Lucee/blob/6.2/core/src/main/java/lucee/runtime/type/scope/storage/clean/DatasourceStorageScopeCleaner.java#L43

I am going to update the purgeExpireSessions / session cleaner to support a force flag, to bypass this

https://github.com/lucee/Lucee/blob/6.2/core/src/main/java/lucee/runtime/tag/Admin.java#L1556

Zac Spitzer last month

a couple of things to try, you can see really detailed logging using the following env vars and running tomcat via bin/startup.bat

setting this.sessionCluster=true forces writing changes back after each request (when there’s a change in the top level variables)

I have some related test code here

https://github.com/lucee/Lucee/blob/6.2/test/tickets/LDEV4670.cfc

I’m investigating

Greg Wacker 25 March 2025 at 23:40

I forgot to mention a few of the session variables are structures. That seemed to be an issue in a older session management issue.

And last but not least, Lucee is a fantastic product. The work you guys put into this is amazing.

Details

Assignee

Reporter

Priority

New Issue warning screen

Before you create a new Issue, please post to the mailing list first https://dev.lucee.org

Once the issue has been verified, one of the Lucee team will ask you to file an issue

Affects versions

Created 25 March 2025 at 23:32
Updated last month