Ben Kaufman at SQLServerCentral introduces MySQL to the SQL Server DBA crowd. All in all his views seem to be fairly positive, in particular the MySQL Cluster experience:
NDB is the gem of MySQL, originally developed by Ericson to track
cell phone calls this is a share nothing cluster engine stored in
memory. This is a true cluster that supports both high
availability and load balancing. [...]
This engine is similar to synchronous mirroring in SQL Server in
that it is a 2-phase commit, the difference being the commit is
done in memory at the data layer not the log. Logs are hardened
at a later time, with the theory being that since data is
committed on multiple nodes the data is safe and doesn't require
a log flush as part of the transaction. [...]
For pure performance the cluster is comparable with a single
instance of SQL Server. I've …