Re: Determine potential change in table size after a column dropped?

From: Holger Jakobs <holger(at)jakobs(dot)com>
To: pgsql-admin(at)lists(dot)postgresql(dot)org
Subject: Re: Determine potential change in table size after a column dropped?
Date: 2022-02-02 07:16:00
Message-ID: c38b0ee1-527a-5e1c-b807-eb99b26faa2e@jakobs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Am 01.02.22 um 14:46 schrieb Jiankang Ji:
> Hi All Supermen Experts,
>
> I'm new in pgsql and have a similar problem for a timescale pgDB. A DB
> table is for storing raw sessions data received through IoT network
> from many remote machines. The data format is the same for all the
> machines but the sessions lasting-periods could be different from 1
> minute to 1 hour and such. Each machine could be activated once a day
> or a few times a day randomly.
>
> My question is:
> 1. How to setup a watch-dog to detect new data has been added into the
> DB, and
> 2. How to pick-up the newly completed sessions data since last pick-up
> and put it into a buffer table dedicated to new data for further ETL
> processing?
>
> If you have some scripts in pgSQL, Python or C, it will be greatly
> appreciated!
>
> Thank you.
>
> Best regards, Ji
>
>
>
In order to get notified should new rows arrive (or current ones updated
or deleted), you can install a trigger which fires a NOTIFY command on a
name (channel).

All other sessions which have issued a LISTEN on the same name (channel)
will receive a notification.

Unfortunately, not all languages and drivers support this.

Recently, I updated the code for pg_listen in the script language Tcl.
It's committed, but no new version released yet.

--
Holger Jakobs, Bergisch Gladbach, Tel. +49-178-9759012

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Victor Sudakov 2022-02-02 08:45:05 Re: pgbouncer logs and its efficiency
Previous Message Peter Eisentraut 2022-02-02 07:08:40 Re: pgbouncer logs and its efficiency