Code Monkey home page Code Monkey logo

jetty-session-redis's Introduction

Note: This version may not work with versions of Jetty older than 9

Jetty session clustering with REDIS

Build instruction:

git clone [email protected]:jcern/jetty-session-redis.git
cd jetty-session-redis
mvn package

Download

All downloads are here. They will also be available in Maven central repository and also in Sonatype OSS repositories soon:

See the section below to know which package you need (the jar file or the -all bundle).

Installation

You need to put in Jetty's lib/ext folder:

  • jedis
  • commons-pool

and one of the following JAR:

  • jetty-session-redis-X.Y.jar (if you are going to put all serializer dependencies also as independant jar files)
  • jetty-session-redis-X.Y-all.jar (contains already packaged-relocated serializers)

I strongly recommand you use the jetty-session-redis-X.Y-all.jar because some serializers (like JBoss Serializer) have been improved for performance.

Configuration

In Jetty server configuration file (i.e. jetty.xml):

<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
<Configure id="Server" class="org.eclipse.jetty.server.Server">

    <!--
        Configure session id management
    -->
    <Set name="sessionIdManager">
        <New class="com.ovea.jetty.session.redis.RedisSessionIdManager">
            <Arg>
                <Ref id="Server"/>
            </Arg>
            <Arg>session/redis</Arg>
            <!-- time interval to check for expired sessions in redis cache, in milliseconds. Defaults to 1 min -->
            <Set name="scavengerInterval">30000</Set>
            <!-- cluster node name -->
            <Set name="workerName">
                <SystemProperty name="jetty.node" default="node1"/>
            </Set>
        </New>
    </Set>

    <!--
        Provides a Redis Pool for session management on server and each webapp
    -->
    <New class="org.eclipse.jetty.plus.jndi.Resource">
        <Arg>session/redis</Arg>
        <Arg>
            <New class="redis.clients.jedis.JedisPool">
                <Arg>
                    <New class="org.apache.commons.pool2.impl.GenericObjectPoolConfig">
                        <Set type="int" name="minIdle">5</Set>
                        <Set type="int" name="maxTotal">15</Set>
                        <Set type="boolean" name="testOnBorrow">true</Set>
                    </New>
                </Arg>
                <Arg>127.0.0.1</Arg>
                <Arg type="int">6379</Arg>
            </New>
        </Arg>
    </New>

</Configure>

In each web application context file using session clustering (i.e. in WEB-INF/jetty-env.xml):

<Configure id="webappContext" class="org.eclipse.jetty.webapp.WebAppContext">

    <Set name="contextPath">/webapp1</Set>

    <Set name="sessionHandler">
        <New class="org.eclipse.jetty.server.session.SessionHandler">
            <Arg>
                <New class="com.ovea.jetty.session.redis.RedisSessionManager">
                    <Arg>session/redis</Arg>
                    <Arg>
                        <New class="com.ovea.jetty.session.serializer.JsonSerializer"/>
                    </Arg>
                    <!-- set the interval in seconds to force session persistence event if it didn't changed. Default to 60 seconds -->
                    <Set name="saveInterval">20</Set>
                    <!-- set the cookie domain -->
                    <Set name="sessionDomain">127.0.0.1</Set>
                    <!-- set the cookie path -->
                    <Set name="sessionPath">/</Set>
                    <!-- set the cookie max age in seconds. Default is -1 (no max age). 1 day = 86400 seconds -->
                    <Set name="maxCookieAge">86400</Set>
                    <!-- set the interval in seconds to refresh the cookie max age. Default to 0. This number should be lower than the session expirity time. -->
                    <Set name="refreshCookieAge">300</Set>
                </New>
            </Arg>
        </New>
    </Set>

</Configure>

Note: Jetty's default for maxCookieAge is -1 and as per my tests, setting it to a too short value may cause issues in session retrieval.

Controlling session serialization

By default, session attributes are serialized using XStream, but this is clearly the worst serializer and you must make sure that you configure the serializer according to your needs. If you have small sessions with simple types, consider the JsonSerializer. If you have complexe objects but all serializable, you can consider the JbossSerializer. You can also create your own ones byt implementing the Serializer class of a provided skeleton (see examples here).

Here is the list of provided Serializer:

  • com.ovea.jetty.session.serializer.JsonSerializer

  • com.ovea.jetty.session.serializer.JdkSerializer

  • com.ovea.jetty.session.serializer.XStreamSerializer

  • com.ovea.jetty.session.serializer.JBossSerializer

    session/redis

Debugging

If you need to troobleshoot something, you can put Jetty in DEBUG mode and see the traces from RedisSessionManager and RedisSessionIdManager.

Also, with Redis you have the ability to monitor all the calls. Simply issue in a command-line:

redis-cli monitor

To see all Redis requests going to the Redis server. If you are using a String serializer such as XStream of Json, you'll be able to see all your session attributes into.

Versions & Compatibility

The latest release (>= 2.1.ga) must be used with at least these dependencies:

  • com.ovea:jetty-session-redis:2.1.ga:serialjson
  • org.eclipse.jetty.aggregate:jetty-all:9.2.3.v20140905
  • org.mortbay.jetty:servlet-api:3.0.20100224
  • redis.clients:jedis:2.6.0
  • commons-pool2:commons-pool2:2.3.0

Authors and help

jetty-session-redis's People

Contributors

jcern avatar mathieucarbou avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

tedeling trasa

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.