org.apache.hadoop.io.file.tfile.Utils.Version Java Examples
The following examples show how to use
org.apache.hadoop.io.file.tfile.Utils.Version.
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: BCFile.java From RDFS with Apache License 2.0 | 5 votes |
/** * Constructor * * @param fin * FS input stream. * @param fileLength * Length of the corresponding file * @throws IOException */ public Reader(FSDataInputStream fin, long fileLength, Configuration conf) throws IOException { this.in = fin; this.conf = conf; // move the cursor to the beginning of the tail, containing: offset to the // meta block index, version and magic fin.seek(fileLength - Magic.size() - Version.size() - Long.SIZE / Byte.SIZE); long offsetIndexMeta = fin.readLong(); version = new Version(fin); Magic.readAndVerify(fin); if (!version.compatibleWith(BCFile.API_VERSION)) { throw new RuntimeException("Incompatible BCFile fileBCFileVersion."); } // read meta index fin.seek(offsetIndexMeta); metaIndex = new MetaIndex(fin); // read data:BCFile.index, the data block index BlockReader blockR = getMetaBlock(DataIndex.BLOCK_NAME); try { dataIndex = new DataIndex(blockR); } finally { blockR.close(); } }
Example #2
Source File: BCFile.java From hadoop with Apache License 2.0 | 5 votes |
/** * Constructor * * @param fin * FS input stream. * @param fileLength * Length of the corresponding file * @throws IOException */ public Reader(FSDataInputStream fin, long fileLength, Configuration conf) throws IOException { this.in = fin; this.conf = conf; // move the cursor to the beginning of the tail, containing: offset to the // meta block index, version and magic fin.seek(fileLength - Magic.size() - Version.size() - Long.SIZE / Byte.SIZE); long offsetIndexMeta = fin.readLong(); version = new Version(fin); Magic.readAndVerify(fin); if (!version.compatibleWith(BCFile.API_VERSION)) { throw new RuntimeException("Incompatible BCFile fileBCFileVersion."); } // read meta index fin.seek(offsetIndexMeta); metaIndex = new MetaIndex(fin); // read data:BCFile.index, the data block index BlockReader blockR = getMetaBlock(DataIndex.BLOCK_NAME); try { dataIndex = new DataIndex(blockR); } finally { blockR.close(); } }
Example #3
Source File: TFile.java From hadoop with Apache License 2.0 | 5 votes |
public TFileMeta(DataInput in) throws IOException { version = new Version(in); if (!version.compatibleWith(TFile.API_VERSION)) { throw new RuntimeException("Incompatible TFile fileVersion."); } recordCount = Utils.readVLong(in); strComparator = Utils.readString(in); comparator = makeComparator(strComparator); }
Example #4
Source File: TFile.java From big-c with Apache License 2.0 | 5 votes |
public TFileMeta(DataInput in) throws IOException { version = new Version(in); if (!version.compatibleWith(TFile.API_VERSION)) { throw new RuntimeException("Incompatible TFile fileVersion."); } recordCount = Utils.readVLong(in); strComparator = Utils.readString(in); comparator = makeComparator(strComparator); }
Example #5
Source File: TFile.java From RDFS with Apache License 2.0 | 5 votes |
public TFileMeta(DataInput in) throws IOException { version = new Version(in); if (!version.compatibleWith(TFile.API_VERSION)) { throw new RuntimeException("Incompatible TFile fileVersion."); } recordCount = Utils.readVLong(in); strComparator = Utils.readString(in); comparator = makeComparator(strComparator); }
Example #6
Source File: BCFile.java From big-c with Apache License 2.0 | 5 votes |
/** * Constructor * * @param fin * FS input stream. * @param fileLength * Length of the corresponding file * @throws IOException */ public Reader(FSDataInputStream fin, long fileLength, Configuration conf) throws IOException { this.in = fin; this.conf = conf; // move the cursor to the beginning of the tail, containing: offset to the // meta block index, version and magic fin.seek(fileLength - Magic.size() - Version.size() - Long.SIZE / Byte.SIZE); long offsetIndexMeta = fin.readLong(); version = new Version(fin); Magic.readAndVerify(fin); if (!version.compatibleWith(BCFile.API_VERSION)) { throw new RuntimeException("Incompatible BCFile fileBCFileVersion."); } // read meta index fin.seek(offsetIndexMeta); metaIndex = new MetaIndex(fin); // read data:BCFile.index, the data block index BlockReader blockR = getMetaBlock(DataIndex.BLOCK_NAME); try { dataIndex = new DataIndex(blockR); } finally { blockR.close(); } }
Example #7
Source File: BCFile.java From hadoop-gpu with Apache License 2.0 | 5 votes |
/** * Constructor * * @param fin * FS input stream. * @param fileLength * Length of the corresponding file * @throws IOException */ public Reader(FSDataInputStream fin, long fileLength, Configuration conf) throws IOException { this.in = fin; this.conf = conf; // move the cursor to the beginning of the tail, containing: offset to the // meta block index, version and magic fin.seek(fileLength - Magic.size() - Version.size() - Long.SIZE / Byte.SIZE); long offsetIndexMeta = fin.readLong(); version = new Version(fin); Magic.readAndVerify(fin); if (!version.compatibleWith(BCFile.API_VERSION)) { throw new RuntimeException("Incompatible BCFile fileBCFileVersion."); } // read meta index fin.seek(offsetIndexMeta); metaIndex = new MetaIndex(fin); // read data:BCFile.index, the data block index BlockReader blockR = getMetaBlock(DataIndex.BLOCK_NAME); try { dataIndex = new DataIndex(blockR); } finally { blockR.close(); } }
Example #8
Source File: DTBCFile.java From attic-apex-malhar with Apache License 2.0 | 5 votes |
/** * Constructor * * @param fin * FS input stream. * @param fileLength * Length of the corresponding file * @throws IOException */ public Reader(FSDataInputStream fin, long fileLength, Configuration conf) throws IOException { this.in = fin; this.conf = conf; // A reader buffer to read the block baos = new ByteArrayOutputStream(DTFile.getFSInputBufferSize(conf) * 2); this.cacheKeys = new ArrayList<String>(); // move the cursor to the beginning of the tail, containing: offset to the // meta block index, version and magic fin.seek(fileLength - Magic.size() - Version.size() - Long.SIZE / Byte.SIZE); long offsetIndexMeta = fin.readLong(); version = new Version(fin); Magic.readAndVerify(fin); if (!version.compatibleWith(DTBCFile.API_VERSION)) { throw new RuntimeException("Incompatible BCFile fileBCFileVersion."); } // read meta index fin.seek(offsetIndexMeta); metaIndex = new MetaIndex(fin); // read data:BCFile.index, the data block index BlockReader blockR = getMetaBlock(DataIndex.BLOCK_NAME); try { dataIndex = new DataIndex(blockR); } finally { blockR.close(); } }
Example #9
Source File: TFile.java From hadoop-gpu with Apache License 2.0 | 5 votes |
public TFileMeta(DataInput in) throws IOException { version = new Version(in); if (!version.compatibleWith(TFile.API_VERSION)) { throw new RuntimeException("Incompatible TFile fileVersion."); } recordCount = Utils.readVLong(in); strComparator = Utils.readString(in); comparator = makeComparator(strComparator); }
Example #10
Source File: DTFile.java From attic-apex-malhar with Apache License 2.0 | 5 votes |
public TFileMeta(DataInput in) throws IOException { version = new Version(in); if (!version.compatibleWith(DTFile.API_VERSION)) { throw new RuntimeException("Incompatible TFile fileVersion."); } recordCount = Utils.readVLong(in); strComparator = Utils.readString(in); comparator = makeComparator(strComparator); }
Example #11
Source File: TFile.java From hadoop-gpu with Apache License 2.0 | 4 votes |
public Version getVersion() { return version; }
Example #12
Source File: TFile.java From RDFS with Apache License 2.0 | 4 votes |
public Version getVersion() { return version; }
Example #13
Source File: DTFile.java From attic-apex-malhar with Apache License 2.0 | 4 votes |
public Version getVersion() { return version; }
Example #14
Source File: TFile.java From big-c with Apache License 2.0 | 4 votes |
public Version getVersion() { return version; }
Example #15
Source File: TFile.java From hadoop with Apache License 2.0 | 4 votes |
public Version getVersion() { return version; }
Example #16
Source File: BCFile.java From RDFS with Apache License 2.0 | 2 votes |
/** * Get version of BCFile API. * * @return version of BCFile API. */ public Version getAPIVersion() { return API_VERSION; }
Example #17
Source File: BCFile.java From hadoop-gpu with Apache License 2.0 | 2 votes |
/** * Get version of BCFile API. * * @return version of BCFile API. */ public Version getAPIVersion() { return API_VERSION; }
Example #18
Source File: BCFile.java From hadoop-gpu with Apache License 2.0 | 2 votes |
/** * Get version of BCFile file being read. * * @return version of BCFile file being read. */ public Version getBCFileVersion() { return version; }
Example #19
Source File: BCFile.java From RDFS with Apache License 2.0 | 2 votes |
/** * Get version of BCFile file being read. * * @return version of BCFile file being read. */ public Version getBCFileVersion() { return version; }
Example #20
Source File: DTBCFile.java From attic-apex-malhar with Apache License 2.0 | 2 votes |
/** * Get version of BCFile API. * * @return version of BCFile API. */ public Version getAPIVersion() { return API_VERSION; }
Example #21
Source File: DTBCFile.java From attic-apex-malhar with Apache License 2.0 | 2 votes |
/** * Get version of BCFile file being read. * * @return version of BCFile file being read. */ public Version getBCFileVersion() { return version; }
Example #22
Source File: BCFile.java From big-c with Apache License 2.0 | 2 votes |
/** * Get version of BCFile API. * * @return version of BCFile API. */ public Version getAPIVersion() { return API_VERSION; }
Example #23
Source File: BCFile.java From big-c with Apache License 2.0 | 2 votes |
/** * Get version of BCFile file being read. * * @return version of BCFile file being read. */ public Version getBCFileVersion() { return version; }
Example #24
Source File: BCFile.java From hadoop with Apache License 2.0 | 2 votes |
/** * Get version of BCFile API. * * @return version of BCFile API. */ public Version getAPIVersion() { return API_VERSION; }
Example #25
Source File: BCFile.java From hadoop with Apache License 2.0 | 2 votes |
/** * Get version of BCFile file being read. * * @return version of BCFile file being read. */ public Version getBCFileVersion() { return version; }