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

 



Forgot your password?
typodupeerror
×
Programming IT Technology

Open Source Database Underdogs 154

implex writes "Interactive Week had an article called "Data Underdogs" which they compare offerings of present Open Source Databases with present commercial offerings. In one part they mention ...On the other hand, MySQL developers now have a much-needed transaction management system: NuSphere last month made its Gemini transaction manager for MySQL available as open source code on mySQL.org, a site that the company recently launched. Complicating matters, though, is NuSphere's blood feud with MySQL AB, a Swedish company that runs a competing open source development site for MySQL code at www.mysql.com. No mention of the fact that MySQL AB actually created the product was interesting."
This discussion has been archived. No new comments can be posted.

Open Source Database Underdogs

Comments Filter:
  • Re:Versus OpSys (Score:2, Interesting)

    by denshi ( 173594 ) <toddg@math.utexas.edu> on Tuesday August 14, 2001 @02:04PM (#2113161) Homepage Journal
    "They laughed at Einstein. They laughed at Newton. But they also laughed at Bozo the clown."

    Take this over to comp.databases. There you will find a small, but extremely vocal, crowd of ODM developers with a habit of completely failing to learn relational theory. That, I suppose, more than anything else is the worst -- they dub their products 'post-relational', without ever learning what 'relational' is.

    More importantly, you must learn the distinction between data models and programming languages. See my previous post for more details.

  • by standards ( 461431 ) on Tuesday August 14, 2001 @08:53AM (#2114475)
    Instead of focusing in on the available solutions, the article simply spits out the idea that MySQL and Postgres are weak pretenders.

    The FACT is that these databases are excellent solutions to a large number for MOST database problems. Sure, like all DBMSs, they can always use more features. But I don't want my DBMS to turn into an uncontrolled monster like Oracle.

    For 99% of the applications out there, Postgres and mySQL fits the bill. If you're doing large scale distributed payroll using SAP, then I suggest you go with a big name...

    But if you're an average-sized business, Postgres is a full-featured solution today. It is an inexpensive, fully-capable solution.

    If you're into writing Oracle PL/SQL, a proprietary procedural extention to SQL, go with Oracle. (Note: PL/SQL doesn't work with Sybase or DB2 or anything else.) If you're into TransactSQL, another proprietary SQL extension, go with Sybase. Once you get into TransactSQL, you'll NEVER migrate out without expense. In fact, my shop, an Oracle shop, doesn't PERMIT developers to use the PL/SQL ewxtensions. We learned our lesson after migrating from proprietary MS-SQL-Server extensions to Oracle!

    And if you need a big company to support your 20,000 person payroll, go with IBM's DB2. Again, another fine DBMS.

    But for the average shop? Save your money and go with PostgreSQL.
  • by Jason Earl ( 1894 ) on Tuesday August 14, 2001 @12:08PM (#2116460) Homepage Journal

    One of the things that I like best about PostgreSQL is the fact that the developers are brutally honest about the software. The core PostgreSQL developers have always been quite frank about which parts of PostgreSQL were ready for production, and which parts were kludges, or were largely untested. The problem with commercial databases, even good ones like Oracle, is that the people who know where the rough edges are aren't talking about them. That sort of honesty goes a long way towards building my trust.

    PostgreSQL has an amazing featureset, especially considering its price. I think that fairly soon Oracle is going to wake up to the fact that the database is becoming a commodity market, and quite frankly, they aren't likely to be competively priced.

  • by Kraft ( 253059 ) on Tuesday August 14, 2001 @09:17AM (#2124838) Homepage

    But mirroring the success of Apache and Linux will be no small feat for the three most popular open source databases - InterBase, MySQL and PostgreSQL - which combined represent less than 3 percent of the market, according to even the most optimistic estimates of the suppliers themselves.

    Did this number strike anyone else as too low? This is the first time I have seen any percentages on OS DBs. Alright, 3%, but of what? Does this mean that less than 3% of all bytes stored in any database are stored in an OS DB? That may be, but I cannot believe that less than 3% of all databases running are OS.

    The thing is, when I started studying computer science, we only ever worked on mSQL boxes. My first job used Postgres and the second used mySQL. Anything I work on myself is mySQL. Granted these jobs have all been webrelated, but when you think about how many ISPs offer mySQL/Postgres preinstalled (not to mention linux distributions, if that counts), 3% seems rediculous.

    Well I suppose MS Access runs on one or two computers out there... that might raise the non-OS score.
  • by Anonymous Coward on Tuesday August 14, 2001 @09:15AM (#2125105)
    Take a look at this [ibm.com] if you want to see php and MySQL working together. It shows you how to use two open source, cross-platform tools for creating a dynamic Web site.
  • DB2 v PostgreSQL (Score:3, Interesting)

    by /dev/zero ( 116295 ) on Tuesday August 14, 2001 @12:39PM (#2126631) Homepage

    I've moved a major (~8GB) database from DB2 to PostgreSQL for a client. It runs faster and is easier to feed and administer now. I'm in the process of moving a similar-sized database and app from MS SQL Server to PostgreSQL for the same reasons (plus the openness of PostgreSQL and Linux).

    I really like DB2, it's very powerful, robust, and scalable. But it requires a fair amount of admin expertise and time. Not so much as Oracle, but much more than PostgreSQL.

    What, frankly, suprised the heck out of me was the fact that nearly all of my queries (this is an audit system, OLAP, not OLTP) ran between two and four times faster under PostgreSQL. That adds up pretty quickly!

    As far as the application development support infrastructures, I'm not really sure what is meant by that. The current implementation of stored procedures in PostgreSQL falls short of what DB2 provides, I'll grant. But support for C, Java, Perl, PHP, Python is all there. It's a pretty high-speed/low-drag setup, IMHO.

    The set of problems for which PostgreSQL is the best solution is expanding pretty rapidly. I won't pretend that it's the be-all RDBMS, I don't think such a thing exits. I would say that it's worth a serious look for many situations.

    Gordon.

  • Re:InnoDB (Score:3, Interesting)

    by tzanger ( 1575 ) on Tuesday August 14, 2001 @12:17PM (#2130810) Homepage

    It's a pretty tall-order, but it lives up to it. Our internal benchmarking tests for our application purposes show it to be about 7x faster than an identical PostgreSQL 7.1.2 solution. I've seen reports on the mailing lists that it can be up to 18x faster. You also get the simplicity and maturity of MySQL. The InnoDB benchmark page has their own benchmarks, which pretty much mirror what we've seen internally.

    Just a quick look at the benchmarks link tells me that they have fsync turned on on Postgres. What exactly is fsync? Every time Postgres touches the disk, it sync()s. Slow? Hell yeah. But you won't lose data in the cache. It's turned on by default.

    I realize that Postgres isn't the fastest in the world, but it's not 7x slower on 100k inserts. That's just bad benchmarking. Deceitful even.

    If fsync is not on, I apologize. However the link mentions no performance tuning other than buffer pools and log buffers. If Postgres is defeated by 7x (18x?!) in a fair test, I'll concede. However this looks like the MySQL testing benchmarks on mysql.org; bullshit, plain and simple.

  • Re:InnoDB (Score:3, Interesting)

    by Hrunting ( 2191 ) on Tuesday August 14, 2001 @09:19AM (#2132281) Homepage
    One is tied up in this contractual mess, but the other, InnoDB has no such issues, and may even be faster for many purposes.

    That might be the understatement of the year. InnoDB touts itself as the "fastest disk-based database" currently on the market. It's a pretty tall-order, but it lives up to it. Our internal benchmarking tests for our application purposes show it to be about 7x faster than an identical PostgreSQL 7.1.2 solution. I've seen reports on the mailing lists that it can be up to 18x faster. You also get the simplicity and maturity of MySQL. The InnoDB benchmark [innodb.com] page has their own benchmarks, which pretty much mirror what we've seen internally.

    Of course, MySQL has other drawbacks, namely that it doesn't support triggers or table inheritance or some of the more complex nuances of standard SQL, but the 95% of stuff it does have is very fast, and the other 5% can be handled in code. MySQL isn't popular because it's open-source, though. It's popular because it's good, free, and most importantly, extremely easy and intuitive to use.
  • Focus on profits (Score:2, Interesting)

    by telbij ( 465356 ) on Tuesday August 14, 2001 @12:04PM (#2135976)
    The article seems to claim OSS DBMSs aren't as succesful as commercial solutions. Unfortunately, it follows the typical capitalist ideal that something has to make money to be succesful.

    OSS flies in the face of American ideologies, and this is just another example of big corporations not seeing the value.

    Certainly Oracle is much more robust than MySQL right now, but I think the OSS ideology of trying to make the best product will eventually beat out the ideology of trying to squeeze as much money as possible. Technology will prove to be the end of traditional free-market theory, I think, because there is no longer a solid commodity with value. Things can be copied, so value has to be placed on the creators, not the product.

  • Re:Versus OpSys (Score:3, Interesting)

    by micromoog ( 206608 ) on Tuesday August 14, 2001 @09:10AM (#2139359)
    I'd like to see an object data model (ODM) open source database come into the scene. Now that would cause a ruckus, challenging both the bottom line and validity of the relational model!

    Yeah, all the companies would immediately say "Let's base the future of our business on new and untested technology! Better yet, let's buy it from an unknown vendor!"

    Please. The reason relational databases are still very much the dominant technology is that they work, they work well, and they've been working well for decades.

  • Versus OpSys (Score:5, Interesting)

    by Root Down ( 208740 ) on Tuesday August 14, 2001 @08:57AM (#2141590) Homepage
    "Databases are dramatically more complicated than any Web server or operating system technology."

    The above is a quote from senior marketing director Bob Shimp, from the article. I will give him the Web Server - which is not to say that it is not complex, but likely not as complex as a robust relational database. I cannot do the same for the OpSys. There is a dramatic difference in the levels of complexity between a monolithic single-user non-multitasking operating system (such as DOS) and a multiprocessing distributed parallel asymmetric (etc etc) OpSys. The quote is not grounded in any sort of evidence, and I have serious doubts as to whether the 'marketing director' would have ever encountered a kernel that did not come from a bag marked 'Orville Redenbocker'. It is simply misguided and misinformed, and the general intent seems to be in undermining confidence in Open Source DBs. (... furthering the myth that open source is 'unreliable'.) Threatened? He likely should be.

    I'd like to see an object data model (ODM) open source database come into the scene. Now that would cause a ruckus, challenging both the bottom line and validity of the relational model!
  • by andres32a ( 448314 ) on Tuesday August 14, 2001 @08:45AM (#2142378) Homepage
    From Oracle: "Databases are dramatically more complicated than any Web server or operating system technology."

    Somehow, Oracle is saying that the Open Source comunity is not 'capable' of producing a dominant database...

  • by Jason Earl ( 1894 ) on Tuesday August 14, 2001 @01:23PM (#2142760) Homepage Journal

    My old boss had a saying:

    You only need an aircraft carrier if you are landing fighter planes at sea. If you are just going fishing, a rowboat is fine.

    Oracle is nice, but it is completely overkill for most projects. PostgreSQL has many of the same features, including all of the referential integrity features that make Oracle so nice to develop for, and it comes with a fishing boat price.

  • DB Maturity (Score:2, Interesting)

    by it's a culture thing ( 472974 ) on Tuesday August 14, 2001 @08:48AM (#2143896)
    I'd agree with the article that the Open Source offerings currently have many limitations when compared to the commercial ones, but this is more due to their lack of maturity than anything else.

    We should remember that oracle & db2 have had over 20 years to get to where they are now. Have a look at this article [joelonsoftware.com] to see what I mean about maturity of products.

    However the open source community has several advantages and disadvantages over the commercial players. 1. we dont have all the legacy bloatware which makes the commercial offerings so large 2. we're able to design using current best practice, not something which was dreamed up 20 years ago and no longer applies (no I'm not talking about the relational model but things like distributed storage, sans, nas etc).

    However, we also don't have the guarentee that the original developers will still be here in 10 years time, working on the software and adapting it for new needs. Admit it, how many people are prepared to dedicate their careers to a single piece of software? not many. so can you understand why commercial companies are less than eager to use open source for critical/production systems?
  • by MilleniumUcita ( 449338 ) on Tuesday August 14, 2001 @09:30AM (#2144477)
    Does that imply a fully fledged Java VM that executes stored procedures in Java?

    Is something like PLSQL a mandatory part of something we call a relational database?

    Oracle has a maximum view on relational databases, because it is their instrument to dominate adjacent markets; just as the OS is for M$.

    PLSQL is something created for the benefit of Oracle, not for the benefit of the customer, who gets stuck in a proprietary language and horrible design consequences.
  • fsync (Score:2, Interesting)

    by denshi ( 173594 ) <toddg@math.utexas.edu> on Tuesday August 14, 2001 @09:58PM (#2170649) Homepage Journal
    You probably already know this, but fsync isn't as relevant to perf as it was on Postgres7.0 and lower. 7.1 uses write-ahead-logging (same as Oracle) and writes that info into tables when it's convenient. 7.0 and lower had to write into the tables & indexes on each fsync, which means moving around a hell of a lot more data. That's really why 7.1 blows the doors off MySQL in recent tests. That's also why InnoDB is so fast -- it has WAL as well. As an aside, InnoDB has an 8k row limit...sound familiar? -It should, Postgres had that last year.

    As for data lossage, well, there's a lot to discuss about on-disc caches and power supplies, SCSI vs. IDE. The best guarantee against data loss is still a big-ass UPS and some really fscking attentive operators.

Any circuit design must contain at least one part which is obsolete, two parts which are unobtainable, and three parts which are still under development.

Working...