Re: Transactions and HTTP

From: Raj Mathur <raju(at)linux-delhi(dot)org>
To: pgsql-admin(at)postgresql(dot)org
Subject: Re: Transactions and HTTP
Date: 2003-01-22 05:34:03
Message-ID: 15918.11595.192700.577364@mail.linux-delhi.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Hi Thomas,

>>>>> "Thomas" == Thomas Swan <tswan(at)idigx(dot)com> writes:

Thomas> Raj Mathur wrote:
>> Hi,
>>
>> Writing a web-based application using PostgreSQL as the
>> back-end database. The master create functions look something
>> like this:
>>
>> 1. Accept ID from user.
>>
>> 2. Verify that ID doesn't exist in database. Start
>> transaction. Create blank record with ID as key.
>>
>> 3. Accept remaining data for record from user.
>>
>> 4. Enter data into newly-created blank record. End
>> transaction.
>>
>> Firstly,is it possible to have a transaction spanning multiple
>> instances of the CGI/mod_perl invocations?

Thomas> Not easily. You are not always guaranteed the same httpd
Thomas> process when connecting. HTTP is stateless.

Tell me about it :)

>> Second, there are issues if the user session terminates for
>> some reason (e.g. user goes offline after the blank record has
>> been created, etc.) and I end up with a locked blank record in
>> the database. Would appreciate pointers to best practises in
>> handling this paradigm.

Thomas> It is basically a poor design when using HTTP operations.
Thomas> You are better off using server-side session data to store
Thomas> all the information you will need for the complete
Thomas> database operation and then at your final stage of data
Thomas> entry do the record addtion inside of a transaction
Thomas> (i.e. one POST operation), if you want to rollback on
Thomas> error. This should eliminate your concerns over lost
Thomas> locks and hanging transactions.

This is infeasible from the application point of view, since once the
user selects an ID to add to the database no other user must be
permitted to use that ID. Hence the two-stage process: creating a
blank record with the desired key, and populating that record. The
first phase ensures that no other user gets the key.

Off the top of my head I see two solutions to this:

1. Have a process that regularly goes through the database and deletes
blank records created more than (say) 30 minutes ago. Contrived,
inefficient and unmaintainable.

2. Hand off all database operations to a server process using (say)
SOAP. Then it's the responsibility of the server process to keep
track of created blank records and automatically rollback transactions
that exceed some fixed amount of time. Elegant but requires more
programming. I presume this would work...

Time to go learn SOAP, I guess.

Regards,

-- Raju
--
Raj Mathur raju(at)kandalaya(dot)org http://kandalaya.org/
It is the mind that moves

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Jessica Wang 2003-01-22 05:59:14 pgAdmin II program
Previous Message Minghann Ho 2003-01-22 01:58:18 Access PGDATA from different servers