Re: After upgrade to 9.6: waiting column does not exist

From: John R Pierce <pierce(at)hogranch(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: After upgrade to 9.6: waiting column does not exist
Date: 2016-12-09 08:04:01
Message-ID: 9d9219ee-2dd0-19e5-00ab-37dd15ed5392@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 12/8/2016 11:59 PM, Johann Spies wrote:
> Now, when running the 9.6 server the following error message shows up
> regularly in the log:
>
> postgres(at)template1 ERROR: column "waiting" does not exist at
> character 217
>
>
> As far as I understand the following remark in the release notes, the
> column 'waiting' should not exist:
>
> *
>
> Improve the pg_stat_activity
> <https://www.postgresql.org/docs/9.6/static/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW>
> view's information about what a process is waiting for (Amit
> Kapila, Ildus Kurbangaliev)
>
> Historically a process has only been shown as waiting if it was
> waiting for a heavyweight lock. Now waits for lightweight locks
> and buffer pins are also shown in pg_stat_activity. Also, the type
> of lock being waited for is now visible. These changes replace the
> waiting column with wait_event_type and wait_event.
>
>
> How do I correct this?

are you running some sort of monitoring software thats periodically
looking at pg_stat_activity ? whatever query its doing needs to be
rewritten to take into account the pg_stat_activity changes in 9.6

--
john r pierce, recycling bits in santa cruz

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Achilleas Mantzios 2016-12-09 08:13:09 Re: After upgrade to 9.6: waiting column does not exist
Previous Message Johann Spies 2016-12-09 07:59:28 After upgrade to 9.6: waiting column does not exist