Project

General

Profile

Actions

Feature #51731

closed

Store sessions outside DB

Added by Thorsten Kahler over 10 years ago. Updated over 8 years ago.

Status:
Closed
Priority:
Must have
Assignee:
-
Category:
-
Target version:
-
Start date:
2013-09-04
Due date:
% Done:

0%

Estimated time:
PHP Version:
Tags:
Complexity:
hard
Sprint Focus:

Description

On high traffic sites it's sometimes necessary to store session records outside the main database because of a high rate of update queries on the FE session tables. This issue becomes even more pressing when using DB replication or remote database servers.

I suggest to add a session storage service so it can be implemented to use different storage backends. These storage backend implementations can be based on caching backends or totally unrelated to the core.


Files

dkd_redis_sessions.zip (3.4 KB) dkd_redis_sessions.zip Redis session storage service Thorsten Kahler, 2013-09-04 23:14

Related issues 3 (0 open3 closed)

Related to TYPO3 Core - Bug #16302: alt_doc.php does BE session verification twiceClosed2006-06-28

Actions
Related to TYPO3 Core - Bug #53598: Select/Delete fe_sessions twice per requestClosedAlexander Opitz2013-11-13

Actions
Related to TYPO3 Core - Feature #70316: Introduce Session FrameworkClosedMathias Schreiber2015-10-02

Actions
Actions #1

Updated by Thorsten Kahler over 10 years ago

  • % Done changed from 0 to 10

Suggested implementation in sandbox sandbox/thorsten/session-api

Actions #2

Updated by Ernesto Baschny over 10 years ago

  • Status changed from New to Accepted

Cool stuff, Thorsten, you already seem to have made some nice progress!

Are you planning to move the whole database storage as it is now into a service also? That would enable you to get rid of all those "if (sessionStorage)" you have currently in the code.

Looking at how Flow Session handling currently is implemented, it's a mix of session storage and session keeping (resume, handle the ID, the cookie etc). Separating the "Storage" in it's own concearn sounds like a good plan.

Maybe you could also take a look at Symfony for some inspiration on the interface, as they provide some neat additions like Bags and some other helper-methods.

At the end, to be able to test this for review it would be great if you could provide some implementation example as an extension.

Actions #3

Updated by Ernesto Baschny over 10 years ago

And the last question: Will you be able to tackle the first implementation before feature freeze (15th of October)? It would be helpful if you are able to join our Code Sprint in October so you can also discuss the API with the guys (and get some "live-reviews"): Enhances the chance of it being included in the release. ;)

Actions #4

Updated by Thorsten Kahler over 10 years ago

Ernesto Baschny wrote:

Are you planning to move the whole database storage as it is now into a service also? That would enable you to get rid of all those "if (sessionStorage)" you have currently in the code.

I was thinking about using the current implementation as a DB session storage service. Didn't know if it's clever to remove the existing and working code in 6.2 LTS. But if there's an agreement to declare the API stable moving the whole implementation to a storage service would be the next logical step.

Looking at how Flow Session handling currently is implemented, it's a mix of session storage and session keeping (resume, handle the ID, the cookie etc). Separating the "Storage" in it's own concearn sounds like a good plan.

There's room for improvement of the whole session handling but IMO not before release of the LTS version. But the storage part should be stable enough to be used later on.

Actions #5

Updated by Thorsten Kahler over 10 years ago

Ernesto Baschny wrote:

At the end, to be able to test this for review it would be great if you could provide some implementation example as an extension.

I've developed a proof of concept implementation in parallel to the API, of course. It uses Redis via TYPO3s Redis caching backend as a session storage backend. The extension isn't finished yet but already works (see dkd_redis_sessions.zip)

Actions #6

Updated by Thorsten Kahler over 10 years ago

Ernesto Baschny wrote:

And the last question: Will you be able to tackle the first implementation before feature freeze (15th of October)? It would be helpful if you are able to join our Code Sprint in October so you can also discuss the API with the guys (and get some "live-reviews"): Enhances the chance of it being included in the release. ;)

To facilitate reviews it's probably useful to have "classic" implementation (using the current code) and maybe an implementation using the DB caching backend. Let's see how far I can get with that.

Actions #7

Updated by Thorsten Kahler over 10 years ago

  • Status changed from Accepted to Resolved
  • % Done changed from 10 to 100

Applied in changeset c50ee9f32186eb71439cad2e80b6198b03d9a461.

[Edit: It seems Gerrit is a bit too avid ;-)]

Actions #8

Updated by Thorsten Kahler over 10 years ago

  • Status changed from Resolved to Accepted
  • % Done changed from 100 to 10

TYPO3s services don't work too well as a way to select and instantiate a storage backend because "GeneralUtitility::makeInstanceService()":http://forge.typo3.org/projects/typo3v4-core/repository/revisions/master/entry/typo3/sysext/core/Classes/Utility/GeneralUtility.php#L4343 implements a pseudo-singleton. That's not a problem in the backend, but in the frontend BE user sessions are checked besides the FE user sessions. But due to the singleton characteristic of the session storage service init() is only called once and you can't switch between FE and BE session storages without an enormous effort.

In short: it's possible to instantiate different instances of the storage service for FE and BE, but not multiple which is required in FE.

If we want to stick with the services approach I could imagine different ways:
  1. Implement different classes for BE and FE session storage; these can be stubs which inherit all functionality from a common parent class and only serve to satisfy the pseudo-singleton behaviour
    This seems to be the leanest approach, yet it still means some overhead in terms of empty classes:
    abstract class ClassicStorage extends \TYPO3\CMS\Core\Service\AbstractService implements StorageInterface {
    // implementation here
    }
    class ClassicStorageFrontend extends ClassicStorage {
    // no code here or method init() at most
    }
    class ClassicStorageBackend extends ClassicStorage {
    // no code here or method init() at most
    }
  2. Make the service a factory that only creates a storage object of the requested type (FE, BE)
    Maybe the factory class could be generic and such part of the core. Then this wouldn't mean much of a change to the current design of the implementations. Concerning the architecture this is just one pattern too much to solve the underlying issue properly.
    class AbstractUserAuthentication {
    public function start() {
      $storageFactory = GeneralUtility::makeInstanceService('sessionStorage');
      $this->sessionStorage = $storageFactory->getInstance($this->session_table == 'fe_sessions' ? 'frontend' : 'backend');
      // ...
    }
    
  3. Change GeneralUtitility::makeInstanceService() to use $serviceType and serviceSubtype besides className to identify service instances
    This will break some service implementations for sure so IMHO it's not an option. Nevertheless the current behaviour could be achieved by marking the service class as singleton.
    class AuthenticationService extends \TYPO3\CMS\Sv\AbstractAuthenticationService implements \TYPO3\CMS\Core\SingletonInterface {
    // ...
    }
  4. Tell the storage which kind of session is meant
    This is as ugly as it gets, regardless of the implementation:
    class AbstractUserAuthentication {
    // ...
    public function fetchUserSession() {
      $session = $this->sessionStorage->get($this->id, $this->session_table);
      // ...
    }
    // ...
    }
    class SessionStorage {
      public function get($identifier, $type) {
        if ($type === 'fe_sessions'} {
          // ...
        } else {
          // ...
        }
      }
    // ...
    }
    
    class AbstractUserAuthentication {
    // ...
    public function fetchUserSession() {
      $this->sessionStorage->injectAuthentication($this);
      $session = $this->sessionStorage->get($this->id);
      // ...
    }
    // ...
    }
    class SessionStorage {
      public function injectAuthentication(AbstractUserAuthentication $auth) {
        $this->authentication = $authentication;
      }
      public function get($identifier) {
        if ($this->authentication->session_table === 'fe_sessions'} {
          // ...
        } else {
          // ...
        }
      }
    // ...
    }
    

Any other opinions or ideas?

Actions #9

Updated by Thorsten Kahler over 10 years ago

  • Status changed from Accepted to Resolved
  • % Done changed from 10 to 100
Actions #10

Updated by Christian Kuhn over 10 years ago

  • Status changed from Resolved to New

Merge was to sandbox only, patch is not in master, yet, reopened.

Actions #11

Updated by Thorsten Kahler over 10 years ago

Christian Kuhn wrote:

Merge was to sandbox only, patch is not in master, yet, reopened.

Thanks :)

Actions #12

Updated by Thorsten Kahler over 10 years ago

  • Status changed from New to Accepted
  • Assignee set to Thorsten Kahler
Actions #13

Updated by Thorsten Kahler over 10 years ago

  • Status changed from Accepted to On Hold
  • Target version deleted (6.2.0)
  • % Done changed from 100 to 10
  • Complexity changed from hard to nightmare

To get this cleanly done needs much more work and some major changes in AbstractUserAuthentication and its subclasses. Thus this feature is delayed to the next release after 6.2.

Actions #14

Updated by Mathias Schreiber about 9 years ago

  • Assignee deleted (Thorsten Kahler)
  • Target version set to 8 LTS
Actions #15

Updated by Markus Klein over 8 years ago

  • Status changed from On Hold to Accepted
  • Priority changed from Should have to Must have
  • Complexity changed from nightmare to hard
Actions #16

Updated by Markus Klein over 8 years ago

Will be solved with #70316

Actions #17

Updated by Markus Klein over 8 years ago

  • Category deleted (Performance)
  • Status changed from Accepted to Closed
  • Target version deleted (8 LTS)
  • % Done changed from 10 to 0
Actions

Also available in: Atom PDF