Cassandra.Link
The best knowledge base on Apache Cassandra®
Helping platform leaders, architects, engineers, and operators build scalable real time data platforms.
A collection of 22 posts
elubow/cql-vim
8/13/2018
Highlight CQL syntaxes inside the vim editor. Install with plugin manager " Plug (https://github.com/junegunn/vim-plug) Plug 'elubow/cql-vim' " Vundle (https://github.com/VundleVim/Vundle.vim) Plugin...
hawkular/cassalog
7/26/2018
Just as application code evolves and changes so do database schemas. If you are building an application and intend to support upgrading from one version to another, then managing schema changes is ess...
thejaspm/cfstatsParseVisualize
3/7/2018
import os import re import sys from optparse import OptionParser KEYSPACE="Keyspace" COLUMN...
brianmhess/cassandra-loader
1/25/2018
Introductioncassandra-loader is a general-purpose, delimited-file, bulk loader for Cassandra. It supports a number of configuration options to enable bulk loading of various types of delimited files, ...
JGiard/pycfstats
README.md pŷthon3 tool to convert 'nodetool cfstats' output to csv format usage : python3 pycfstats.py -f cfstats.log -o cfstats.csv
cassndra's nodtool utility command "cfstats"( - Print statistics on column families) output is not user friendly. Involves efforts to understand the output and make decisions based on the output. Here...
Copying Data Between Cassandra Tables
1/23/2018
Over the last few months I've been working a great deal with cassandra. Recently I needed to copy data from one cluster to another for testing purposes. The primary problem I faced was that user defin...
wildengineer/cassandra-data-copy-tool
This simple java based tool copies data from a live cassandra table to another. The source and destination tables do not need to be on the same cluster or keyspace. All you need to ensure is that the ...