File

src/app/shared/api/erasure-code-profile.service.ts

Index

Properties
Methods

Constructor

constructor(http: HttpClient, i18n: I18n)
Parameters :
Name Type Optional
http HttpClient No
i18n I18n No

Methods

create
create(ecp: ErasureCodeProfile)
Parameters :
Name Type Optional
ecp ErasureCodeProfile No
Returns : any
delete
delete(name: string)
Parameters :
Name Type Optional
name string No
Returns : any
get
get(name: string)
Parameters :
Name Type Optional
name string No
Returns : any
getInfo
getInfo()
Returns : any
list
list()
update
update(ecp: ErasureCodeProfile)
Parameters :
Name Type Optional
ecp ErasureCodeProfile No
Returns : any

Properties

apiPath
Type : string
Default value : 'api/erasure_code_profile'
formTooltips
Type : object
Default value : { // Copied from /srv/cephmgr/ceph-dev/doc/rados/operations/erasure-code.*.rst k: this.i18n(`Each object is split in data-chunks parts, each stored on a different OSD.`), m: this.i18n(`Compute coding chunks for each object and store them on different OSDs. The number of coding chunks is also the number of OSDs that can be down without losing data.`), plugins: { jerasure: { description: this.i18n(`The jerasure plugin is the most generic and flexible plugin, it is also the default for Ceph erasure coded pools.`), technique: this.i18n(`The more flexible technique is reed_sol_van : it is enough to set k and m. The cauchy_good technique can be faster but you need to chose the packetsize carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents in the sense that they can only be configured with m=2.`), packetSize: this.i18n(`The encoding will be done on packets of bytes size at a time. Chosing the right packet size is difficult. The jerasure documentation contains extensive information on this topic.`) }, lrc: { description: this.i18n(`With the jerasure plugin, when an erasure coded object is stored on multiple OSDs, recovering from the loss of one OSD requires reading from all the others. For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading from the eleven others to repair. The lrc erasure code plugin creates local parity chunks to be able to recover using less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create an additional parity chunk for every four OSDs. When a single OSD is lost, it can be recovered with only four OSDs instead of eleven.`), l: this.i18n(`Group the coding and data chunks into sets of size locality. For instance, for k=4 and m=2, when locality=3 two groups of three are created. Each set can be recovered without reading chunks from another set.`), crushLocality: this.i18n(`The type of the crush bucket in which each set of chunks defined by l will be stored. For instance, if it is set to rack, each group of l chunks will be placed in a different rack. It is used to create a CRUSH rule step such as step choose rack. If it is not set, no such grouping is done.`) }, isa: { description: this.i18n( `The isa plugin encapsulates the ISA library. It only runs on Intel processors.` ), technique: this.i18n(`The ISA plugin comes in two Reed Solomon forms. If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy.`) }, shec: { description: this.i18n(`The shec plugin encapsulates the multiple SHEC library. It allows ceph to recover data more efficiently than Reed Solomon codes.`), c: this.i18n(`The number of parity chunks each of which includes each data chunk in its calculation range. The number is used as a durability estimator. For instance, if c=2, 2 OSDs can be down without losing data.`) } }, crushRoot: this.i18n(`The name of the crush bucket used for the first step of the CRUSH rule. For instance step take default.`), crushFailureDomain: this.i18n(`Ensure that no two chunks are in a bucket with the same failure domain. For instance, if the failure domain is host no two chunks will be stored on the same host. It is used to create a CRUSH rule step such as step chooseleaf host.`), crushDeviceClass: this.i18n(`Restrict placement to devices of a specific class (e.g., ssd or hdd), using the crush device class names in the CRUSH map.`), directory: this.i18n(`Set the directory name from which the erasure code plugin is loaded.`) }
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';

import { Observable } from 'rxjs';

import { I18n } from '@ngx-translate/i18n-polyfill';
import { ErasureCodeProfile } from '../models/erasure-code-profile';
import { ApiModule } from './api.module';

@Injectable({
  providedIn: ApiModule
})
export class ErasureCodeProfileService {
  apiPath = 'api/erasure_code_profile';

  formTooltips = {
    // Copied from /srv/cephmgr/ceph-dev/doc/rados/operations/erasure-code.*.rst
    k: this.i18n(`Each object is split in data-chunks parts, each stored on a different OSD.`),

    m: this.i18n(`Compute coding chunks for each object and store them on different OSDs.
      The number of coding chunks is also the number of OSDs that can be down without losing data.`),

    plugins: {
      jerasure: {
        description: this.i18n(`The jerasure plugin is the most generic and flexible plugin,
          it is also the default for Ceph erasure coded pools.`),
        technique: this.i18n(`The more flexible technique is reed_sol_van : it is enough to set k
          and m. The cauchy_good technique can be faster but you need to chose the packetsize
          carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents
          in the sense that they can only be configured with m=2.`),
        packetSize: this.i18n(`The encoding will be done on packets of bytes size at a time.
          Chosing the right packet size is difficult.
          The jerasure documentation contains extensive information on this topic.`)
      },
      lrc: {
        description: this.i18n(`With the jerasure plugin, when an erasure coded object is stored on
          multiple OSDs, recovering from the loss of one OSD requires reading from all the others.
          For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading
          from the eleven others to repair.

          The lrc erasure code plugin creates local parity chunks to be able to recover using
          less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create
          an additional parity chunk for every four OSDs. When a single OSD is lost, it can be
          recovered with only four OSDs instead of eleven.`),
        l: this.i18n(`Group the coding and data chunks into sets of size locality. For instance,
          for k=4 and m=2, when locality=3 two groups of three are created. Each set can
          be recovered without reading chunks from another set.`),
        crushLocality: this.i18n(`The type of the crush bucket in which each set of chunks defined
          by l will be stored. For instance, if it is set to rack, each group of l chunks will be
          placed in a different rack. It is used to create a CRUSH rule step such as step choose
          rack. If it is not set, no such grouping is done.`)
      },
      isa: {
        description: this.i18n(
          `The isa plugin encapsulates the ISA library. It only runs on Intel processors.`
        ),
        technique: this.i18n(`The ISA plugin comes in two Reed Solomon forms.
          If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy.`)
      },
      shec: {
        description: this.i18n(`The shec plugin encapsulates the multiple SHEC library.
          It allows ceph to recover data more efficiently than Reed Solomon codes.`),
        c: this.i18n(`The number of parity chunks each of which includes each data chunk in its
          calculation range. The number is used as a durability estimator. For instance, if c=2,
          2 OSDs can be down without losing data.`)
      }
    },

    crushRoot: this.i18n(`The name of the crush bucket used for the first step of the CRUSH rule.
      For instance step take default.`),

    crushFailureDomain: this.i18n(`Ensure that no two chunks are in a bucket with the same failure
      domain. For instance, if the failure domain is host no two chunks will be stored on the same
      host. It is used to create a CRUSH rule step such as step chooseleaf host.`),

    crushDeviceClass: this.i18n(`Restrict placement to devices of a specific class
      (e.g., ssd or hdd), using the crush device class names in the CRUSH map.`),

    directory: this.i18n(`Set the directory name from which the erasure code plugin is loaded.`)
  };

  constructor(private http: HttpClient, private i18n: I18n) {}

  list(): Observable<ErasureCodeProfile[]> {
    return this.http.get<ErasureCodeProfile[]>(this.apiPath);
  }

  create(ecp: ErasureCodeProfile) {
    return this.http.post(this.apiPath, ecp, { observe: 'response' });
  }

  update(ecp: ErasureCodeProfile) {
    return this.http.put(`${this.apiPath}/${ecp.name}`, ecp, { observe: 'response' });
  }

  delete(name: string) {
    return this.http.delete(`${this.apiPath}/${name}`, { observe: 'response' });
  }

  get(name: string) {
    return this.http.get(`${this.apiPath}/${name}`);
  }

  getInfo() {
    return this.http.get(`${this.apiPath}/_info`);
  }
}

result-matching ""

    No results matching ""