Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Databases Programming Software Businesses Oracle Sun Microsystems IT

MySQL Founder Starts Open Database Alliance, Plans Refactoring 153

Gary Pendergast writes "Monty Widenius, the 'father' of MySQL, has created the the Open Database Alliance, with the aim of becoming the industry hub for the MySQL open source database. He wants to unify all MySQL-related development and services, providing a potential solution to the fragmentation and uncertainty facing the communities, businesses and technical experts involved with MySQL, following the news of the Oracle acquisition of Sun." Related to this, an anonymous reader writes that "MySQL has announced a project to refactor MySQL to be a more Drizzle-like database." Update: 05/14 20:50 GMT by T : Original headline implied that this was a project of Sun, but (thanks to the open source nature of MySQL) it's actually Monty Widenius — no longer with Sun — leading this effort.
This discussion has been archived. No new comments can be posted.

MySQL Founder Starts Open Database Alliance, Plans Refactoring

Comments Filter:
  • PostgreSQL (Score:4, Insightful)

    by Anonymous Coward on Thursday May 14, 2009 @04:20PM (#27956169)

    Just bite the bullet and port to it. In the process, you may have to learn a bit about how databases are actually supposed to work, but that's probably good for you.

    • by glwtta ( 532858 )
      In the process, you may have to learn a bit about how databases are actually supposed to work, but that's probably good for you.

      That actually sounds like it plays into one of the MySQL talking points a little bit, so I want to assure all the MySQL+PHP developers out there that you won't have to - you might anyway, but you won't have to.
    • There was an april fools joke around here a couple of years ago.

      http://developers.slashdot.org/article.pl?sid=07/04/01/1448207 [slashdot.org]

      Perhaps it's time that this approach should be realized, instead of just joked about. This would allow people to to use the mysql api for their applications that require it, while providing a path to start using postgresql in the future.

    • Re: (Score:3, Informative)

      by kris ( 824 )

      It is not that easy - Postgres right now is lacking in the area of replication and thus fails as a database for all those MySQL users that require replication for scaleout.

      Postgres replication options usually are active-passive (WAL shipping solutions that recover the slave) or are trigger-based and syncronos such as Slony-I.

      What MySQL users usually require is replication to be losely coupled and asynchronous in order for it to become a viable scaleout option.

      • Re:PostgreSQL (Score:4, Interesting)

        by |DeN|niS ( 58325 ) on Friday May 15, 2009 @02:41AM (#27962483)

        Slony-I is asynchronous. Read postgres' excellent documentation [postgresql.org] for some other possibilities.

        You also get more flexibility; want to replicate your "current" tables but keep your "history" tables only on the master? Want to chain slaves to slaves instead of all slaves to one master? Want a special search database (you can have transactions and fulltext search at the same time) that only contains the ts_vector (fulltext search index) tables? Slony lets you do all of those.

        • Re: (Score:2, Informative)

          by Anonymous Coward

          Yes. And Slony is also difficult to administer and easy to break.

          Postgres is very much lacking a simple replication solution. If you're in the cloud, it's far more likely you're going to have many many smaller database spread across many machines. You need to be able to bring up groups of 3 (minimum) machines that cluster an entire database quickly and easily. You don't need all the flexibility of Slony, and you certainly don't need it's administration headaches.

          I can't even imagine trying to administer

        • Re:PostgreSQL (Score:4, Informative)

          by Slashdot Parent ( 995749 ) on Friday May 15, 2009 @10:48AM (#27966569)

          Slony-I is a dreadful hack that misuses triggers, and doesn't scale past a few nodes.

          I'm sorry, but Slony-I is not a serious replication solution.

          • I'm sorry, but Slony-I is not a serious replication solution.

            I believe the PostgreSQL devs themselves have said as much (officially, on their site). They've also said that the reason for this situation is that the project had previously taken the stance that it should not include its own replication, but should instead allow third-parties to implement replication as they see fit.

            However, they've now said that, since this hasn't worked so well in practice, the next version of PostgreSQL WILL include direct,

            • However, they've now said that, since this hasn't worked so well in practice, the next version of PostgreSQL WILL include direct, built-in support for basic replication, as well as making sure that heavyweight, third-party replication solutions are still supported.

              Well, wake me when it's there. MySQL still gets bashed for its historical lack of transactions, so if Postgres wants credit for something, it can at least implement it. Last I checked, it was supposed to be in 8.4, then it wasn't, then it was supposed to be in 8.5, and if memory serves, it's slipping again.

              Either way, I don't think these replication issues are a good enough reason to use MySQL instead. Worst case scenario, there ARE good replication options for PostgreSQL [wikivs.com].

              So which one of those solutions is:

              1. Easy to configure (as in, no harder than MySQL replication).
              2. Scales linearly (Slony-I scales quadratically, which is why you can't get beyond a few nodes)
              3. Can add a sla
    • We ported our DB to Postgres and never regretted it. MySQL is good for read only apps (such as web applications) but it isn't well suited to transaction oriented apps. Postgresql is faster and more reliable.

  • Did you go out there and talk to the Oracle? Did the Oracle come out into the sunlight and say anything at all...any gestures, groans, wild waving of hands, rolling of eyeballs...anything?

    Can we go out and talk to the Oracle in person?

    Dammit man, time is running out - we must speak to the Oracle....now, not later, right now!!!!

    • Re:Yes, but.... (Score:5, Insightful)

      by Ilgaz ( 86384 ) on Thursday May 14, 2009 @04:41PM (#27956625) Homepage

      I don't get why they treat Oracle like AOL acquiring Netscape. It is a database development company which has no solution to fill MySQL'es place if I haven't mistaken.

      I think after these incidents, large companies will think 1 billion times when they got the idea of acquiring an open source project. They treat Oracle like AOL for God's sake.

      • by Korin43 ( 881732 )
        I thought Oracle was a database? Is it different enough from MySQL to bother keeping both?
        • Re:Yes, but.... (Score:5, Insightful)

          by Dragonslicer ( 991472 ) on Thursday May 14, 2009 @07:52PM (#27959483)

          I thought Oracle was a database? Is it different enough from MySQL to bother keeping both?

          If you have to ask that question, just believe us when we answer "Yes."

        • Re:Yes, but.... (Score:4, Insightful)

          by spauldo ( 118058 ) on Thursday May 14, 2009 @09:32PM (#27960415)

          Freightliners [freightlinertrucks.com] and Vespas [vespausa.com] are both vehicles.

          Oracle is what you use if you have hundreds of millions of dollars, a team of DBAs, and your need for data storage is such that downtime is measured in thousands of dollars lost per minute.

          MySQL is what you use if you've got ten employees (one of which knows a bit of PHP) and sell motorcycle parts over the internet and you don't feel like an ebay store would quite meet your need.

          They're both great products (I assume, I'm not a DBA and haven't messed with oracle). They're both RDBMS's. They both run on just about any modern platform. They're not used for the same stuff.

        • Re: (Score:2, Insightful)

          by vegiVamp ( 518171 )
          Yeah. Oracle doesn't run all that well on the less-than-16-gig market.
      • Re:Yes, but.... (Score:4, Informative)

        by DragonWriter ( 970822 ) on Thursday May 14, 2009 @05:14PM (#27957167)

        It is a database development company which has no solution to fill MySQL'es place if I haven't mistaken.

        Oracle has a number of lighter DB products, including Oracle Express Edition (XE) which is free (as in beer). They don't have anything (that I know of) that does the same kind of multi-backend thing that MySQL does, but certainly they have a number of products whose market niches at least overlap with that of MySQL.

        (Also, Oracle is a lot more than a database development company and has certainly been more aggressively pushing into other areas; I suspect that their acquisition of Sun was more focussed on the non-MySQL parts of Sun than on MySQL.)

        • Re: (Score:3, Informative)

          They don't have anything (that I know of) that does the same kind of multi-backend thing that MySQL does
          Regular Oracle tables and index-organized tables have completely different physical implementations, and bitmap indexes have a completely different physical implementation from regular indexes. They're all ACID, though.

        • Re: (Score:1, Interesting)

          by Anonymous Coward

          Just figured I'd bring up here that since they've stated they plan to keep SPARC R&D going, maybe one of their big goals is to retain processor independence, while also leveraging an architecture that better coincides with their probable workloads (Sun's biggest feature has always been IO throughput and reliability and with their highly multithreaded chips they would seem to mesh well for the large scale databases that they'll be pushing.)

        • by Ilgaz ( 86384 )

          OK but none of the products gets hit because MySQL exists right? So, is there any reason other than insanity to undermine/conspire/kill MySQL? They act like there is fire in house and Oracle is the mad guy who started it. Did any of these people attempted to contact Oracle a single time relating to the future and independence of MySQL development?

          Guess what will small companies choose if there is image of a chaos/forking rather than a known brand like Oracle when they hear MySQL name? Do you know the evil m

          • Re: (Score:3, Informative)

            OK but none of the products gets hit because MySQL exists right?

            Since they have overlapping niches, probably some of Oracle's products, particularly at the low end, take a hit from MySQL. Since even their free low-end products are designed to be compatible with and provide an upgrade path to their pricier DB offerings while its probably as easy to go from MySQL to PostgreSQL-based EnterpriseDB, DB2, or MS SQL as from MySQL to Oracle, their certainly might be reasons why they'd rather, over the long term, e

  • Refactoring Eh? (Score:2, Insightful)

    by Anonymous Coward
    I do that when I write shitty code too.
  • FORKIN' AYE!!!

    This should be a GOOD thing, and hopefully it will move FAST, be stable, and be not politically hamstrung.

    • Re:YAY!!!! (Score:5, Interesting)

      by Ilgaz ( 86384 ) on Thursday May 14, 2009 @04:45PM (#27956695) Homepage

      If they don't come up with a pure technical reason, a proof for forking the project rather than "big company hate" or conspiracy theories, they are already taking this decision politically.

      If they think Oracle purchased Sun just to kill their project for 7.2 billion dollars in such state of Global economy, they are bordering megalomania.

      • Re: (Score:3, Funny)

        by idontgno ( 624372 )
        See also Amiga Persecution Complex [catb.org].
        • by Ilgaz ( 86384 )

          As a former Amiga user and one of OS/2 Victims, I really know that complex very well. It could be the reason why I think twice before bad mouthing any other company rather than the product/code in question itself.

      • by Nutria ( 679911 )

        If they don't come up with a pure technical reason, a proof for forking the project rather than "big company hate" or conspiracy theories, they are already taking this decision politically.

        Why can't it just be that they have finally admitted that MySQL really sucks at anything but simple queries.

        What they should do is start anew with the PostgreSQL codebase. It already has an Oracle "skin", so why not a MySQL "skin"

      • Its never what you think of the state of today, its what you think it'll be like tomorrow. As a result, no-one cares that Oracle bought MySQL, they care what Oracle will do with it - and a lack of vocal support usually means no interest in it.

        As a result, the fork is a very pragmatic solution, get it forked today, get some impetus and media interest in it, and either Oracle will come out and confirm its continued support; or you'll know where to go to get MySQLv2.

        And Oracle bought Sun for Solaris, I reckon

  • Fo Shizzle (Score:4, Funny)

    by 0100010001010011 ( 652467 ) on Thursday May 14, 2009 @04:29PM (#27956365)

    Myizzle SQL be-izzle lizzleke Drizzle.

  • why? (Score:4, Insightful)

    by Lord Ender ( 156273 ) on Thursday May 14, 2009 @04:34PM (#27956481) Homepage

    For apps that need basic SQL functionality and aren't particularly-high load, I use SQLite. For app that need advanced SQL or high load, I use Postgres. I can't imagine a scenario when I would chose to use MySQL (or MS SQL, for that matter).

    • Re: (Score:3, Informative)

      Existing products - there's some software packages people like to use from the open source world that are tied to MySQL.

      But yeah, if I had any choice, there'd be no instances in which I'd pick MySQL over SQLite or Postgres.

    • Re: (Score:2, Insightful)

      Many of us MySQL users see your Postgres question the same way: why use Postgres? There's 10 users of Postgres, and if I randomly toss both names into a room, I don't have to explain what MySQL is. Hell, half think I said "postfix" and leave the room.

      What's MS SQL? OK, I'm kidding, but it makes me wonder if you've checked MySQL lately. I haven't had a reason to check Postgres, so I maybe just-as-satisfied with MySQL as you are with Postgres.

      MySQL works for many of us. We don't want to switch to a d

      • Re:why? (Score:5, Informative)

        by Lord Ender ( 156273 ) on Thursday May 14, 2009 @05:13PM (#27957147) Homepage

        MySQL works for many of us.

        I didn't ask if it worked. I asked in what scenario it would be a superior option (to the well-informed application architect, of course). The only real reason you gave is that you don't know much about Postgres. That means you're not really qualified to answer the question.

        Does it scale better? Does it have better security? Is it easier to manage in some way? Is there a killer feature its two closest competitors lack? Those might be actual answers to the question. "I don't know much about it" is not an answer.

        It's certainly commonly perceived that Postgres will scale better, and that it has a rather complete featureset. If this is indeed the case, I can't see a reason to select MySQL for a new project. Why limit yourself?

        • Re:why? (Score:5, Informative)

          by Eponymous Coward ( 6097 ) on Thursday May 14, 2009 @05:40PM (#27957691)

          MySQL is better because I know how to use it and it works well enough. If I were to switch to Postgres, then I would have to spend time learning it.

          My manager would rather me move some other feature forward rather than replace database A with database B.

          When we hire somebody new, it is easier to find candidates who already know MySQL. That matters too.

          -ec

          • Re:why? (Score:5, Insightful)

            by Splab ( 574204 ) on Friday May 15, 2009 @12:31AM (#27961683)

            People like you are undermining the industry. You straddle around claiming to be a database developer with x years under the belt, but you are in fact putting your clients data in grave danger and when shit finally hits the fan on your mysql installation you are going to wish you listened to the people who knew better.

            • Comment removed based on user account deletion
            • I think you are being a little harsh.

              Our app is one that has a pre-populated read-only database (that is, we never do updates, only selects). The database has only a single client and has to deal with bursts of activity that peak at 10's of queries per second. The load we put on the database is orders of magnitude away from what MySQL can handle. This what I meant when I said it works well enough. In fact, SQLite would probably even be a better choice.

              I have never claimed to be a database developer. In fact

        • Maybe I misread your post -- you were asking why we don't change from MySQL to Postgres, since MySQL is the default server in most cases.

          You were also converting a question about MySQL into an argument of "Postgres vs MySQL"; I was trying to explain why we don't change to Postgres. See, change-to-Postgres is an important part: there's no obvious benefit that outweighs the cost of changing. The cost of changing is also the cost of changing all of our dependencies to use Postgres.

          So "why don't we change

          • Maybe I misread your post -- you were asking why we don't change from MySQL to Postgres, since MySQL is the default server in most cases.

            You seem to be barely able to read since that's not what he said at all. He said:

            For app that need advanced SQL or high load, I use Postgres. I can't imagine a scenario when I would chose to use MySQL (or MS SQL, for that matter).

            No where in there does it ask why people aren't switching over. He was saying he can't imagine a scenario for why he would choose MySQL over Postgres.

            • Re: (Score:2, Insightful)

              It's an interesting question then; the situations I see are the opposite: MySQL is the compatible solution already functioning, and a user would have to choose to change to Postgres.

              Hey ("barely able to read"), thanks for being childish. It adds humour.

        • facebook uses it (Score:5, Informative)

          by Toreo asesino ( 951231 ) on Thursday May 14, 2009 @05:48PM (#27957875) Journal

          ...I saw in one presentation their chief architect did. They had no complaints about it; apparently it scales brilliantly as long as the db schema is very simple.

          For heavy-weight databases though, I gather it's not so good.

        • Re: (Score:1, Insightful)

          by Anonymous Coward

          I'm going to state something controversial, but for many applications security doesn't belong in the database, just like business logic. I would say this applies to most new web based applications developed today with ORM tools like Hibernate, but as always, there are exceptions.

          MySQL's killer functionality is the ability to plug in different database engines. So, for example, MySQL can be both a transactional database with InnoDB and a column based database with Infobright.

          Both are good, but I would say

        • Re: (Score:1, Informative)

          by Anonymous Coward

          I was actually involved in the decision at my business to switch from Postgresql to MySQL, and documentation ended up being the deciding factor. Now I've been using Postgresql personally and professionally for years, and I love the database, but two days with the documentation for the various clustering / replication sub-projects was enough to make my brain hemmorage. It's like they took legitimate documentation in some language, randomly truncated one sentence every other paragraph, and then ran the whole

        • Re:why? (Score:4, Funny)

          by DiegoBravo ( 324012 ) on Thursday May 14, 2009 @08:15PM (#27959703) Journal

          > I asked in what scenario it would be a superior option (to the well-informed application architect, of course).

          Of course because MySQL's root password comes empty so the Agile developers avoid losing their costly time waiting for the local database nerd configuring the permissions and bothering the team with more passwords to remember....

        • Re: (Score:2, Insightful)

          by Anonymous Coward

          Does it scale better? Actually it does, at least the 5.4 branch, when compared to postgres 8.3 branch (http://dimitrik.free.fr/db_STRESS_MySQL_540_and_others_Apr2009.html).

          Does it have better security? Not really.

          Is it easier to manage in some way? That depends on the usage scenario. Several tools developed outside mysql make the usual cases actually easy to manage.

          Is there a killer feature its two closest competitors lack? Yep, plugable storage engines, documentation, mysql cluster.

          Roundup:
          Until recently,

        • Re: (Score:3, Informative)

          by Cow Jones ( 615566 )

          I asked in what scenario it would be a superior option

          I'm with you on that - in the last 7 years, I've used PostgreSQL exclusively for projects that were under my control. I'm subscribed on the mailing lists, I know about all the misconceptions regarding performance, and I know that MySQL is nowhere near as reliable and professional as PG.

          But since you asked: I'm still running MySQL on most of the servers, and the reason for that (the only reason) is third party support. When you're installing a web-based CMS, or bulletin board, or bug tracker, or gallery, or

          • I wouldn't think of trying to force an app designed for one DB to use another. When I write my own apps, I need to pick something, and I have no strong reason to use one not the other.

        • Does it scale better? Does it have better security? Is it easier to manage in some way?

          Yes.

          PostgreSQL has no serious replication or clustering solution. MySQL does.

          If you need high availability, then you need something other than Postgres.

      • Re: (Score:3, Informative)

        Is sounds like you are saying that because it gets a lot of press causing a lot of people to know the name, then it must be the best database server out there. And it is more compatible and works better because of that? WTF? What the hell do you mean by compatible by the way?

        More people know or knew how to program in Visual Basic than in Java or C or C++. Does that mean it is a better programming language and more compatible? You are going to tell me that what I just wrote doesn't make sense. And you would

      • Re:why? (Score:4, Informative)

        by Crayon Kid ( 700279 ) on Friday May 15, 2009 @04:48AM (#27963207)

        Many of us MySQL users see your Postgres question the same way: why use Postgres?

        Because MyISAM, which is what most MySQL users use, is not fucking ACID compliant.

        Take a look [mysqlperformanceblog.com] at the potential problems. Take a look at recommended use cases: "Tables which contain read-only data, throw-away data, data which can be quickly re-generated." Are you bloody kidding me!?

        I can't believe my eyes when I read questions (or posts) such as the above. Because it betrays your huge ignorance. Every man and his dog has heard of MySQL and is probably using it, true. But it's also true that most of them have no bloody idea of what ACID is or why it's desirable, or that MySQL with its MyISAM tables goes completely happy-go-lucky on the whole concept. These are the same people who probably don't bother using foreign keys, or have never even heard of transactions, or can't think why they'd need them.

        Sure, MySQL offers InnoDB, which is supposed to rectify those issues. But how does it go about it, may I ask? Why, take a looksy [mysql.com]. It's an entire bloody SECTION of the manual, which goes to great lengths to explain all kinds of issues and exceptions to the rules and whatnot. Summary: "It locks rows like this, except if it's a full moon then you have to blink your left eye every five seconds, and if you're doing a particular SELECT you need to stand on one leg, except on Fridays when it's the right leg."

        Now compare with the Postgres manual page describing their ACID implementation [postgresql.org]. It's a couple of pages, keeping things clear and simple, so that anybody can understand them.

        Not to forget that if you want InnoDB you give up full text search capabilities. And you ask why we should use Postgres? Really?

        MySQL has lowered the bar for complexity of use. But in doing so it has facilitated DB access to a whole bunch of people who don't have any idea what they're doing, or don't really care about data integrity. It's fast and it works most of the time so it's alright, yes? Yes, granted, nobody will care much if your personal blog goes tits up because of MySQL. But I expect people will care if a database in which data actually counts for something has problems. And in such cases I expect people will want a real database.

      • by richlv ( 778496 )

        plus all the postgres zealots that come over to any mysql related article and praise pgsql make me vomit on a printed pgsql logo. ok, not really, but could you (the aforementioned zealots) please try to understand that your offense in mysql articles just makes people reluctant to even try pgsql.
        if you feel such a huge need to pitch two opensource databases, go to pgsql threads and claim how bad mysql is there - then at least you don't pollute mysql related discussions with something i would classify offtopi

    • Re: (Score:2, Insightful)

      by TypoNAM ( 695420 )
      This is one major reason why I refuse to use PostgreSQL: VACUUME [postgresql.org] for the fail.

      Why the hell do we have to hand hold PostgreSQL to get it to clean up after its self? MySQL has no problem doing it on its own nor does any other databases that I know of require such an operation. Its also quite lame to run a dedicated daemon to monitor and tell PostgreSQL to clean up its mess. Another thing which was a past problem was the user permissions were just terribly implemented making it a complete joke to use for mu
      • Re: (Score:2, Informative)

        by Anonymous Coward

        Maybe you should have followed your link:

        "Fortunately, The Auto-Vacuum Daemon monitors table activity and performs VACUUMs when necessary. This eliminates the need for administrators to worry about disk space recovery in all but the most unusual cases."

      • You'll be glad to hear about the autovacuum [postgresql.org] built into PostgreSQL versions 8.1+. (Ok, so it's not on by default yet. One configuration switch.)

        I could give you the good reasons for having VACUUM run separately, (Actually, it's often easier to know from outside when your database is going to be busy...), but in general I agree having to run VACUUM was a pain. I'm glad it's no longer needed.

      • by vadim_t ( 324782 )

        Actually, VACUUM has been automatic for a few years now. The dedicated daemon has gone away too and been merged into the server process.

        And sometimes it may make sense to manually scheduling VACUUM. For instance if you never delete from a table there's no need to bother trying to vacuum it. If you have a very high load, it may make sense to defer it until a low load time. It also makes sense to manually run it after making big changes to the database (like restoring a backup for instance).

        But in current rel

        • Re:why? (Score:4, Informative)

          by asdf7890 ( 1518587 ) on Thursday May 14, 2009 @07:59PM (#27959547)

          For instance if you never delete from a table there's no need to bother trying to vacuum it.

          Not quite. Because of the way postgres operates (MVCC) UPDATEs will result in space appearing in table structures too. With an MVCC based DB nothing is updated in-place (actually, in any good DB nothing is updated in-place, but with MVCC this is more obviously implied by any good description of how things work with multiple distinct transactions present). When a row is updated new version is added and the old version is removed when the transaction is complete and no other transactions might refer to the old copy. This has significant advantages for some use cases and loads, and some disadvantages in other

          The wikipedia page (http://en.wikipedia.org/wiki/Multiversion_concurrency_control) isn't a great description though there is a bit more relevant information in http://en.wikipedia.org/wiki/Snapshot_isolation [wikipedia.org].

          I've not used postgres much in anger, so I'm no expert, but personally I thought that being able to manually schedule cleanup was a good idea performance wise.

      • I imagine the intent is for database administrators to issue that command during scheduled maintenance windows. I agree that an "auto vacuum" feature would be preferable for many people. Is "auto vacuum" the major advantage of MySQL over Postgres, then?

        • I just read the Postgres manual page another Slashdotter pointed to, and checked my own Postgres installations in Gentoo and openSuSE. Auto vacuum exists, and is enabled by default.
        • I'm not so sure that MySQL has an auto-vacuum as such. Deleted rows etc will eventually slow down the indexes as they get fragmented, and the space AFAIK is not reused.

          We run ANALYZE TABLES and OPTIMIZE TABLES once a month, and the performance boost right after these operations is very noticeable.

        • I imagine the intent is for database administrators to issue that command during scheduled maintenance windows. I agree that an "auto vacuum" feature would be preferable for many people. Is "auto vacuum" the major advantage of MySQL over Postgres, then?

          Before auto-vacuum, I'd say it was a big advantage. Anything that can cause you to lose all of your data is a big deal, and it used to be that if you didn't vacuum your postgres tables, you'd lose all of your data eventually. MySQL has no such vacuum requirement.

          Nowadays, with auto-vacuum, I'd say that's no longer an advantage. And all of the distros that I've worked with have auto-vacuum enabled by default.

    • Re:why? (Score:4, Informative)

      by bmartin ( 1181965 ) on Thursday May 14, 2009 @06:47PM (#27958763)

      I can't imagine a scenario when I would chose to use MySQL (or MS SQL, for that matter).

      I work for a Fortune 500 company. We use MySQL with J2EE and Hibernate in a production environment. Postgres would be our fall-back option if MySQL ever stopped doing the trick for us, but it scales well to thousands of users.

      MySQL can easily be configured for use as a production-quality database. We also use Oracle and DB2 on an i5 for certain purposes, but our biggest app (in terms of company scope and $$) employs MySQL in the back-end.

      That's why :-P

      • OK, so MySQL is more easily configured than Postgres? I must say the DBs I've set up have done fine with default configurations, both Postgres and MySQL. But I'll take your word for it that configuration is easier for your apps, which I assume are higher load than the defaults of either will handle gracefully. That sounds like a legit reason.

    • Say you need clustering or replication. Then, you would need MySQL because Postgres does not have a serious solution for you.

      Slony-I is a dreadful hack that misuses triggers. It's easy to break, difficult to administer, and doesn't scale past a few nodes.

      There is no postgres clustering solution that can add a node to the cluster without blocking all reads and writes as the added node syncs up. Sorry, that is not a real solution.

      Postgres has definitely realized their error in forcing replication and clust

  • Heh (Score:1, Insightful)

    by Anonymous Coward

    An Open Database Alliance where the only database allowed is MySQL? Kinda reminds me of the World Series, where the only teams are from the USA.

  • by Anonymous Coward

    Though he contributed a lot to MySQL, he is the one who benefited most from MySQL when it was sold to Sun. So, we as a community contributed to MySQL, he took all the contributions, packaged it nicely and sold to Sun for 1 billion USD. Now that his contract with Sun is over, he is there again asking community to contribute more but not for the original MySQL because he does't own it. He wants all of you to contribute for a clone that he is going to own so that he can make more money in future.

  • Who? (Score:5, Insightful)

    by fm6 ( 162816 ) on Thursday May 14, 2009 @04:44PM (#27956675) Homepage Journal

    HEADLINE: MySQL Creates Open Database Alliance, Plans Refactoring

    MySQL the database application? It created a new alliance? It plans to refactor itself? Astonishing, if true.

    MySQL the software company? Uh, not, because Monty no longer has any connection with them.

    You mean Monty did these things. Not "MySQL". His identification with MySQL is pretty strong, but I don't think they'll merge any time soon!

  • I'm confused (Score:4, Interesting)

    by Stone316 ( 629009 ) on Thursday May 14, 2009 @05:02PM (#27956975) Journal

    I'll admit, I haven't followed MySQL that much but i'm confused as to the state its in now. With the original founders going off and doing related stuff it seems pretty fragmented.

    Can someone piece it all together?

  • by hey ( 83763 ) on Thursday May 14, 2009 @05:07PM (#27957055) Journal

    suggested name change.

  • MySQL AB ver. 2? (Score:5, Insightful)

    by Stan Vassilev ( 939229 ) on Thursday May 14, 2009 @05:30PM (#27957487)
    It was during MySQL AB's time that MySQL began a stange play with the community by first dropping official community binary builds, and then severely delaying source code releases as well (while supplying commercial clients with more stable and up to date releases).

    It was again during MySQL AB's time when the announcement came that MySQL's source code base will start to "close down", by releasing many new features only commercially, and with no open source code. When Sun bought MySQL AB, they reversed those policies and stood behind MySQL being open, without exceptions.

    Now Mr. Monty Widenius has taken the money Sun paid for MySQL AB, and used it to open a new company and an "Open" alliance which is "designed to become the industry hub for the MySQL open source database, including MySQL and derivative code, binaries, training, support, and other".

    If even Mr. Widenius has noble intentions regarding MySQL, his past in MySQL AB and his current interaction with Sun/Oracle seem to leave another impression.
    • Why put up with all the hassle? Just use PostgreSQL, and be good. :)
      Yes, you can do replication (the master/slave thing, aka S/M ^^) with it.

  • by cowdung ( 702933 ) on Thursday May 14, 2009 @06:12PM (#27958279)

    A lesson in Open Source acquisitions:

    1. Monty starts db called MySQL, trademarks and has copyright
    2. Monty sells trademarks and copyrights to Sun (presumably for a ton of cash)
    3. Monty leaves Sun
    4. Monty forks MySQL calls it MariaDB

    So in the end.

    Sun has:
    1. A trademark
    2. Rights to the code
    3. Right to sell MySQl under any license

    Monty has:
    1. GPL'd code he does not own
    2. Credibility as the guy who knows about this
    3. The ability to continue selling support services

    So in OSS when you buy a product you don't really get too much do you? (At least if you can't hang onto the developers)

    • by zuperduperman ( 1206922 ) on Thursday May 14, 2009 @07:56PM (#27959509)

      > So in OSS when you buy a product you don't really get too much do you?

      I think they got a lot from it: Monty is completely hamstrung because he doesn't own a line of the code in his new "Open" database. Unless he rewrites from scratch he is stuck with GPL even if he wants to give his code to his own wife. And that also means that no serious commercial company can use it because even the drivers are GPL (*not* LGPL) which means as soon as you touch it even to open a connection your own product turns to GPL (unless you buy a license from Oracle).

      IMHO, the first thing that needs to happen (and which should have happened years ago) is that the MySQL GPL drivers need to be clean-room rewritten so at least you can link non-GPL code with it. Until then I've got no interest in it and it loses to PostgreSQL before I even get to thinking about a technical comparison (and please note: I've got nothing against GPL in general, I just don't want it forced inside my own processes by my database).

  • by StikyPad ( 445176 ) on Thursday May 14, 2009 @06:19PM (#27958389) Homepage

    *Opens the envelope*

    What do you call a game show host in a goatse pose?

  • This is hardly an "alliance" if it's centred around MySQL. If the ODA had been formed from teams from many of the popular DBMS's, then yes I would call it an alliance.

"Protozoa are small, and bacteria are small, but viruses are smaller than the both put together."

Working...