Package org.apache.hadoop.hdfs.server.namenode.FSEditLogOp

Examples of org.apache.hadoop.hdfs.server.namenode.FSEditLogOp.HardLinkOp


      fsDir.unprotectedMerge(parityINodes, sourceINodes, mergeOp.parity, mergeOp.source,
          codec, mergeOp.checksums, mergeOp.timestamp);
      break;
    }
    case OP_HARDLINK: {
      HardLinkOp hardLinkOp = (HardLinkOp)op;
      fsDir.unprotectedHardLinkTo(hardLinkOp.src, hardLinkOp.dst, hardLinkOp.timestamp);
      break;
    }
    case OP_RENAME: {
      RenameOp renameOp = (RenameOp)op;
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hdfs.server.namenode.FSEditLogOp.HardLinkOp

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.