-
Notifications
You must be signed in to change notification settings - Fork 72
stored Sessions in dynamodb #46
Description
we are deploying our application in the following environment:
64bit Amazon Linux 2016.03 v2.2.0 running Tomcat 8 Java 8, aws-dynamodb-session-tomcat.jar.2.0.4, after creating the Tomcat_Sessions table in dynamoDB, the session can be stored in the table.
BUT we notice that the new sessions are not stored immediately in Tomcat_Sessions table if new sessions are created by the clients. neither the dynamodb UI or using the command aws dynamodb scan --table-name Tomcat_SessionState --region xxx
there is notice "Storage size and item count are not updated in real-time. They are updated periodically, roughly every six hours.", it means, the sessions will be stored in the table but not updated immediately?
we are trying to solve our autoscaling, load balacing problem with AWS. so your library is critical to our application. but we do not understand the behavior of your libaray completely. if you can share some limitations of this lib, that would be very great.
With best regards,
Harrsion