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 CI

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

  • working django forms

  • usable admin panel with Cassandra models

Plans (TODO)

  • User model stored in Cassandra (auth module)

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 django_cassandra_engine.models import DjangoCassandraModel
    
    class ExampleModel(DjangoCassandraModel):
        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-2017, 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-1.2.0.tar.gz (26.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_cassandra_engine-1.2.0-py2-none-any.whl (37.5 kB view details)

Uploaded Python 2

File details

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

File metadata

File hashes

Hashes for django-cassandra-engine-1.2.0.tar.gz
Algorithm Hash digest
SHA256 4ed6e76bad3d1dd99ccfc04d98eb01971a0287f22329978c678617cc4ad93a0e
MD5 812cd8472b50dc9c929349421e6dbbf6
BLAKE2b-256 dfec227a35bee27c7801e16fa794e2cc568edc64f08bd8e21669af999be184fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for django_cassandra_engine-1.2.0-py2-none-any.whl
Algorithm Hash digest
SHA256 174c77583f7645e1b4b345d124f7be19a0df93bce1dcc0857344c08a535e0b34
MD5 3eb4a45530003c7af80680e5efdc7d75
BLAKE2b-256 15966447f18ba7259371387d8fe2a793fa922b9a63aad687960a5b09445bb2be

See more details on using hashes here.

Supported by

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