Currently, MySQL community edition server 5.5.16 is under GPL. This means that it might be used in projects that are open source projects too. Our project budget is very tight and we need to find a solution to use MySQL free edition in commercial project. I have several questions:

1) What earlier MySQL version would be solid and bug-free enough to use in commercial projects?

2) About using current MySQL community edition server 5.5.16 with GPL: if a project software architecture is designed with support for plugging many DBMSs then is it legal to have a project software under non-GPL license? I mean, suppose the software is designed with multiple DBMS support and the software is put under commercial license. If the client chooses to use MySQL GPL version does he violate GPL license?

3) I heard some negative replies about PostgreSQL being buggy and non-optimized for modifying and storing large sets of data. The only reason it's still used in some small commercial projects is because it's free. What are your opinions on that?

UPDATE: also, we are planning to use several servers, so master-slave replication is also needed.

UPDATE2: I heard about one case: there was used ~1GB PostgreSQL DB. The database was heavily used with updates by modifying almost all data. The problem was the database was constantly growing about ten times every 2.5 month. They have used PostgreSQL 8.3 + CentOS. Also, AUTOVACUUM was used. After dumping database, destroying the old one, recreating database and importing they were able to reduce its size ~10 times. Existing posts (here and here) show that this problem is relative even in latest PostgreSQL 9 version. I wouldn't call it a normal behavior and such size growth is not acceptable in our case.

UPDATE3: thank you all for the answers. All answers are relative and useful for the question.

link|improve this question

2  
Coming from MySQL fan - don't trust everything you read, PostgreSQL is an excellent piece of software and if used properly it can provide excellent performance. There will always be zealots rooting for <insert software>, but the fact is that Postgres is made by devs and used by devs, it's changed A LOT during the years and it's really good. – N.B. Oct 19 '11 at 8:53
UPDATE2 looks like a misconfiguration of auto_vacuum and/or misunderstanding of MVCC. Not a bug. A 1GB database is so small, every byte will almost double the size of the database. MVCC always takes extra space, that's normal and will never change. MVCC has it's pro's and it's con's. – Frank Heikens Oct 19 '11 at 17:46
8.3 is ancient, and if you didn't crank up a few parameters for aggressive usage it would bloat out and die a quick death. OTOH, properly adminned it'll run years with nary a burp. I know, I run 8.3 dbs in production, 300G to 2+TB dbs, and with some very large changes to free space map settings it's fine. With 8.4 the free space map became maintenance free and making vacuum more aggresive is the only tweak usually needed. – Scott Marlowe Oct 20 '11 at 8:46
feedback

5 Answers

up vote 1 down vote accepted

the other posters have mentioned that basically linking to mysql means you've licensed the project GPL or some other OS license Oracle / MySQL makes an exception for, or it's commercial and you owe them money. Anyway...

OK, PostgreSQL stores its data in a data store that supports MVCC, multi-version concurrency control. This means on a simple level that each transaction gets a snapshot of the database that is coherent from when that transaction starts until it commits or rolls back. This means that at any given time a single tuple can have more than one live version in the database. Because of the way MVCC is implemented in pgsql, those two versions exist at the same time in the data store. Eventually all but the newest ones will be older than the oldest running transaction, and can be recovered and reused by the db. The process that reclaims these old dead tuples is called vacuuming.

In 8.3 the old dead blocks were kept track of with a shared memory segment called the free space map. If either the vacuums aren't aggressive enough OR if you run out of space in the free space map then the database could make dead tuples faster than it could recover them (vacuum) or remember them (free space map).

With 8.4 the free space map becomes maintenance free to the user because it's stored on the hard drive in .fsm files. however the issue with vacuum still exists. autovacuum is tuned to be not too aggressive so as not to kill something like a laptop or a small server when installed. On bigger machines with lots of IO capability like a server with 16 SSDs in a RAID-10 array, you can crank up the aggressiveness of autovacuum and it can keep up with some pretty crazy tps rates. You can get sustained 1,000 to 3,000 transactions per second over long periods on a server with an aggressive enough autovacuum and a fast hardware RAID controller with lots of disks. TPS numbers approaching 10,000 are possible with more expensive and larger servers. All while servicing 100s of connections.

tl;dr: 8.3 is old, and def had some issues. 8.4 and up have better free space recovery but still need aggressive autovac to keep up with a heavy load.

link|improve this answer
Thank you very much for such a detailed answer. So, from your post I understood, if we would use the newest PostgreSQL versions like 9.1.1 then only the server characteristics limits the aggressiveness of autovacuum. IMHO, a server with 16 SSDs in a RAID-10 array is very powerful and also, very expensive. Currently, we will need to parse and store 8GB xml file in DB, performing almost full DB update every night. What would be your insights and thought on that, what should be the minimal server characteristics for the task in order to achieve sufficient autovacuum aggressiveness? – Centurion Oct 21 '11 at 6:47
Are you adding 8G a night, or replacing everything with 8Gig? if you're replacing everything, then truncate the table first, as this will zero it out and there will be no dead space. Then analyze it after the import. No need for vacuuming magic there. – Scott Marlowe Oct 22 '11 at 18:35
Note that you can get very good performance with something as simple as a HW RAID controller with battery backed cache and a small set of 15K SAS drives (2 to 8 drives are not atypical). You can get a 16 core AMD Magny Cours machine with 32G RAM and 4 15K SAS drives and a HW RAID controller for well under $5k and that can easily handle 3k or more TPS without breaking a sweat. – Scott Marlowe Oct 23 '11 at 4:28
feedback

3) I heard many negative replies about PostgreSQL being buggy and non-optimized for modifying and storing large sets of data. The only reason it's still used in some small commercial projects is because it's free. What are your opinions on that?

This is FUD. PostgreSQL is a fully featured, high performance RDBMS used in several large scale deployments.

link|improve this answer
Please see the update. – Centurion Oct 19 '11 at 10:17
feedback

2) About using current MySQL community edition server 5.5.16 with GPL: if a project software architecture is designed with support for plugging many DBMSs then is it legal to have a project software under non-GPL license? I mean, suppose the software is designed with multiple DBMS support and the software is put under commercial license. If the client chooses to use MySQL GPL version does he violate GPL license?

As soon as you link with a GPL-licensed library, the entire body of code is licensed under the GPL. Oracle makes an exception for other free licenses only.

link|improve this answer
I have read GPL license description, but was unable to find a clear statement about forcing custom software to be GPL if it's linked with GPL software (for example MySQL). – Centurion Nov 9 '11 at 21:28
There's a statement in GPL 2 about linking and IMHO it's not forcing custom system to be GPL too if it's independent and not derived from GPL software. Here's citation: "These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works." Source: (gnu.org/licenses/old-licenses/gpl-2.0.html) – Centurion Nov 9 '11 at 21:31
So, having a custom system with multiple DB support, and having custom API drivers for communicating with DB, then using MySQL through those drivers should not be an object for licensing custom software with GPL. – Centurion Nov 9 '11 at 21:33
feedback

3) I heard many negative replies about PostgreSQL being buggy and non-optimized for modifying and storing large sets of data. The only reason it's still used in some small commercial projects is because it's free. What are your opinions on that?

ROFL

You must be joking! Pure FUD and nothing else.

We have a couple of TB of data in a PostgreSQL database and it's still growing about 200GB per month. No bugs, no problems, just great performance. Also at 500 concurrent users, no problems at all. Check the mailing list to count the bugs and see how fast these are solved. Don't be surprised when there is a fix within hours. MySQL can learn from that.

http://archives.postgresql.org/pgsql-bugs/

link|improve this answer
I aggree. 3) is complete nonsense. If one of those DBMS is more buggy, then most probably MySQL because of their development strategy release "good enough" versions – a_horse_with_no_name Oct 19 '11 at 9:23
Please see the update. – Centurion Oct 19 '11 at 10:16
I've found two bugs in pgsql in the last three years and both were patched within 48 hours. Heck, it took me longer to apply the patch in production than it took to get it. Compare that to months between reporting time and released fixes for MySQL. Heck, there was a bug with zlib that came and went and came and went in a production release that meant you couldn't run MySQL and apache on the same machine for years. Took months to get rid of each time. – Scott Marlowe Oct 20 '11 at 8:49
P.s. I think MySQL has gotten a lot better in terms of overall code quality, but they've never been very responsive to bug reports. – Scott Marlowe Oct 20 '11 at 8:51
feedback

I had the same problem. Earlier i used mysql in commercial projects. But after oracle took over and license policy changes, i looked for other options including SQL-Express, DB2-Express, SQL-lite, PostgreSql

I wont go into the comparisons, because there is lot of information around. But PostgreSql is by far the best with respect to

a) handling large datasets

b) SQL standards

c) Inline documentation

d) Database usage statistics

infact, i could start a project overnight, without any overheads regarding changes in SQL commands OR documentation.

However, since i am using dotnet on windows, Npgsql is the only trusted connector around which scares us.

But so far developing with PostgreSql 9.0 has been absolutely a cake.

link|improve this answer
Thanks but what about PostreSQL DB size increment? I have updated my answer with UPDATE2. Have you experienced that too? – Centurion Oct 19 '11 at 10:37
We migrated by importing a CSV file generated from Mysql. I think in such a situation, where a DB grows 10 times, a daily DB monitoring schema is a must. With such traffic, i am not sure how things are going unnoticed. In our case, we monitor DB traffic 3 times/day. Infact a report about DB activity is generated and mailed to the Admin once everyday. The report has figures like diskusage PeakCpuTime PeakRamused etc. – arvind Oct 19 '11 at 11:16
I assume you didn't experienced odd large growth of database size? – Centurion Oct 19 '11 at 12:37
We are recent users, so we are on a close watch and every stats including pg_stat_database and pg_size_pretty() are monitored – arvind Oct 19 '11 at 13:23
here is a list of references about major users of PostgreSql quora.com/Who-uses-PostgreSQL – arvind Oct 24 '11 at 8:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.