Skip to main content

Django Cassandra Engine - the Cassandra backend for Django

Project description

All tools you need to start your journey with Apache Cassandra and Django Framework!

Latest version Downloads CI Code climate

Features

  • integration with latest python-driver from DataStax

  • working flush, migrate, sync_cassandra, inspectdb and dbshell commands

  • support for creating/destroying test database

  • accepts all Cqlengine and cassandra.cluster.Cluster connection options

  • automatic connection/disconnection handling

  • works well along with relational databases (as secondary DB)

  • storing sessions in Cassandra (NEW!)

Plans (TODO)

  • User model stored in Cassandra (auth module)

  • Admin panel for Cassandra models

  • Forms

Installation

Recommended installation:

pip install django-cassandra-engine

Basic Usage

  1. Add django_cassandra_engine to INSTALLED_APPS in your settings.py file:

    INSTALLED_APPS = ('django_cassandra_engine',) + INSTALLED_APPS
  2. Change DATABASES setting:

    DATABASES = {
        'default': {
            'ENGINE': 'django_cassandra_engine',
            'NAME': 'db',
            'TEST_NAME': 'test_db',
            'HOST': 'db1.example.com,db2.example.com',
            'OPTIONS': {
                'replication': {
                    'strategy_class': 'SimpleStrategy',
                    'replication_factor': 1
                }
            }
        }
    }
  3. Define some model:

    # myapp/models.py
    
    import uuid
    from cassandra.cqlengine import columns
    from cassandra.cqlengine.models import Model
    
    class ExampleModel(Model):
        example_id    = columns.UUID(primary_key=True, default=uuid.uuid4)
        example_type  = columns.Integer(index=True)
        created_at    = columns.DateTime()
        description   = columns.Text(required=False)
  4. Run ./manage.py sync_cassandra

  5. Done!

Documentation

The documentation can be found online here.

License

Copyright (c) 2014-2016, Rafał Furmański.

All rights reserved. Licensed under BSD 2-Clause License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-cassandra-engine-0.8.1.tar.gz (14.5 kB view details)

Uploaded Source

Built Distribution

django_cassandra_engine-0.8.1-py2-none-any.whl (23.3 kB view details)

Uploaded Python 2

File details

Details for the file django-cassandra-engine-0.8.1.tar.gz.

File metadata

File hashes

Hashes for django-cassandra-engine-0.8.1.tar.gz
Algorithm Hash digest
SHA256 13a1a1cd3a66969f0b32fb1904d69abb2b8544ec40d92803478adb44b86eab81
MD5 baff9093d02f6e72a6f8d3415c754ce6
BLAKE2b-256 eaa951a4719bc2e2dfe8efdfab1c27703e7de0c6b54e46d08e70a8dd8755dcd9

See more details on using hashes here.

File details

Details for the file django_cassandra_engine-0.8.1-py2-none-any.whl.

File metadata

File hashes

Hashes for django_cassandra_engine-0.8.1-py2-none-any.whl
Algorithm Hash digest
SHA256 77013ea16f9f3b2f1f436922d8b9458474a28f06e1ea96194957f76c46cc2b3f
MD5 c1e063d23982ec7b6f16d78e328db0a9
BLAKE2b-256 51422af964ef9d8f284c9552a5488f4e14e75133e067c9858829f989c4b882fc

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page