I’ve started learning using Django with Cassandra.
I will develop many websites on Cassandra, since I need the scalability (If start with Cassandra from early development, I dont need to think about migration to Cassandra)
But a new website must be less visitor, so I need many database (probably hundreds) running on a machine.
In MySQL, I just need:
CREATE USER 'username'@'localhost' IDENTIFIED BY 'pass';
CREATE DATABASE dbname CHARACTER SET utf8 COLLATE utf8_bin;
GRANT ALL ON dbname.* TO 'username'@'localhost';
I’ve tried looking at Cassandra documentation to create many database in one server, but nothing found
bin/cassandra-cli
create keyspace dbname;
but, if you want “many database running on one machine” instead of “one database running on many machines” then you probably don’t need Cassandra.