lkml.org 
[lkml]   [2018]   [Oct]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 2/2] mm, numa: Migrate pages to local nodes quicker early in the lifetime of a task
> > 
> > This does have issues when using with workloads that access more shared faults
> > than private faults.
> >
>
> Not as such. It can have issues on workloads where memory is initialised
> by one thread, then additional threads are created and access the same
> memory. They are not necessarily shared once buffers are handed over. In
> such a case, migrating quickly is the right thing to do. If it's truely
> shared pages then there may be some unnecessary migrations early in the
> lifetime of the task but it'll settle down quickly enough.
>

Do you have a workload recommendation to try for shared fault accesses.
I will try to get a DayTrader run in a day or two. There JVM and db threads
act on the same memory, I presume it might show some insights.

> Is it just numa01 that was affected for you? I ask because that particular
> workload is an averse workload on any machine with more than sockets and
> your machine description says it has 4 nodes. What it is testing is quite
> specific to 2-node machines.
>

Agree,

Some variations of numa01.sh where I have one process having threads equal
to number of cpus does regress but not as much as numa01.

./numa03.sh Real: 484.84 555.51 518.59 22.91 -5.84277%
./numa03.sh Sys: 44.41 64.40 53.24 6.65 -11.3824%
./numa03.sh User: 51328.77 59429.39 55366.62 2744.39 -9.47912%


> > SPECJbb did show some small loss and gains.
> >
>
> That almost always shows small gains and losses so that's not too
> surprising.
>

Okay.

> > Our numa grouping is not fast enough. It can take sometimes several
> > iterations before all the tasks belonging to the same group end up being
> > part of the group. With the current check we end up spreading memory faster
> > than we should hence hurting the chance of early consolidation.
> >
> > Can we restrict to something like this?
> >
> > if (p->numa_scan_seq >=MIN && p->numa_scan_seq <= MIN+4 &&
> > (cpupid_match_pid(p, last_cpupid)))
> > return true;
> >
> > meaning, we ran atleast MIN number of scans, and we find the task to be most likely
> > task using this page.
> >
>


> What's MIN? Assuming it's any type of delay, note that this will regress
> STREAM again because it's very sensitive to the starting state.
>

I was thinking of MIN as 3 to give a chance for things to settle.
but that might not help STREAM as you pointed out.

Do you have a hint on which commit made STREAM regress?

if we want to prioritize STREAM like workloads (i.e private faults) one simpler
fix could be to change the quadtraic equation

from:
if (!cpupid_pid_unset(last_cpupid) &&
cpupid_to_nid(last_cpupid) != dst_nid)
return false;
to:
if (!cpupid_pid_unset(last_cpupid) &&
cpupid_to_nid(last_cpupid) == dst_nid)
return true;

i.e to say if the group tasks likely consolidated to a node or the task was
moved to a different node but access were private, just move the memory.

The drawback though is we keep pulling memory everytime the task moves
across nodes. (which is probably restricted for long running tasks to some
extent by your fix)

--
Thanks and Regards
Srikar Dronamraju

\
 
 \ /
  Last update: 2018-10-02 19:31    [W:0.238 / U:0.472 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site