From: | Fujii Masao <masao(dot)fujii(at)gmail(dot)com> |
---|---|
To: | Robert Haas <robertmhaas(at)gmail(dot)com> |
Cc: | Amit Kapila <amit(dot)kapila16(at)gmail(dot)com>, Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>, Andrew Dunstan <andrew(at)dunslane(dot)net>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Re: [COMMITTERS] pgsql: Map basebackup tablespaces using a tablespace_map file |
Date: | 2015-07-17 01:54:52 |
Message-ID: | CAHGQGwFMm6N7XhPmrKEiLu5REXPeN9U9NmLofnZpcnrcbRuyAw@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers pgsql-hackers |
On Fri, Jul 17, 2015 at 1:28 AM, Robert Haas <robertmhaas(at)gmail(dot)com> wrote:
> On Thu, Jul 16, 2015 at 9:41 AM, Fujii Masao <masao(dot)fujii(at)gmail(dot)com> wrote:
>> Here are some minor comments:
>>
>> + ereport(LOG,
>> + (errmsg("ignoring \"%s\" file because no
>> \"%s\" file exists",
>> + TABLESPACE_MAP, BACKUP_LABEL_FILE),
>> + errdetail("could not rename file \"%s\" to
>> \"%s\": %m",
>> + TABLESPACE_MAP, TABLESPACE_MAP_OLD)));
>>
>> WARNING is better than LOG here because it indicates a problematic case?
>
> No, that's not the right distinction. Remember that, when sending
> messages to the client, WARNING > LOG, and when sending messages to
> the log, LOG > WARNING. So messages that a user is more likely to
> care about than the administrator should be logged at WARNNG; those
> that the administrator is more likely to care about should be LOG. I
> think LOG is clearly the appropriate thing here.
Isn't this "rule" confusing the administrators? ISTM that the administrators
would intuitively and literally pay more attention to WARNING than LOG.
Also there are already some warning messages with WARNING level that
the administrators rather than the clients should care about. For example,
the warning message which output when archive_command fails.
ereport(WARNING,
(errmsg("archiving transaction log file
\"%s\" failed too many times, will try again later",
xlog)));
Regards,
--
Fujii Masao
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2015-07-17 02:58:25 | pgsql: Fix a low-probability crash in our qsort implementation. |
Previous Message | Alvaro Herrera | 2015-07-16 16:42:07 | Re: Re: [COMMITTERS] pgsql: Map basebackup tablespaces using a tablespace_map file |
From | Date | Subject | |
---|---|---|---|
Next Message | Peter Geoghegan | 2015-07-17 02:03:33 | Re: RFC: replace pg_stat_activity.waiting with something more descriptive |
Previous Message | Michael Paquier | 2015-07-17 01:36:49 | Re: Add CINE for ALTER TABLE ... ADD COLUMN |