Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Aug 2023 01:31:04 -0700
From:      Shrikanth Kamath <shrikanth07@gmail.com>
To:        Mark Johnston <markj@freebsd.org>
Cc:        freebsd-hackers@freebsd.org
Subject:   Re: How to watch Active pagequeue transitions with DTrace in the vm layer
Message-ID:  <CAEOAkMV2YnkjMoJpwHotutyX8szeQNDqUBv0mt%2BJWybg5Ru6JA@mail.gmail.com>
In-Reply-To: <ZMvEZIa09GcxKO58@nuc>
References:  <CAEOAkMXQfAGJTozu98Te3RmMxH-i_q5e2MzQLHdDGPsfciGAbg@mail.gmail.com> <ZMvEZIa09GcxKO58@nuc>

next in thread | previous in thread | raw e-mail | index | archive | help
--000000000000bd4d49060214baf9
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Thanks and appreciate your response Mark, a follow up query, so the system
was probably at some point in the state where there were no pages in the
laundry or even had pages backed by swap (refer the top snapshot below) .
The two heavy applications with 12G resident + Wired + Buf already caused
the Free to drop close to the minimum threshold, any further memory demand
would have the pages of these applications move to laundry or swap, then
would transition to Inactive or Laundry, later when these pages were
referenced back the pagedaemon would move them back to the Active? Is that
a correct understanding?

last pid: 20494;  load averages:  0.38,  0.73,  0.80  up 0+01:49:05
 21:14:49
Mem: 9439M Active, 3638M Inact, 2644M Wired, 888M Buf, 413M Free

Swap: 8192M Total, 8192M Free

PID USERNAME    THR PRI NICE   SIZE    RES STATE    C   TIME    WCPU
COMMAND
12043 root          5  22    0  9069M  7752M kqread   2  49:37   6.25% app1
12051 root          1  20    0  2704M  1964M select   3   0:41   0.00% app2

So if I run DTrace probe on vm_page_enqueue I will probably see that
pagedaemon might be the thread that moved all those pages to Active? Is
there a way to associate these to the process which referenced these pages

Regards,
--
Shrikanth R K

On Thu, Aug 3, 2023 at 8:14=E2=80=AFAM Mark Johnston <markj@freebsd.org> wr=
ote:

> On Thu, Aug 03, 2023 at 12:32:22AM -0700, Shrikanth Kamath wrote:
> > A background on the query,
> >
> > Trying to catch a memory =E2=80=9Cspike=E2=80=9D trigger using DTrace, =
refer here two
> =E2=80=9Ctop=E2=80=9D
> > snapshots captured during a 2 minute window,
> >
> > last pid: 89900;  load averages:  0.75,  0.91,  0.94  up 39+00:37:30
> > 20:03:14
> >
> > Mem: 5575M Active, 2152M Inact, 4731M Laundry, 3044M Wired, 1151M Buf,
> 382M
> > Free
> >
> > Swap: 8192M Total, 1058M Used, 7134M Free, 12% Inuse
> >
> > PID USERNAME    THR PRI NICE   SIZE  RES   STATE   C TIME    WCPU COMMA=
ND
> >
> > 12043    root               5    35     0        11G  9747M kqread  3
> > 128.8H  23.34% app1
> >
> > 12051    root               1    20     0    3089M  2274M select   1
> 22:51
> >   0.00%    app2
> >
> > last pid: 90442;  load averages:  1.50,  1.12,  1.02  up 39+00:39:37
> > 20:05:21
> >
> > Mem: 8549M Active, 631M Inact, 3340M Laundry, 3159M Wired, 1252M Buf,
> 359M
> > Free
> >
> > Swap: 8192M Total, 1894M Used, 6298M Free, 23% Inuse
> >
> > PID   USERNAME   THR PRI NICE   SIZE    RES STATE   C TIME   WCPU
> COMMAND
> >
> > 12043       root              5  24    0         11G  9445M kqread  2
> > 128.8H 10.45%  app1
> >
> > 12051       root              1  20    0     3089M  2173M select   3
> 22:51
> >   0.00%    app2
> >
> > The spike is ~3G in Active pages, the two large applications have a
> > combined resident size of ~12G. The resident size of the applications
> > hasn=E2=80=99t changed between these 2 readings, however there is a tar=
 archive
> and
> > gzip on a large directory during that window likely causing a reshuffle=
.
> If
> > I count the page allocs and dequeue by execname with DTrace, I see
> > tar/vmstat which probably alloc and quickly dequeue, along with a large
> > dequeue being undertaken by bufdaemon and pagedaemon.
> >
> > fbt::vm_page_alloc*:entry
> >
> > {
> >
> >         @cnt[execname] =3D count();
> >
> > }
> >
> > fbt::vm_page_dequeue:entry
> >
> > {
> >
> >         @dcnt[execname] =3D count();
> >
> > }
> >
> > Page Alloc
> >
> >   vmstat
> > 20222
> >
> >   tar                                                              2128=
4
> >
> > Page Dequeue
> >
> >   vmstat                                                        20114
> >
> >   bufdaemon                                                 21402
> >
> >   tar                                                               216=
35
> >
> >   pagedaemon                                             360387
> >
> > Since the tar / vmstat will not hold the pages in Active, I need to fin=
d
> > out what application had its pages queued in Active page queue.
>
> One possibility is that the inactive and laundry queue had previously
> contained many referenced pages.  Then, when some memory pressure
> occurred, the pagedaemon scanned the queues and moved a large number of
> pages into the active queue.
>
> > Is it possible that the system is just moving the LRU pages of these tw=
o
> > large applications into the inactive queue prior to addressing memory
> > pressure?  Do these applications need to activate those pages later and
> > hence it brings it back into the Active queue? How do I watch this in
> > action by using DTrace? Will the following probe catch this trigger?
> >
> > fbt::vm_page_activate:entry
> >
> > {
> >
> > @cnt[execname, pid] =3D count();
> >
> > }
> >
> > tick-10sec
> >
> > {
> >
> >        printa(@cnt);
> >
> >        printf("ACTIVE[%d] pages\n", `vm_dom[0].vmd_pagequeues[1].pq_cnt=
);
> >
> > }
> >
> > *** This system is running only one vmdomain (# sysctl vm.ndomains =E2=
=80=93>
> > vm.ndomains: 1).
> >
> > *** running release 12.1, on an amd64 kernel. The physical memory
> installed
> > is 16G.
>
> In 12.1, you'd probably want something like:
>
> fbt::vm_page_enqueue:entry
> /args[1] =3D=3D 1 /* PQ_ACTIVE *//
> {
> ...
> }
>
> since vm_page_unwire(m, PQ_ACTIVE) will also move a page into the active
> queue, but your D script above won't catch that.
>
> I would also look at the "pages reactivated by the page daemon" counter
> that appears in vmstat -s output.  That'll tell you how many times the
> page daemon moved a page from PQ_INACTIVE/PQ_LAUNDRY to PQ_ACTIVE
> because it found that the page had been referenced.
>


--=20
Shrikanth R K

--000000000000bd4d49060214baf9
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><div dir=3D"ltr">Thanks and appreciate your response Mark,=
 a follow up query, so the system was probably at some point in the state w=
here there were no pages in the laundry or even had pages backed by swap (r=
efer the top snapshot below) . The two heavy applications with 12G resident=
=C2=A0+ Wired=C2=A0+ Buf already caused the Free to drop close to the minim=
um threshold, any further memory demand would have the pages of these appli=
cations move to laundry or swap, then would transition to Inactive or Laund=
ry, later when these pages were referenced back the pagedaemon would move t=
hem back to the Active? Is that a correct understanding?<div><br>last pid: =
20494; =C2=A0load averages: =C2=A00.38, =C2=A00.73, =C2=A00.80 =C2=A0up 0+0=
1:49:05 =C2=A0 =C2=A021:14:49<div>Mem: 9439M Active, 3638M Inact, 2644M Wir=
ed, 888M Buf, 413M Free =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <b=
r>Swap: 8192M Total, 8192M Free</div><div><br>PID USERNAME =C2=A0 =C2=A0THR=
 PRI NICE =C2=A0 SIZE =C2=A0 =C2=A0RES STATE =C2=A0 =C2=A0C =C2=A0 TIME =C2=
=A0 =C2=A0WCPU COMMAND =C2=A0<br>12043 root =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A05 =C2=A022 =C2=A0 =C2=A00 =C2=A09069M =C2=A07752M kqread =C2=A0 2 =C2=A0=
49:37 =C2=A0 6.25% app1=C2=A0<br>12051 root =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A01 =C2=A020 =C2=A0 =C2=A00 =C2=A02704M =C2=A01964M select =C2=A0 3 =C2=A0=
 0:41 =C2=A0 0.00% app2</div></div></div><div><br></div><div>So if I run DT=
race probe on vm_page_enqueue I will probably see that pagedaemon might be =
the thread that moved all those pages to Active? Is there a way to associat=
e these to the process which referenced these pages</div><div><br></div><di=
v>Regards,</div><div>--</div><div>Shrikanth R K<br><div class=3D"gmail_quot=
e"><div dir=3D"ltr" class=3D"gmail_attr"><br></div><div dir=3D"ltr" class=
=3D"gmail_attr">On Thu, Aug 3, 2023 at 8:14=E2=80=AFAM Mark Johnston &lt;<a=
 href=3D"mailto:markj@freebsd.org">markj@freebsd.org</a>&gt; wrote:<br></di=
v><blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;borde=
r-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204)=
;padding-left:1ex">On Thu, Aug 03, 2023 at 12:32:22AM -0700, Shrikanth Kama=
th wrote:<br>
&gt; A background on the query,<br>
&gt; <br>
&gt; Trying to catch a memory =E2=80=9Cspike=E2=80=9D trigger using DTrace,=
 refer here two =E2=80=9Ctop=E2=80=9D<br>
&gt; snapshots captured during a 2 minute window,<br>
&gt; <br>
&gt; last pid: 89900;=C2=A0 load averages:=C2=A0 0.75,=C2=A0 0.91,=C2=A0 0.=
94=C2=A0 up 39+00:37:30<br>
&gt; 20:03:14<br>
&gt; <br>
&gt; Mem: 5575M Active, 2152M Inact, 4731M Laundry, 3044M Wired, 1151M Buf,=
 382M<br>
&gt; Free<br>
&gt; <br>
&gt; Swap: 8192M Total, 1058M Used, 7134M Free, 12% Inuse<br>
&gt; <br>
&gt; PID USERNAME=C2=A0 =C2=A0 THR PRI NICE=C2=A0 =C2=A0SIZE=C2=A0 RES=C2=
=A0 =C2=A0STATE=C2=A0 =C2=A0C TIME=C2=A0 =C2=A0 WCPU COMMAND<br>
&gt; <br>
&gt; 12043=C2=A0 =C2=A0 root=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A05=C2=A0 =C2=A0 35=C2=A0 =C2=A0 =C2=A00=C2=A0 =C2=A0 =C2=A0 =C2=A0=
 11G=C2=A0 9747M kqread=C2=A0 3<br>
&gt; 128.8H=C2=A0 23.34% app1<br>
&gt; <br>
&gt; 12051=C2=A0 =C2=A0 root=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A01=C2=A0 =C2=A0 20=C2=A0 =C2=A0 =C2=A00=C2=A0 =C2=A0 3089M=C2=A0 2=
274M select=C2=A0 =C2=A01=C2=A0 22:51<br>
&gt;=C2=A0 =C2=A00.00%=C2=A0 =C2=A0 app2<br>
&gt; <br>
&gt; last pid: 90442;=C2=A0 load averages:=C2=A0 1.50,=C2=A0 1.12,=C2=A0 1.=
02=C2=A0 up 39+00:39:37<br>
&gt; 20:05:21<br>
&gt; <br>
&gt; Mem: 8549M Active, 631M Inact, 3340M Laundry, 3159M Wired, 1252M Buf, =
359M<br>
&gt; Free<br>
&gt; <br>
&gt; Swap: 8192M Total, 1894M Used, 6298M Free, 23% Inuse<br>
&gt; <br>
&gt; PID=C2=A0 =C2=A0USERNAME=C2=A0 =C2=A0THR PRI NICE=C2=A0 =C2=A0SIZE=C2=
=A0 =C2=A0 RES STATE=C2=A0 =C2=A0C TIME=C2=A0 =C2=A0WCPU=C2=A0 COMMAND<br>
&gt; <br>
&gt; 12043=C2=A0 =C2=A0 =C2=A0 =C2=A0root=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=
 =C2=A0 =C2=A0 5=C2=A0 24=C2=A0 =C2=A0 0=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A01=
1G=C2=A0 9445M kqread=C2=A0 2<br>
&gt; 128.8H 10.45%=C2=A0 app1<br>
&gt; <br>
&gt; 12051=C2=A0 =C2=A0 =C2=A0 =C2=A0root=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=
 =C2=A0 =C2=A0 1=C2=A0 20=C2=A0 =C2=A0 0=C2=A0 =C2=A0 =C2=A03089M=C2=A0 217=
3M select=C2=A0 =C2=A03=C2=A0 22:51<br>
&gt;=C2=A0 =C2=A00.00%=C2=A0 =C2=A0 app2<br>
&gt; <br>
&gt; The spike is ~3G in Active pages, the two large applications have a<br=
>
&gt; combined resident size of ~12G. The resident size of the applications<=
br>
&gt; hasn=E2=80=99t changed between these 2 readings, however there is a ta=
r archive and<br>
&gt; gzip on a large directory during that window likely causing a reshuffl=
e. If<br>
&gt; I count the page allocs and dequeue by execname with DTrace, I see<br>
&gt; tar/vmstat which probably alloc and quickly dequeue, along with a larg=
e<br>
&gt; dequeue being undertaken by bufdaemon and pagedaemon.<br>
&gt; <br>
&gt; fbt::vm_page_alloc*:entry<br>
&gt; <br>
&gt; {<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0@cnt[execname] =3D count();<br>
&gt; <br>
&gt; }<br>
&gt; <br>
&gt; fbt::vm_page_dequeue:entry<br>
&gt; <br>
&gt; {<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0@dcnt[execname] =3D count();<br>
&gt; <br>
&gt; }<br>
&gt; <br>
&gt; Page Alloc<br>
&gt; <br>
&gt;=C2=A0 =C2=A0vmstat<br>
&gt; 20222<br>
&gt; <br>
&gt;=C2=A0 =C2=A0tar=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=
 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 21284<br>
&gt; <br>
&gt; Page Dequeue<br>
&gt; <br>
&gt;=C2=A0 =C2=A0vmstat=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 20114=
<br>
&gt; <br>
&gt;=C2=A0 =C2=A0bufdaemon=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A021402<br>
&gt; <br>
&gt;=C2=A0 =C2=A0tar=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=
 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A021635<br>
&gt; <br>
&gt;=C2=A0 =C2=A0pagedaemon=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=
 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0360387<br>
&gt; <br>
&gt; Since the tar / vmstat will not hold the pages in Active, I need to fi=
nd<br>
&gt; out what application had its pages queued in Active page queue.<br>
<br>
One possibility is that the inactive and laundry queue had previously<br>
contained many referenced pages.=C2=A0 Then, when some memory pressure<br>
occurred, the pagedaemon scanned the queues and moved a large number of<br>
pages into the active queue.<br>
<br>
&gt; Is it possible that the system is just moving the LRU pages of these t=
wo<br>
&gt; large applications into the inactive queue prior to addressing memory<=
br>
&gt; pressure?=C2=A0 Do these applications need to activate those pages lat=
er and<br>
&gt; hence it brings it back into the Active queue? How do I watch this in<=
br>
&gt; action by using DTrace? Will the following probe catch this trigger?<b=
r>
&gt; <br>
&gt; fbt::vm_page_activate:entry<br>
&gt; <br>
&gt; {<br>
&gt; <br>
&gt; @cnt[execname, pid] =3D count();<br>
&gt; <br>
&gt; }<br>
&gt; <br>
&gt; tick-10sec<br>
&gt; <br>
&gt; {<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 printa(@cnt);<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 printf(&quot;ACTIVE[%d] pages\n&quot;, `vm_=
dom[0].vmd_pagequeues[1].pq_cnt);<br>
&gt; <br>
&gt; }<br>
&gt; <br>
&gt; *** This system is running only one vmdomain (# sysctl vm.ndomains =E2=
=80=93&gt;<br>
&gt; vm.ndomains: 1).<br>
&gt; <br>
&gt; *** running release 12.1, on an amd64 kernel. The physical memory inst=
alled<br>
&gt; is 16G.<br>
<br>
In 12.1, you&#39;d probably want something like:<br>
<br>
fbt::vm_page_enqueue:entry<br>
/args[1] =3D=3D 1 /* PQ_ACTIVE *//<br>
{<br>
...<br>
}<br>
<br>
since vm_page_unwire(m, PQ_ACTIVE) will also move a page into the active<br=
>
queue, but your D script above won&#39;t catch that.<br>
<br>
I would also look at the &quot;pages reactivated by the page daemon&quot; c=
ounter<br>
that appears in vmstat -s output.=C2=A0 That&#39;ll tell you how many times=
 the<br>
page daemon moved a page from PQ_INACTIVE/PQ_LAUNDRY to PQ_ACTIVE<br>
because it found that the page had been referenced.<br>
</blockquote></div><br clear=3D"all"><div><br></div><span class=3D"gmail_si=
gnature_prefix">-- </span><br><div dir=3D"ltr" class=3D"gmail_signature"><d=
iv dir=3D"ltr"><div><div dir=3D"ltr"><div><span style=3D"font-size:12.8px">=
Shrikanth R K</span><br></div></div></div></div></div></div></div>

--000000000000bd4d49060214baf9--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAEOAkMV2YnkjMoJpwHotutyX8szeQNDqUBv0mt%2BJWybg5Ru6JA>