Обсуждение: "clearing" a relation file !

Поиск
Список
Период
Сортировка

"clearing" a relation file !

От
"Michel SALAIS"
Дата:

Hi,

Here is the execution of a script for a cluster where checksums are enabled. The script could be more simple. However, I simplified it compared to my original script.

This is version and platform information (System is CentOS Stream release 8)

cours=# select version();

                                                version

--------------------------------------------------------------------------------------------------------

PostgreSQL 14.2 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-4), 64-bit

(1 ligne)

 

First the creation of the table:

 

\set ECHO all

\set jours 1000

drop table if exists test cascade;

DROP TABLE

create table test

(

  seq bigint,

  date_op timestamp,

  valeur real

);

CREATE TABLE

select setseed(0.5);

setseed

---------

 

(1 ligne)

 

insert into test (seq, date_op, valeur)

select

  seq,

  current_timestamp - interval :'jours' day + make_interval(mins => seq) date_op,

  100 * random() valeur

from generate_series(0, :jours * 24 * 60 - 1) seq;

INSERT 0 1440000

alter table test

add constraint pk_test

primary key (seq);

ALTER TABLE

 

Now we will corrupt storage file of table test using ‘dd’

 

\set ECHO all

show data_checksums;

data_checksums

----------------

on

(1 ligne)

 

select

  current_setting('data_directory') ||

  '/' ||

  pg_relation_filepath('test') file_path;

                         file_path

-----------------------------------------------------------

/pgsql/pgdata/pg_tblspc/16384/PG_14_202107181/16386/16444

(1 ligne)

 

\gset

\setenv file_path :file_path

\! dd if=/dev/zero of=$file_path bs=1024 count=100

100+0 enregistrements lus

100+0 enregistrements écrits

102400 octets (102 kB, 100 KiB) copiés, 0,000910942 s, 112 MB/s

select count(*) from test;

count

-------

  1884

(1 ligne)

 

Well, I think this is cache in action. If server is restarted, then the reply is 0. That is despite the deliberate choice of non 8KB multiplier size. PostgreSQL doesn’t complain during ordinary operations. Complaints come when we try to play with checksums using pg_checksums.

 

select count(*) from test;

count

-------

     0

(1 ligne)

 

I consider this is a serious problem.

 

Best regards

 

Michel SALAIS

Re: "clearing" a relation file !

От
Tom Lane
Дата:
"Michel SALAIS" <msalais@msym.fr> writes:
> \! dd if=/dev/zero of=$file_path bs=1024 count=100

This is fairly useless.

As you already noticed, it corrupts the on-disk data but has no
immediate effect on what's in shared buffers.  Depending on what
the timing of checkpoints is, the damage might even be self-healed
due to writing out shared buffers after you corrupt the storage.

The other problem with this specific test is that an all-zero
page is considered to be a valid state.  You may consider that
a problem or not, but we're quite unlikely to change it, because
doing so would create false failure reports.  See the mechanisms
around file extension.

            regards, tom lane



Re: "clearing" a relation file !

От
"David G. Johnston"
Дата:
On Sat, May 14, 2022 at 1:46 PM Tom Lane <tgl@sss.pgh.pa.us> wrote:
"Michel SALAIS" <msalais@msym.fr> writes:
> \! dd if=/dev/zero of=$file_path bs=1024 count=100

The other problem with this specific test is that an all-zero
page is considered to be a valid state.  You may consider that
a problem or not, but we're quite unlikely to change it, because
doing so would create false failure reports.  See the mechanisms
around file extension.


Should this detail be mentioned in the docs?


Namely (and not confirmed):

"A failure mode that produces empty pages will not be detected by this mechanism during normal server operation, but the pg_checksums application will since all normal usage of empty pages is restricted to runtime transient state."

David J.