Re: What is the practical limitation of no multi-threading?

From: Jason Earl <jason(dot)earl(at)simplot(dot)com>
To: Brian Beuning <bbeuning(at)mindspring(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: What is the practical limitation of no multi-threading?
Date: 2001-12-10 17:52:41
Message-ID: 873d2jc68m.fsf@npa01zz001.simplot.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


Every connection gets its own backend. Concurrent connections work
fine, and transactions can progress concurrently as long as the rows
that you want to update are unique.

Basically, the fact that PostgreSQL is not multi-threaded is not a big
deal (unless you want to run it on Windows or some other operating
system with a massively expensive fork()).

Jason

Brian Beuning <bbeuning(at)mindspring(dot)com> writes:

> OK I admit it, I am a postgresql newbie. The developers FAQ says
> the postgresql "backend" is not multi-threaded. How serious is
> this?
>
> If this means only one transaction at a time can make progress or
> the entire DBMS server is blocked on every disk I/O then that is
> very bad.
>
> But if every connection gets its own backend, and the backends can
> run in parallel then not being multithreaded is no big deal.
>
> Here is the bottom line. Our app runs on multiple machines (we call
> them sinks) hitting one DBMS server for data. We expect the sinks
> to be able to all make progress at the same time. Each sink fetchs
> some data, goes compute bound for .2 to .4 seconds, and then sends a
> bunch of INSERT/UPDATE/DELETE to the DBMS. Will our sinks be able
> to run concurrently?
>
> Thanks,
> Brian Beuning
>
>
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Doug McNaught 2001-12-10 17:52:53 Re: Remote Access to pgsql DB ???
Previous Message Jason Earl 2001-12-10 17:48:31 Re: Handling NULL dates in "copy from" statement