Package eu.stratosphere.core.fs

Examples of eu.stratosphere.core.fs.BlockLocation


      assertNull(blockLocations);

      blockLocations = fs.getFileBlockLocations(fileStatus, 0, SMALL_FILE_SIZE);
      assertEquals(1, blockLocations.length);

      final BlockLocation bl = blockLocations[0];
      assertNotNull(bl.getHosts());
      assertEquals(1, bl.getHosts().length);
      assertEquals(SMALL_FILE_SIZE, bl.getLength());
      assertEquals(0, bl.getOffset());
      final URI s3Uri = fs.getUri();
      assertNotNull(s3Uri);
      assertEquals(s3Uri.getHost(), bl.getHosts()[0]);

      fs.delete(dir, true);

    } catch (IOException ioe) {
      fail(ioe.getMessage());
View Full Code Here

TOP

Related Classes of eu.stratosphere.core.fs.BlockLocation

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.