TestDFSClientRetries.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 java.io.InputStream;
  21. import java.io.OutputStream;
  22. import org.apache.hadoop.conf.Configuration;
  23. import org.apache.hadoop.fs.FileSystem;
  24. import org.apache.hadoop.fs.Path;
  25. import org.apache.hadoop.io.IOUtils;
  26. import junit.framework.TestCase;
  27. /**
  28.  * These tests make sure that DFSClient retries fetching data from DFS
  29.  * properly in case of errors.
  30.  */
  31. public class TestDFSClientRetries extends TestCase {
  32.   
  33.   // writes 'len' bytes of data to out.
  34.   private static void writeData(OutputStream out, int len) throws IOException {
  35.     byte [] buf = new byte[4096*16];
  36.     while(len > 0) {
  37.       int toWrite = Math.min(len, buf.length);
  38.       out.write(buf, 0, toWrite);
  39.       len -= toWrite;
  40.     }
  41.   }
  42.   
  43.   /**
  44.    * This makes sure that when DN closes clients socket after client had
  45.    * successfully connected earlier, the data can still be fetched.
  46.    */
  47.   public void testWriteTimeoutAtDataNode() throws IOException,
  48.                                                   InterruptedException { 
  49.     Configuration conf = new Configuration();
  50.     
  51.     final int writeTimeout = 100; //milliseconds.
  52.     // set a very short write timeout for datanode, so that tests runs fast.
  53.     conf.setInt("dfs.datanode.socket.write.timeout", writeTimeout); 
  54.     // set a smaller block size
  55.     final int blockSize = 10*1024*1024;
  56.     conf.setInt("dfs.block.size", blockSize);
  57.     conf.setInt("dfs.client.max.block.acquire.failures", 1);
  58.     // set a small buffer size
  59.     final int bufferSize = 4096;
  60.     conf.setInt("io.file.buffer.size", bufferSize);
  61.     MiniDFSCluster cluster = new MiniDFSCluster(conf, 3, true, null);
  62.     
  63.     try {
  64.       cluster.waitActive();
  65.       FileSystem fs = cluster.getFileSystem();
  66.     
  67.       Path filePath = new Path("/testWriteTimeoutAtDataNode");
  68.       OutputStream out = fs.create(filePath, true, bufferSize);
  69.     
  70.       // write a 2 block file.
  71.       writeData(out, 2*blockSize);
  72.       out.close();
  73.       
  74.       byte[] buf = new byte[1024*1024]; // enough to empty TCP buffers.
  75.       
  76.       InputStream in = fs.open(filePath, bufferSize);
  77.       
  78.       //first read a few bytes
  79.       IOUtils.readFully(in, buf, 0, bufferSize/2);
  80.       //now read few more chunks of data by sleeping in between :
  81.       for(int i=0; i<10; i++) {
  82.         Thread.sleep(2*writeTimeout); // force write timeout at the datanode.
  83.         // read enough to empty out socket buffers.
  84.         IOUtils.readFully(in, buf, 0, buf.length); 
  85.       }
  86.       // successfully read with write timeout on datanodes.
  87.       in.close();
  88.     } finally {
  89.       cluster.shutdown();
  90.     }
  91.   }
  92.   
  93.   // more tests related to different failure cases can be added here.
  94. }