https://github.com/riptano/cdm
Cassandra Dataset Manager
https://github.com/riptano/cdm
Last synced: 4 months ago
JSON representation
Cassandra Dataset Manager
- Host: GitHub
- URL: https://github.com/riptano/cdm
- Owner: riptano
- License: apache-2.0
- Created: 2016-02-23T23:25:10.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-20T02:54:49.000Z (almost 10 years ago)
- Last Synced: 2026-01-04T15:37:27.693Z (6 months ago)
- Language: Python
- Homepage:
- Size: 147 KB
- Stars: 32
- Watchers: 138
- Forks: 7
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Cassandra Data Manager
Tool for installing cassandra datasets. This is not a bulk loader. It is intended to be used as a tool for learning and educational purposes.
This repository contains the cdm tool only, and has references to repositories which are independently maintained.
## Installation
pip install cassandra-dataset-manager
The project is still under heavy development, a lot is changing very quickly.
## Quickstart
Let's install the movielens-small dataset. It's a quick download at just a few MB and gives you a database you can play with.
cdm update
cdm install movielens-small
Open the Cassandra shell:
cqlsh -k movielens_small
desc tables;
select * from movies limit 10;
Options are all available at `cdm help`
I encourage you to read through the [documentation](http://cdm.readthedocs.org/en/latest/).