Re: Delay INSERT

From: Dawid Kuroczko <qnex42(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Delay INSERT
Date: 2005-03-25 16:29:09
Message-ID: 758d5e7f05032508294c881604@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-php

On Wed, 23 Mar 2005 12:33:00 -0500, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> Dawid Kuroczko <qnex42(at)gmail(dot)com> writes:
> > PostgreSQL doesn't have such issues with blocking, so only difference
> > between INSERT and INSERT DELAYED from PostgreSQL's standpoint
> > would be waiting and not for the result...

> With the right client-side code you can transmit multiple queries before
> receiving the result from the first one. I don't think libpq in its
> current incarnation really supports this, but in principle it's doable.

...though I think it should be called asynchronic rather than
'delayed'. I.e. issue a statement then select(2) in a spare
time to get the result, doing other work in meantime.

> The interesting questions have to do with error handling: if the
> "delayed" insert fails, what happens and what is the impact on
> subsequent queries? I have no idea how MySQL defines that.

Well, looking at the on-line mysql docs -- it is not documented,
I did however try to issue them (on 3.x mysql installation).
I've created a table with a single int PK column, then inserted
delayed few values, some of which broke PK contraint and these
were silently discared. There was no point checking how it would
work with transactions since ...delayed is MyISAM only and these
don't do transactions.

And as for PostgreSQL and asynchronic statements, I think it
should allow Pipelineing -- similar to NNTP or SMTP servers -- these would
send N commands to a server and then read them as-they-come-in.
Some usage example, imagine a web page which would:
$q1 = execute_async("SELECT foo FROM a");
$q2 = execute_async("SELECT * FROM polls LIMIT 5"); # whatever
$q3 = execute_async("SELECT baz FROM bazzz");
print some html; print $q1->fetchall, some html $q2->fetchall,
$q3->fetchall...

There is a question of synchronization and handling errors of course,
but I think it could be done and for some usage scenarios could be
quite benefitial.

Disclaimer: I never wrote a program using libpq, and I only looked
through libpq docs some time ago. If I am wrong, please forgive me.

Regards,
Dawid

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Daniel Verite 2005-03-25 16:44:38 [ANNOUNCE] Manitou-Mail
Previous Message Andrus Moor 2005-03-25 16:22:14 Referential integrity using constant in foreign key

Browse pgsql-php by date

  From Date Subject
Next Message Christopher Kings-Lynne 2005-03-26 18:11:21 New PHP/PostgreSQL functions
Previous Message Tom Lane 2005-03-23 17:33:00 Re: Delay INSERT