Info: | This package contains a simple Django session backend that uses Amazon's DynamoDB for data storage. |
---|---|
Author: | Greg Taylor |
django-dynamodb-sessions has seen some use on small test environments within EC2. While it should be ready for prime time, it hasn't been heavily battle tested just yet. Other notes:
- There is currently no management command to remove expired sessions. We can't re-use the Django cleanup command, so we'll have to write our own. This will be added in the next release, we're already setting expiration attributes to drive the cleanup.
Before you can use this module, you'll need to visit your DynamoDB tab in the AWS Management Console. Then:
- Hit the Create Table button.
- Enter
sessions
as your table name. This can be something else, you'll just need to adjust thesettings.DYNAMODB_SESSIONS_TABLE_NAME
value accordingly. - Select Primary Key Type =
Hash
. - Select a
String
hash attribute type. - Enter
session_key
for Hash Attribute Name. - Hit the Continue button.
- Decide on throughput. The free tier is 10 read capacity units, 5 write.
- Finish the rest of the steps
After your table is created, you're ready to install the module on your Django app.
Install django-dynamodb-sessions using pip
or easy_install
:
pip install django-dynamodb-sessions
In your settings.py
file, you'll need something like this:
DYNAMODB_SESSIONS_AWS_ACCESS_KEY_ID = 'YourKeyIDHere' DYNAMODB_SESSIONS_AWS_SECRET_ACCESS_KEY = 'YourSecretHere'
If you'd like to add a caching layer between your application and DynamoDB to reduce queries (like Django's cached_db backend), set your session backend to:
SESSION_ENGINE = 'dynamodb_sessions.backends.cached_dynamodb'
Otherwise, go straight to DynamoDB:
SESSION_ENGINE = 'dynamodb_sessions.backends.dynamodb'
After that, fire her up and keep an eye on your Amazon Management Console to see if you need to scale your read/write units up or down.
If you encounter any bugs, have questions, or would like to share an idea, hit up our issue tracker.
The following settings may be used in your settings.py
:
DYNAMODB_SESSIONS_TABLE_NAME: | The table name to use for session data storage.
Defaults to sessions . |
---|---|
DYNAMODB_SESSIONS_TABLE_HASH_ATTRIB_NAME: | The hash attribute name on your
session table. Defaults
to session_key |
DYNAMODB_SESSIONS_ALWAYS_CONSISTENT: | If you're not using this session backend
behind a cache, you may want to force all
reads from DynamoDB to be consistent.
This may lead to slightly slower queries,
but you'll never miss object
creation/edits. Defaults to True . |
DYNAMODB_SESSIONS_AWS_ACCESS_KEY_ID: | The access key for the AWS account to use for DynamoDB. |
DYNAMODB_SESSIONS_AWS_SECRET_ACCESS_KEY: | The secret for the AWS account to use for DynamoDB. |
- Replacing self.session_key with self._session_key in the backend. (AdamN)
- Django 1.4 compatibility, and unnecessary code removal. (AdamN)
- Re-packaging with setuptools instead of distutils.
- Correcting an issue with the cached_dynamodb backend.
- Initial release.
django-dynamodb-sessions is licensed under the BSD License.