TestAbandonBlock.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.hdfs;
  19. import java.io.IOException;
  20. import org.apache.commons.logging.Log;
  21. import org.apache.commons.logging.LogFactory;
  22. import org.apache.hadoop.conf.Configuration;
  23. import org.apache.hadoop.fs.*;
  24. import org.apache.hadoop.hdfs.protocol.LocatedBlock;
  25. import org.apache.hadoop.hdfs.protocol.LocatedBlocks;
  26. import org.apache.hadoop.util.StringUtils;
  27. public class TestAbandonBlock extends junit.framework.TestCase {
  28.   public static final Log LOG = LogFactory.getLog(TestAbandonBlock.class);
  29.   
  30.   private static final Configuration CONF = new Configuration();
  31.   static final String FILE_NAME_PREFIX
  32.       = "/" + TestAbandonBlock.class.getSimpleName() + "_"; 
  33.   public void testAbandonBlock() throws IOException {
  34.     MiniDFSCluster cluster = new MiniDFSCluster(CONF, 2, true, null);
  35.     FileSystem fs = cluster.getFileSystem();
  36.     String src = FILE_NAME_PREFIX + "foo";
  37.     FSDataOutputStream fout = null;
  38.     try {
  39.       //start writing a a file but not close it
  40.       fout = fs.create(new Path(src), true, 4096, (short)1, 512L);
  41.       for(int i = 0; i < 1024; i++) {
  42.         fout.write(123);
  43.       }
  44.       fout.sync();
  45.   
  46.       //try reading the block by someone
  47.       DFSClient dfsclient = new DFSClient(CONF);
  48.       LocatedBlocks blocks = dfsclient.namenode.getBlockLocations(src, 0, 1);
  49.       LocatedBlock b = blocks.get(0); 
  50.       try {
  51.         dfsclient.namenode.abandonBlock(b.getBlock(), src, "someone");
  52.         //previous line should throw an exception.
  53.         assertTrue(false);
  54.       }
  55.       catch(IOException ioe) {
  56.         LOG.info("GREAT! " + StringUtils.stringifyException(ioe));
  57.       }
  58.     }
  59.     finally {
  60.       try{fout.close();} catch(Exception e) {}
  61.       try{fs.close();} catch(Exception e) {}
  62.       try{cluster.shutdown();} catch(Exception e) {}
  63.     }
  64.   }
  65. }