Re: Understanding pg_stat_io.evictions

2023-07-31 Thread Daniel Westermann (DWE)
>> postgres=# insert into t select i, md5(i::text), md5(i::text), md5(i::text) >> from generate_series(1,100) i; >.. >> client backend | 207 | normal >> client backend | 0 | vacuum >> >> Shouldn't these evictions show up under context blkwrite? The description in >> docs is:

Re: Understanding pg_stat_io.evictions

2023-07-30 Thread Kyotaro Horiguchi
At Fri, 28 Jul 2023 10:36:46 +, "Daniel Westermann (DWE)" wrote in > postgres=# insert into t select i, md5(i::text), md5(i::text), md5(i::text) > from generate_series(1,100) i; .. > client backend | 207 | normal > client backend | 0 | vacuum > > Shouldn't these evicti