From: Timofey Titovets <timofey.titovets@synesis.ru>
To: Matthew Wilcox <willy@infradead.org>
Cc: Linux Kernel <linux-kernel@vger.kernel.org>,
linux-doc@vger.kernel.org, linux-mm@kvack.org
Subject: Re: [PATCH v2] ksm: allow dedup all tasks memory
Date: Mon, 12 Nov 2018 19:16:11 +0300 [thread overview]
Message-ID: <CAGqmi7610QBdEp=xUOgPEbMhfB11ZF6cFCBS-T3BoCb2Sbj1ug@mail.gmail.com> (raw)
In-Reply-To: <20181112035838.GF21824@bombadil.infradead.org>
пн, 12 нояб. 2018 г. в 6:58, Matthew Wilcox <willy@infradead.org>:
>
> On Mon, Nov 12, 2018 at 12:26:10AM +0300, Timofey Titovets wrote:
> > ksm by default working only on memory that added by
> > madvice().
> >
> > And only way get that work on other applications:
> > - Use LD_PRELOAD and libraries
> > - Patch kernel
> >
> > Lets use kernel task list in ksm_scan_thread and add logic to allow ksm
> > import VMA from tasks.
> > That behaviour controlled by new attribute: mode
> > I try mimic hugepages attribute, so mode have two states:
> > - normal - old default behaviour
> > - always [new] - allow ksm to get tasks vma and try working on that.
> >
> > To reduce CPU load & tasklist locking time,
> > ksm try import VMAs from one task per loop.
> >
> > So add new attribute "mode"
> > Two passible values:
> > - normal [default] - ksm use only madvice
> > - always [new] - ksm will search vma over all processes memory and
> > add it to the dedup list
>
> Do you have any numbers for how much difference this change makes with
> various different workloads?
Yep, i got some non KVM numbers,
Formulas:
Percentage - (pages_sharing - pages_shared)/pages_unshared
Memory saved - (pages_sharing - pages_shared)*4/1024 MiB
- My working laptop: 5% - ~100 MiB saved ~2GiB used
Many different chrome based apps + KDE
- K8s test VM: 40% - ~160 MiB saved ~920MiB used
With some small running docker images
- Ceph test VM: 20% - ~60MiB saved ~600MiB used
With ceph mon, osd.
Develop cluster servers:
- K8s server backend: 72%, ~5800 MiB saved ~35.7 GiB used
(With backend apps: C, java, go & etc server apps)
- K8s server processing: 55%, ~2600 MiB saved ~28 GiB used
(90% of load many instance of one CPU intensive application)
- Ceph node: 2%, ~190 MiB saved ~11.7 GiB used
(OSD only)
So numbers, as always depends on the load.
Thanks!
- - -
P.S.
On recent kernels (4.19) i see BUG_ON message, that ksmd scheduled
while in critical section/atomic context,
not sure how to properly fix that.
(If i understood correctly, i can use preempt_disable(); but that
looks more like hack, not a fix).
Any feedback are welcome.
prev parent reply other threads:[~2018-11-12 16:16 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-11 21:26 Timofey Titovets
2018-11-12 3:58 ` Matthew Wilcox
2018-11-12 16:16 ` Timofey Titovets [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAGqmi7610QBdEp=xUOgPEbMhfB11ZF6cFCBS-T3BoCb2Sbj1ug@mail.gmail.com' \
--to=timofey.titovets@synesis.ru \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=willy@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox