Stellar allows you to quickly restore database when you are e.g. writing database migrations, switching branches or messing with SQL. PostgreSQL and MySQL (partially) are supported.
Stellar is fast. It can restore a database ~140 times faster than using the usual pg_dump & pg_restore.
Stellar works by storing copies of the database in the RDBMS (named as stellar_xxx_master and stellar_xxxx_slave). When restoring the database, Stellar simply renames the database making it lot faster than the usual SQL dump. However, Stellar uses lots of storage space so you probably don't want to make too many snapshots or you will eventually run out of storage space.
Warning: Please don't use Stellar if you can't afford data loss. It's great for developing but not meant for production.
You can install Stellar with pip
.
$ pip install stellar
After that, you should go to your project folder and initialize Stellar settings. Stellar initialization wizard will help you with that.
$ stellar init
Stellar settings are saved as 'stellar.yaml' so you probably want to add that to your .gitignore
.
$ echo stellar.yaml >> .gitignore
Done! 👯
$ stellar snapshot SNAPSHOT_NAME
$ stellar restore SNAPSHOT_NAME
sqlalchemy.exc.OperationalError: (OperationalError) (1044, u"Access denied for user 'my_db_username'@'localhost' to database 'stellar_data'") "CREATE DATABASE stellar_data CHARACTER SET = 'utf8'" ()
Make sure you have the rights to create new databases. See Issue 10 for discussion
If you are using PostgreSQL, make sure you have a database that is named the same as the unix username. You can test this by running just psql
. (See issue #44 for details)