Re: Using Postgresql as application server

From: Sim Zacks <sim(at)compulab(dot)co(dot)il>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Using Postgresql as application server
Date: 2011-08-17 06:05:44
Message-ID: 4E4B5A38.20008@compulab.co.il
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-general

On 08/16/2011 03:06 AM, Craig Ringer wrote:
> On 15/08/2011 10:36 PM, Merlin Moncure wrote:
>> On Sat, Aug 13, 2011 at 2:30 PM, Andreas Joseph Krogh
>> <andreak(at)officenet(dot)no> wrote:
>>> No, PG has never, and will never, act as an application-server.
>> Why in the world not?
>
> The biggest reason is safety. Beyond that, the lack of autonomous
> transactions, stored procedures, in-DB timers, and support for any
> protocol other than the native Pg database query protocol mean it's also
> rather impractical.
>
> I guess theoretically one could embed a JVM / Python instance / whatever
> in the postmaster and have it spawn new backends for incoming
> connections with other protocols. But ... why? Why add all that
> complexity and - more importantly - contaiminate PostgreSQL's address
> space with more code that can fail when you don't have to? PLs and user
> C procedures are already risk enough as far as I'm concerned.
>

As I've mentioned in other posts, we are using postgresql as a hybrid
application server and have found it to be very practical and easy to
code. For functions that need to run on a regular basis, we use a cron
job, though from what I understand pgAgent should be able to handle that
just as well. Instead of using Listen/Notify to tell an application to
send e-mails, we have an email function written in plpython that sends
the email directly.
The reason to do this is because it gives you "write once" code which
makes your application pretty much client-agnostic.

PG already spawns a new backend for each connection. So your specialized
code has little chance of hosing the whole database.

We connect to other databases when we need to, mostly mysql using the
MySQLdb python module, to move data to and from our website.

Scalability would be increased with multi-master replication, which
bucardo currently does (I haven't tested it yet).

One issue you have is using database style hardware for application
server needs, which may be more expensive.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Sim Zacks 2011-08-17 06:53:37 Re: Using Postgresql as application server
Previous Message c k 2011-08-17 05:02:11 Re: Using Postgresql as application server

Browse pgsql-general by date

  From Date Subject
Next Message Siva Palanisamy 2011-08-17 06:28:33 Any idea about using \COPY in ECPG statement
Previous Message Siva Palanisamy 2011-08-17 05:45:02 Re: How to write a psql command inside a function?