Skip to content

Instantly share code, notes, and snippets.

@FGRibreau
Last active February 29, 2016 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FGRibreau/3c524cb57f24c460716e to your computer and use it in GitHub Desktop.
Save FGRibreau/3c524cb57f24c460716e to your computer and use it in GitHub Desktop.
Give a try to ScyllaDB (Cassandra in C++, ~10x faster) with two lines of docker http://blog.fgribreau.com/2016/02/give-try-and-bench-scylladb-cassandra.html
# start in one terminal scylla
docker run --rm -P -i -t --name=scylla scylladb/scylla
# start in another terminal cassandra-stress test
docker run --link scylla -it --rm joprice/scylla-tools cassandra-stress write -mode cql3 native -node $(docker inspect -f '{{ .NetworkSettings.IPAddress }}' scylla)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment