Uploaded image for project: 'Hadoop HDFS'
  1. Hadoop HDFS
  2. HDFS-7285 Erasure Coding Support inside HDFS
  3. HDFS-8731

Erasure coding: For a small file missing and under replicated ec-block calculation is incorrect

    XMLWordPrintableJSON

Details

    • Sub-task
    • Status: Resolved
    • Major
    • Resolution: Duplicate
    • None
    • None
    • None
    • None

    Description

      Write a small file (whose replica detail would be : one data replica and 3 parity replicas .)

      Now :
      totalReplicasPerBlock = 4
      targetFileReplication = 9 (calculated based on default RS-6-3 schema)

      Hence the small file ec-blocks is calculated as always missing and underreplicated. which is wrong...

      targetFileReplication = (short) (ecSchema.getNumDataUnits() + ecSchema.getNumParityUnits());
      
            // count missing replicas / under replicated blocks
            if (totalReplicasPerBlock < targetFileReplication && totalReplicasPerBlock > 0) {
              res.missingReplicas += (targetFileReplication - totalReplicasPerBlock);
      	res.numUnderReplicatedBlocks += 1;
      

      Attachments

        Issue Links

          Activity

            People

              andreina J.Andreina
              andreina J.Andreina
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: