Re: proposal: additional error fields

Поиск
Список
Период
Сортировка
От David Johnston
Тема Re: proposal: additional error fields
Дата
Msg-id 020D43C0-49BE-4F9C-A061-13B724C1D6F9@yahoo.com
обсуждение исходный текст
Ответ на Re: proposal: additional error fields  (Robert Haas <robertmhaas@gmail.com>)
Список pgsql-hackers
On May 1, 2012, at 20:05, Robert Haas <robertmhaas@gmail.com> wrote:

> On Tue, May 1, 2012 at 4:09 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
>> I continue to maintain that the SQLSTATE is a much better basis for
>> solving this problem.  Its categories are already pretty close to
>> what Peter needs: basically, IIUC, he wants to know about classes
>> 53, 58, maybe F0, and XX.
>
> This is really too mushy, IMHO.  ERRCODE_TOO_MANY_CONNECTIONS isn't
> what I'd call an oh-shit condition even though it's in class 53, but
> this "could not create archive status file \"%s\"" is definitely an
> oh-shit regardless of what errcode_for_file_access() returns.
>
> Also, the fact is that most people do not log SQLSTATEs.  And even if
> they did, they're not going to know to grep for 53|58|maybe F0|XX.
> What we need is an easy way for people to pick out any log entries
> that represent conditions that should never occur as a result of any
> legitimate user activity.
> Like, with grep.  And, without needing to
> have a PhD in Postgresology.
>

If you want something really simple why not output all elog calls to one file and ereport calls to the current log?

If you recognize the need to fix existing code so that you can determine the severity levels you desire then go all the
wayand use SQLSTATE at the call level and then add meta-data about those codes higher up.  That meta-data is then
customizableso those who want the too many connections error can see them while those that do not can turn them off. 

With the addition of the PostgreSQL specific severity category both that value and the SQLSTATE upon which it is based
shouldbe something that is considered best practice to output (and the default) and future attention should be given to
ensuringthat the code is as accurate as possible. Since existing log formats would still be valid upgrades should not
bean issue. 

David J.






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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: proposal: additional error fields
Следующее
От: Hannu Krosing
Дата:
Сообщение: Re: JSON in 9.2 - Could we have just one to_json() function instead of two separate versions ?