Dumping/Loading Schema in Cassandra
Join the DZone community and get the full member experience.
Join For FreeThis handy command line will dump a schema from Cassandra:
echo -e "use your_keyspace;\r\n show schema;\n" | bin/cassandra-cli -h localhost > mySchema.cdl
I always forget the "-e" on echo, which is why I thought I would blog this. We've started using ".cdl" as the extension, short for "Cassandra DDL".
Coincidentally, you can then load it with:
bin/cassandra-cli -h localhost -f mySchema.cdl
Hope people find this useful.
Schema
Published at DZone with permission of Brian O' Neill, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments