Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Jun 2018 18:35:11 -0700
From:      Steve Kargl <sgk@troutmask.apl.washington.edu>
To:        Don Lewis <truckman@FreeBSD.org>
Cc:        Stefan Esser <se@freebsd.org>, Andriy Gapon <avg@FreeBSD.org>, FreeBSD Current <freebsd-current@freebsd.org>, "M. Warner Losh" <imp@freebsd.org>
Subject:   Re: Is kern.sched.preempt_thresh=0 a sensible default?
Message-ID:  <20180610013511.GA10634@troutmask.apl.washington.edu>
In-Reply-To: <tkrat.b6bbded544f296b4@FreeBSD.org>
References:  <dc8d0285-1916-6581-2b2d-e8320ec3d894@freebsd.org> <CANCZdfoieekesqKa5RmOp=z2vycsVqnVss7ROnO87YTV-qBUzA@mail.gmail.com> <1d188cb0-ebc8-075f-ed51-57641ede1fd6@freebsd.org> <49fa8de4-e164-0642-4e01-a6188992c32e@freebsd.org> <32d6305b-3d57-4d37-ba1b-51631e994520@FreeBSD.org> <93efc3e1-7ac3-fedc-a71e-66c99f8e8c1e@freebsd.org> <9aaec961-e604-303a-52f3-ee24e3a435d0@FreeBSD.org> <bd122dbb-a708-dbc4-838b-3e1784921eff@FreeBSD.org> <b9925356-dd68-32a1-c9fb-441b694c0ccf@freebsd.org> <tkrat.b6bbded544f296b4@FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, Jun 09, 2018 at 06:07:15PM -0700, Don Lewis wrote:
> On  9 Jun, Stefan Esser wrote:
> 
> > 3) Programs that evenly split the load on all available cores have been
> >    suffering from sub-optimal assignment of threads to cores. E.g. on a
> >    CPU with 8 (virtual) cores, this resulted in 6 cores running the load
> >    in nominal time, 1 core taking twice as long because 2 threads were
> >    scheduled to run on it, while 1 core was mostly idle. Even if the
> >    load was initially evenly distributed, a woken up process that ran on
> >    one core destroyed the symmetry and it was not recovered. (This was a
> >    problem e.g. for parallel programs using MPI or the like.)
> 
> When a core is about to go idle or first enters the idle state it will
> search for the most heavily loaded core and steal a thread from it.  The
> core will only go to sleep if it can't find a non-running thread to
> steal.
> 
> If there are N cores and N+1 runnable threads, there is a long term load
> balancer than runs periodically.  It searches for the most and least
> loaded cores and moves a thread from the former to the latter.  That
> prevents the same pair of threads from having to share the same core
> indefinitely.
> 
> There is an observed bug where a low priority thread can get pinned to a
> particular core that is already occupied by a high-priority CPU-bound
> thread that never releases the CPU.  The low priority thread can't
> migrate to another core that subsequently becomes available because it
> it is pinned.  It is not known how the thread originally got into this
> state.  I don't see any reason for 4BSD to be immune to this problem.
> 

It is a well-known problem that an over-subscribed ULE kernel
has much worse performance than a 4BSD kernel.  I've posted
more than once with benchmark numbers that demonstrate the problem.

-- 
Steve



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20180610013511.GA10634>