Re: [EXT] Re: log_min_messages = warning

2022-09-11 Thread Junwang Zhao
Hi Steve, I happened to see the pg_cron extensions these days, IMHO this is not a bug, pg_cron has two kind of bg workers, one is the launcher and the other is CronBackgroundWorker, the launcher is responsible for scheduling the jobs, and CronBackgroundWorker is the real worker doing the job. See

Re: [EXT] Re: log_min_messages = warning

2022-09-07 Thread Tom Lane
"Dirschel, Steve" writes: > I believe this clearly points to an issue with pg_cron. Would you agree? Yeah, you certainly need to look into what sort of environment that is setting up. I know zip about pg_cron, can't help you there. regards, tom lane

RE: [EXT] Re: log_min_messages = warning

2022-09-07 Thread Dirschel, Steve
> "Dirschel, Steve" writes: >> setdatabase | setrole | >> >> setconfig >> -+-+-- >> -

Re: [EXT] Re: log_min_messages = warning

2022-09-06 Thread Tom Lane
"Dirschel, Steve" writes: > setdatabase | setrole | > > setconfig > -+-+-

RE: [EXT] Re: log_min_messages = warning

2022-09-06 Thread Dirschel, Steve
We recently upgraded from postgres 12.8 to 14.3.  We are running Aurora Postgres on AWS. >Aurora Postgres != Postgres. This doesn't seem like something they'd change, >but we can't rule that out entirely. >>> Try: >>> select setting, source, sourcefile, pending_restart from pg_settin

Re: [EXT] Re: log_min_messages = warning

2022-09-06 Thread Tom Lane
"Dirschel, Steve" writes: >>> We recently upgraded from postgres 12.8 to 14.3.  We are running >>> Aurora Postgres on AWS. Aurora Postgres != Postgres. This doesn't seem like something they'd change, but we can't rule that out entirely. >> Try: >> select setting, source, sourcefile, pending_re

RE: [EXT] Re: log_min_messages = warning

2022-09-06 Thread Dirschel, Steve
>On 9/6/22 12:07, Dirschel, Steve wrote: >> We recently upgraded from postgres 12.8 to 14.3.  We are running >> Aurora Postgres on AWS. >> >> We have procedures that will make calls to RAISE NOTICE to write out >> messages if you interactively call the procedure through psql.  These >> procedur

Re: log_min_messages = warning

2022-09-06 Thread Adrian Klaver
On 9/6/22 12:07, Dirschel, Steve wrote: We recently upgraded from postgres 12.8 to 14.3.  We are running Aurora Postgres on AWS. We have procedures that will make calls to RAISE NOTICE to write out messages if you interactively call the procedure through psql.  These procedures are getting ca

log_min_messages = warning

2022-09-06 Thread Dirschel, Steve
We recently upgraded from postgres 12.8 to 14.3. We are running Aurora Postgres on AWS. We have procedures that will make calls to RAISE NOTICE to write out messages if you interactively call the procedure through psql. These procedures are getting called by pg_cron. Since upgrading these RA