X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fdoc%2Fdev%2Fosd_internals%2Ferasure_coding%2Fjerasure.rst;fp=src%2Fceph%2Fdoc%2Fdev%2Fosd_internals%2Ferasure_coding%2Fjerasure.rst;h=27669a0b22639f08465dcd5d2e3be5e272e157c5;hb=812ff6ca9fcd3e629e49d4328905f33eee8ca3f5;hp=0000000000000000000000000000000000000000;hpb=15280273faafb77777eab341909a3f495cf248d9;p=stor4nfv.git diff --git a/src/ceph/doc/dev/osd_internals/erasure_coding/jerasure.rst b/src/ceph/doc/dev/osd_internals/erasure_coding/jerasure.rst new file mode 100644 index 0000000..27669a0 --- /dev/null +++ b/src/ceph/doc/dev/osd_internals/erasure_coding/jerasure.rst @@ -0,0 +1,33 @@ +=============== +jerasure plugin +=============== + +Introduction +------------ + +The parameters interpreted by the jerasure plugin are: + +:: + + ceph osd erasure-code-profile set myprofile \ + directory= \ # plugin directory absolute path + plugin=jerasure \ # plugin name (only jerasure) + k= \ # data chunks (default 2) + m= \ # coding chunks (default 2) + technique= \ # coding technique + +The coding techniques can be chosen among *reed_sol_van*, +*reed_sol_r6_op*, *cauchy_orig*, *cauchy_good*, *liberation*, +*blaum_roth* and *liber8tion*. + +The *src/erasure-code/jerasure* directory contains the +implementation. It is a wrapper around the code found at +`https://github.com/ceph/jerasure `_ +and `https://github.com/ceph/gf-complete +`_ , pinned to the latest stable +version in *.gitmodules*. These repositories are copies of the +upstream repositories `http://jerasure.org/jerasure/jerasure +`_ and +`http://jerasure.org/jerasure/gf-complete +`_ . The difference +between the two, if any, should match pull requests against upstream.