Bug #723: XlogFlush

Started by PostgreSQL Bugs Listover 23 years ago2 messagesbugs
Jump to latest
#1PostgreSQL Bugs List
pgsql-bugs@postgresql.org

Jose Soares (jose@sferacarta.com) reports a bug with a severity of 3
The lower the number the more severe it is.

Short Description
XlogFlush

Long Description
Hi all,

I would like to know what this message means, maybe a bug??

psql> select * from capi;
ERROR: XLogFlush: request 0/6173A2D8 is not satisfied --- flushed only to 0/616E519C

This message is showed by psql in a random mode.

Thanks for any help,

Jose

Sample Code

No file was uploaded with this report

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: PostgreSQL Bugs List (#1)
Re: Bug #723: XlogFlush

pgsql-bugs@postgresql.org writes:

I would like to know what this message means, maybe a bug??

ERROR: XLogFlush: request 0/6173A2D8 is not satisfied --- flushed only to 0/616E519C

This suggests a corrupted LSN on some disk page, but without any context
I can't say more than that.

This message is showed by psql in a random mode.

Is the "request" value always the same? If so, it's probably just one
page that's messed up --- you could figure out which one with a
debugger. (XLogFlush unfortunately doesn't know why it's being called,
so it can't print any more info.)

regards, tom lane