From: Loic Dachary <loic@dachary.org>
To: Andreas-Joachim Peters <andreas.joachim.peters@cern.ch>
Cc: "Ma, Jianpeng" <jianpeng.ma@intel.com>,
Ceph Development <ceph-devel@vger.kernel.org>
Subject: ISA erasure code plugin and cache
Date: Mon, 04 Aug 2014 13:56:59 +0200 [thread overview]
Message-ID: <53DF750B.6080107@dachary.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 2073 bytes --]
Hi,
Here is how I understand the current code:
When an OSD is missing, recovery is required and the primary OSD will collect the available chunks to do so. It will then call the decode method via ECUtil::decode which is a small wrapper around the corresponding ErasureCodeInterface::decode method.
https://github.com/ceph/ceph/blob/master/src/osd/ECBackend.cc#L361
The ISA plugin will then use the isa_decode method to perform the work
https://github.com/ceph/ceph/blob/master/src/erasure-code/isa/ErasureCodeIsa.cc#L212
and will be repeatedly called until all objects in the PGs that were relying on the missing OSD are recovered. To avoid computing the decoding table for each object, it is stored in a LRU cache
https://github.com/ceph/ceph/blob/master/src/erasure-code/isa/ErasureCodeIsa.cc#L480
and copied in the stack if already there:
https://github.com/ceph/ceph/blob/master/src/erasure-code/isa/ErasureCodeIsa.cc#L433
Each PG has a separate instance of ErasureCodeIsa, obtained when it is created:
https://github.com/ceph/ceph/blob/master/src/osd/PGBackend.cc#L292
It means that data members of each ErasureCodeIsa are copied as many times as there are PGs. If an OSD handles participates in 200 PG that belong to an erasure coded pool configured to use ErasureCodeIsa, the data members will be duplicated 200 times.
It is good practice to make it so that the encode/decode methods of ErasureCodeIsa are thread safe. In the jerasure plugin these methods have no side effect on the object. In the isa plugin the LRU cache storing the decode tables is modified by the decode method and guarded by a mutex:
get https://github.com/ceph/ceph/blob/master/src/erasure-code/isa/ErasureCodeIsa.cc#L281
put https://github.com/ceph/ceph/blob/master/src/erasure-code/isa/ErasureCodeIsa.cc#L310
Please correct me if I'm mistaken ;-) I've not reviewed the code yet and try to find problems, I just wanted to make sure I get the intention before doing so.
Cheers
--
Loïc Dachary, Artisan Logiciel Libre
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]
next reply other threads:[~2014-08-04 11:57 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-04 11:56 Loic Dachary [this message]
2014-08-04 12:15 ` ISA erasure code plugin and cache Andreas Joachim Peters
2014-08-04 12:37 ` Loic Dachary
2014-08-04 12:43 ` Andreas Joachim Peters
2014-08-04 12:50 ` Ma, Jianpeng
2014-08-04 12:56 ` Loic Dachary
2014-08-04 13:19 ` Andreas Joachim Peters
2014-08-04 14:22 ` Sage Weil
2014-08-04 15:22 ` Andreas Joachim Peters
2014-08-04 17:04 ` Loic Dachary
2014-08-04 20:07 ` Andreas Joachim Peters
2014-08-04 21:26 ` Loic Dachary
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=53DF750B.6080107@dachary.org \
--to=loic@dachary.org \
--cc=andreas.joachim.peters@cern.ch \
--cc=ceph-devel@vger.kernel.org \
--cc=jianpeng.ma@intel.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.