Show HN: Stellar – Git for PostreSQL and MySQL
1–10 of 79 posts
Re: Show HN: Stellar – Git for PostreSQL and MySQL
#2I expected something related with Stellar coins.
Looks like a good project, I definitely want an easy way to manage development databases.
Re: Show HN: Stellar – Git for PostreSQL and MySQL
#3This is a nice project. I used to have my database dump tracked by git (in binary mode). anytime my db changes I'll have to overwrite the file with the new database dump and include it with the commit.
I'm just wondering if this project offers anything special/better than the method I described.
Re: Show HN: Stellar – Git for PostreSQL and MySQL
#4Unfortunate name, excellent project :)
Re: Show HN: Stellar – Git for PostreSQL and MySQL
#5This sort of thing is useful, but already supported by Postgres through transactional DDL. Migrations that fail will have their transaction reverted.
Re: Show HN: Stellar – Git for PostreSQL and MySQL
#6I wish projects like these would always include some basic info in their README about: (1) how it works, and (2) how it might fail.
Re: Show HN: Stellar – Git for PostreSQL and MySQL
#7This sort of thing is useful, but already supported by Postgres through transactional DDL. Migrations that fail will have their transaction reverted.
Transaction is only reverted if the migration fails. Stellar helps you if your migration succeeds but does the wrong thing (deleting wrong column, missing WHERE in UPDATE statement).
Re: Show HN: Stellar – Git for PostreSQL and MySQL
#8I wish projects like these would always include some basic info in their README about: (1) how it works, and (2) how it might fail.
Totally agree, peoples needs to know how it works before starting using it.
Re: Show HN: Stellar – Git for PostreSQL and MySQL
#9This sort of thing is useful, but already supported by Postgres through transactional DDL. Migrations that fail will have their transaction reverted.
What if you're writing a migration that includes DML, and it fails partway through? Wouldn't it be good to be able to restore the DB state automatically and try again?
Re: Show HN: Stellar – Git for PostreSQL and MySQL
#10Interestingly they don't show MySQL benchmarks in the readme; I suspect it might be because the MySQL implementation is pretty basic
https://github.com/fastmonkeys/stellar/blob/master/stellar/o...