vote up 4 vote down star
1

In a web app that support more than 5000 users, postgres is becoming the bottle neck.

It takes more than 1 minute to add a new user.(even after optimizations and on Win 2k3)

So, as a design issue, which other DB's might be better?

flag

10 Answers

vote up 0 vote down

If you have many reads over writes, you may want to try MySQL assuming that the problem is with Postgres, but your problem is a write problem.

Still, you may want to look into your database design, and possibly consider sharding. For a really large database you may still have to look at the above 2 issues regardless.

You may also want to look at non-RDBMS database servers or document oriented like Mensia and CouchDB depending on the task at hand. No single tool will manage all tasks, so choose wisely.

Just out of curiosity, do you have any stored procedures that may be causing this delay?

link|flag
vote up 0 vote down

We need more details: What version you are using? What is the memory usage of the server? Are you vacuuming the database? Your performance problems might be un-related to PostgreSQL.

link|flag
vote up 5 vote down

Please change the OS under which you run Postgres - the Windows port, though immensely useful for expanding the user base, is still not on a par with the (much older and more mature) Un*x ports (and especially the Linux one).

link|flag
vote up 3 vote down

Let me introduce you to the simplest, most practical way to scale almost any database server if the database design is truly optimal: just double your ram for an instantaneous boost in performance. It's like magic.

link|flag
vote up 0 vote down

If you do want to switch away from PostgreSQL, Sybase SQL Anywhere is number 5 in terms of price/performance on the TPC-C benchmark list. It's also the lowest price option (by far) on the top 10 list, and is the only non-Microsoft and non-Oracle entry.

It can easily scale to thousands of users and terabytes of data.

Full disclosure: I work on the SQL Anywhere development team.

link|flag
Graeme, I totally appreciate your expertise, but you might want to disclose bias.. Question: are SQL Anywhere and Sybase IQ related? – SquareCog Oct 15 '08 at 17:01
Good point. I added to my answer. Yes, Sybase IQ is basically the SQL Anywhere query execution engine with a different store (i.e. the way they store data is completely different from SQL Anywhere). – Graeme Perrow Oct 15 '08 at 17:45
vote up 27 vote down

Most likely, it's not PostgreSQL, it's your design. Changing shoes most likely will not make you a better dancer.

Do you know what is causing slowness? Is it contention, time to update indexes, seek times? Are all 5000 users trying to write to the user table at the same exact time as you are trying to insert 5001st user? That, I can believe can cause a problem. You might have to go with something tuned to handling extreme concurrency, like Oracle.

MySQL (I am told) can be optimized to do faster reads than PostgreSQL, but both are pretty ridiculously fast in terms of # transactions/sec they support, and it doesn't sound like that's your problem.


P.S. We were having a little discussion in the comments to a different answer -- do note that some of the biggest, storage-wise, databases in the world are implemented using Postgres (though they tend to tweak the internals of the engine). Postgres scales for data size extremely well, for concurrency better than most, and is very flexible in terms of what you can do with it.

I wish there was a better answer for you, 30 years after the technology was invented, we should be able to make users have less detailed knowledge of the system in order to have it run smoothly. But alas, extensive thinking and tweaking is required for all products I am aware of. I wonder if the creators of StackOverflow could share how they handled db concurrency and scalability? They are using SQLServer, I know that much.


P.P.S. So as chance would have it I slammed head-first into a concurrency problem in Oracle yesterday. I am not totally sure I have it right, not being a DBA, but what the guys explained was something like this: We had a large number of processes connecting to the DB and examining the system dictionary, which apparently forces a short lock on it, despite the fact that it's just a read. Parsing queries does the same thing.. so we had (on a multi-tera system with 1000s of objects) a lot of forced wait times because processes were locking each other out of the system. Our system dictionary was also excessively big because it contains a separate copy of all the information for each partition, of which there can be thousands per table. This is not really related to PostgreSQL, but the takeaway is -- in addition to checking your design, make sure your queries are using bind variables and getting reused, and pressure is minimal on shared resources.

link|flag
I guess concurrency is not an issue, could be the tables are not normalized fully and the queries are not fully tuned. I will also look at tuning the db. Thanks for your post. – vpsingh88 Oct 16 '08 at 3:06
@vpsingh88: Note that table normalization != better performance (at least not automatically). There are plenty of cases where a side effect of normalization is a better design that leads to better performance, but too much normalization or poor normalization can hurt performance, too. – Michael Haren Jun 25 at 12:00
vote up 4 vote down

Ithink your best choice is still PostgresSQL. Spend the time to make sure you have properly tuned your application. After your confident you have reached the limits of what can be done with tuning, start cacheing everything you can. After that, start think about moving to an asynchronous master slave setup...Also are you running OLAP type functionality on the same database your doing OLTP on?

link|flag
vote up 1 vote down

I'd suggest looking here for information on PostgreSQL's performance: http://enfranchisedmind.com/blog/2006/11/04/postgres-for-the-win

What version of PG are you running? As the releases have progressed, performance has improved greatly.

link|flag
we are running 8.3.3, yep have seen performance improvements in newer releases. – vpsingh88 Oct 16 '08 at 2:59
vote up 2 vote down

PostgreSQL scales better than most, if you are going to stay with a relational db, Oracle would be it. ODBMS scale better but they have their own issues, as in that it is closer to programming to set one up.
Yahoo uses PostgreSQL, that should tell you something about is scalability.

link|flag
What ODBMS solutions do you like? – DanielHonig Oct 15 '08 at 16:16
Yahoo also uses a ton of MySQL, and their Postgres (that I know of) is for data warehousing, which is a different beast (emphasis on processing power and data scale vs concurrency) – SquareCog Oct 15 '08 at 16:21
I only know ODBMS from a theoretical standpoint. Objectivity/DB has an excellent reputation, the largest database in America (Standford U.) uses it. – WolfmanDragon Oct 15 '08 at 16:23
Yahoo's main db is PostgreSQL. – WolfmanDragon Oct 15 '08 at 16:24
News to me.. got a cite, or do you know cause you work there? I wasn't aware they even have a "main" db. – SquareCog Oct 15 '08 at 16:26
show 7 more comments
vote up 1 vote down

First, I would make sure the optimizations are, indeed, useful. For example, if you have many indexes, sometimes adding or modifying a record can take a long time. I know there are several big projects running over PostgreSQL, so take a look at this issue.

link|flag

Your Answer

Get an OpenID
or

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