It's a strange world. Last night, I attended my first Vancouver MySQL meetup. This morning, my google reader is filled with news that Sun is buying MySQL.
Wednesday, January 16, 2008
MySQL Meetup Last Night
Posted by
Gary
at
9:18 AM
0
comments
Tuesday, January 8, 2008
LongJump DaaS
LongJump's Database as a Service was featured on TechCrunch today. It appears to be a competitor to SimpleDB:
LongJump’s DaaS provides a complete environment for hosting a database that’s highly secure and web-enabled while simultaneously cutting the costs and easing the hassles for entrepreneurs and developers who would otherwise have to purchase a database server, provision it, address data access and availability issues, manage backup and replication issues, and tackle security and data protection.
Thursday, December 27, 2007
MySQL EC2 Benchmarks
Morgan Tocker has some EC2 benchmarks for MySQL. The performance doesn't stack up all that well. He says EC2 tends to be inconsistent, which makes sense on a shared machine.
Posted by
Gary
at
9:01 AM
0
comments
Wednesday, December 5, 2007
MySQL Workbench -- No Mac Till 2008
MySQL Workbench is set to fill a gap in my DBA needs. Unfortunately, no Mac support till 2008, from the download page:
Please note that at this point only the Windows Beta version is available. Linux and OS X releases will be available in 2008.Boo-urns. I seem to remember a disproportionate number of Macs at the 2006 User Conference. I figured it would be higher on their priority list. Oh well, I suppose I'll just have to wait to buy my copy :(
Posted by
Gary
at
8:06 AM
0
comments
Labels: mac, mysql, mysql workbench
Saturday, June 16, 2007
OCFS2 Looks Interesting
There was a discussion on the CentOS mailing list the other day about Oracle Cluster File System 2. I went and checked it out. Well, I read some docs about it anyway.
It's released under the GPL and it's not really just for Oracle. It looks to be a share nothing type file system layer. Oracle uses it for RAC, I believe. Of course RedHat doesn't ship it -- it would eat into their GFS sales. Oracle does distribute RPM's for RedHat/CentOS though.
I've played around with DRDB for replication/fail over before. It works pretty well, but you definitely feel blind on your secondary machine since you don't have the shared partitions mounted. With MySQL starting to push DRDB for MySQL failover, I wonder if this would work better. You'd still want to use heartbeat to control where MySQL is running, but at least you'd be able to see everything on each node.
It also may be a decent alternative to replication if you're just using MyISAM. This may be good for scaling out data warehouses -- having only one master updating files and many slaves reading those files.
Another interesting use would be for apache document roots. It gets around having to sync each web server node's document root (if you take a share nothing approach), or using an NFS server (if you use NFS).
I haven't really looked into how well OCFS2 handles node additions (I'm guess you have to restart the cluster). Nor what happens when a node gets out of sync.
Sooner or later I'll install and test it out.