Re: VACUUM WARNING: skipping "pg_statistic" --- only table or database owner can vacuum it

Поиск
Список
Период
Сортировка
От Ray Stell
Тема Re: VACUUM WARNING: skipping "pg_statistic" --- only table or database owner can vacuum it
Дата
Msg-id 20100209223952.GA11857@cns.vt.edu
обсуждение исходный текст
Ответ на VACUUM WARNING: skipping "pg_statistic" --- only table or database owner can vacuum it  (Ray Stell <stellr@cns.vt.edu>)
Ответы Re: VACUUM WARNING: skipping "pg_statistic" --- only table or database owner can vacuum it  (Ray Stell <stellr@cns.vt.edu>)
Список pgsql-admin
On Sat, Jan 30, 2010 at 09:59:36AM -0500, Ray Stell wrote:
> Running 8.2.15 on RHEL4 the log reports this from autovacuum along with
> other pg_ tables:
>
> VACUUM WARNING:  skipping "pg_database" --- only table or database owner can vacuum it


More logging shows the user generating the msg is not superuser.  The user
is named "admin," as it is an application administrator and it chokes
on all the rels in information_schema and pg_catalog.

fms=# select * from pg_user where usename = 'admin';
 usename | usesysid | usecreatedb | usesuper | usecatupd |  passwd  | valuntil | useconfig
---------+----------+-------------+----------+-----------+----------+----------+-----------
 admin   |    16385 | f           | f        | f         | ******** |          |
(1 row)

Superuser owns these rels:

fms=# select * from pg_tables where tablename = 'sql_sizing';
     schemaname     | tablename  | tableowner | tablespace | hasindexes | hasrules | hastriggers
--------------------+------------+------------+------------+------------+----------+-------------
 information_schema | sql_sizing | postgres   |            | f          | f        | f
(1 row)

This vacuum.c if clause that gets to the warning msg:

        if (!(pg_class_ownercheck(RelationGetRelid(onerel), GetUserId()) ||
                  (pg_database_ownercheck(MyDatabaseId, GetUserId()) && !onerel->rd_rel->relisshared)))

The following printf in the vacuum.c clause shows all is well, but
raises some questions:

  1  pg_class_ownercheck(RelationGetRelid(onerel), GetUserId())=0
  2  RelationGetRelid(onerel)=sql_sizing
  3  GetUserId()=16385
  4  pg_database_ownercheck(MyDatabaseId, GetUserId())=0
  5  MyDatabaseId=16384
  6  onerel->rd_rel->relisshared=0

Is autovacuum handing all users off to vacuum all rels?  Even those
it does not own?  Perhaps "admin" an unfortunate usename choice?

Thanks.


В списке pgsql-admin по дате отправления:

Предыдущее
От: Dimitri Fontaine
Дата:
Сообщение: Re: Best Replication Tool
Следующее
От: Keith Gabryelski
Дата:
Сообщение: pg_migrator from 32bit to 64bit arch -- does it work? caveats?