Re: Are we losing momentum?

From: "Michael Paesold" <mpaesold(at)gmx(dot)at>
To: <mikeb(at)netnation(dot)com>, "Brent Verner" <brent(at)rcfile(dot)org>
Cc: <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Are we losing momentum?
Date: 2003-04-15 21:51:00
Message-ID: 039601c30399$1b537600$3201a8c0@beeblebrox
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-advocacy pgsql-general pgsql-hackers pgsql-patches

Mike Benoit writes:

> Shared hosting enviroments. I work for a web hosting company that offers
> MySQL to all of its customers, our MySQL server has several thousand
> databases on it, and I must say it works exceptionally well.
>
> Creating users/databases/changing passwords is as simple as sending it a
> couple queries from our Customer web interface, trouble shooting poor
> queries takes seconds when using "mytop" (mtop), and tracking/billing
> for disk usage is as simple as running "du /var/lib/mysql/*". I would
> like to say the same things for PG, but I'm affrid I can't.

At least in the latest versions, things are quite easy.

User/database administration?
CREATE USER someuser ENCRYPTED PASSWORD '...' NOCREATEDB NOCREATEUSER;
CREATE DATABASE someuser OWNER someuser ENCODING 'UNICODE';

Disk usage account? Use contrib/dbsize (README for easy setup)
SELECT database_size('someuser');
Done.

Poor queries -> query stats?

Of course, some things are easier in MySQL. On the other hand, what about
InnoDB, "du /var/lib/mysql/*" won't help much...

I just wanted to show that PostgreSQL administration is not that hard in a
hosting environment.

Regards,
Michael Paesold

In response to

Browse pgsql-advocacy by date

  From Date Subject
Next Message ow 2003-04-15 21:58:24 Re: Are we losing momentum?
Previous Message Robert Treat 2003-04-15 21:35:18 Re: Tech Docs and Consultants

Browse pgsql-general by date

  From Date Subject
Next Message ow 2003-04-15 21:58:24 Re: Are we losing momentum?
Previous Message Bruce Momjian 2003-04-15 21:24:54 Re: How can I get a column INT4 to be UNSIGNED ?

Browse pgsql-hackers by date

  From Date Subject
Next Message ow 2003-04-15 21:58:24 Re: Are we losing momentum?
Previous Message Bruce Momjian 2003-04-15 21:19:27 Re: Does libpq have SSL functions?

Browse pgsql-patches by date

  From Date Subject
Next Message ow 2003-04-15 21:58:24 Re: Are we losing momentum?
Previous Message Bruce Momjian 2003-04-15 21:28:15 Re: IPv6 address parsing for inet/cidr types (take II)