Re: Logging at schema level

From: John R Pierce <pierce(at)hogranch(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Logging at schema level
Date: 2017-07-21 06:21:47
Message-ID: 9dee4181-71aa-fec0-2ec6-4264344a61d4@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 7/20/2017 11:11 PM, Nikhil wrote:
> Schema = tenant. So basically tenant level logging.

select .... from schema1.table1 join schema2.table2 on .... where
.....;

if you have per schema logging, where should that get logged ?

you could implement per DATABASE logging, if you A) add the database
name to the log_prefix, and B) feed your logs to a program that
understands this and splits them out to a log file per database. you
could also do this on a per user basis. but, schema is something very
dynamic, its a namespace within a database, and queries can touch
multiiple schemas.

--
john r pierce, recycling bits in santa cruz

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Andreas Kretschmer 2017-07-21 06:24:04 Re: Logging at schema level
Previous Message Andreas Kretschmer 2017-07-21 06:15:47 Re: Streaming Replication archive_command is really needed?