Java Code Examples for org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage#PIPELINE_SETUP_CREATE

The following examples show how to use org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage#PIPELINE_SETUP_CREATE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DFSOutputStream.java    From hadoop with Apache License 2.0 5 votes vote down vote up
private void endBlock() {
  if(DFSClient.LOG.isDebugEnabled()) {
    DFSClient.LOG.debug("Closing old block " + block);
  }
  this.setName("DataStreamer for file " + src);
  closeResponder();
  closeStream();
  setPipeline(null, null, null);
  stage = BlockConstructionStage.PIPELINE_SETUP_CREATE;
}
 
Example 2
Source File: DFSOutputStream.java    From big-c with Apache License 2.0 5 votes vote down vote up
private void endBlock() {
  if(DFSClient.LOG.isDebugEnabled()) {
    DFSClient.LOG.debug("Closing old block " + block);
  }
  this.setName("DataStreamer for file " + src);
  closeResponder();
  closeStream();
  setPipeline(null, null, null);
  stage = BlockConstructionStage.PIPELINE_SETUP_CREATE;
}
 
Example 3
Source File: DFSOutputStream.java    From hadoop with Apache License 2.0 4 votes vote down vote up
private DataStreamer(HdfsFileStatus stat, ExtendedBlock block) {
  isAppend = false;
  isLazyPersistFile = isLazyPersist(stat);
  this.block = block;
  stage = BlockConstructionStage.PIPELINE_SETUP_CREATE;
}
 
Example 4
Source File: DFSOutputStream.java    From big-c with Apache License 2.0 4 votes vote down vote up
private DataStreamer(HdfsFileStatus stat, ExtendedBlock block) {
  isAppend = false;
  isLazyPersistFile = isLazyPersist(stat);
  this.block = block;
  stage = BlockConstructionStage.PIPELINE_SETUP_CREATE;
}