Search in sources :

Example 1 with WALKey

use of org.apache.hadoop.hbase.shaded.protobuf.generated.WALProtos.WALKey in project hbase by apache.

the class ProtobufLogReader method readNext.

@Override
protected boolean readNext(Entry entry) throws IOException {
    while (true) {
        // OriginalPosition might be < 0 on local fs; if so, it is useless to us.
        long originalPosition = this.inputStream.getPos();
        if (trailerPresent && originalPosition > 0 && originalPosition == this.walEditsStopOffset) {
            if (LOG.isTraceEnabled()) {
                LOG.trace("Reached end of expected edits area at offset " + originalPosition);
            }
            return false;
        }
        WALKey.Builder builder = WALKey.newBuilder();
        long size = 0;
        try {
            long available = -1;
            try {
                int firstByte = this.inputStream.read();
                if (firstByte == -1) {
                    throw new EOFException("First byte is negative at offset " + originalPosition);
                }
                size = CodedInputStream.readRawVarint32(firstByte, this.inputStream);
                // available may be < 0 on local fs for instance.  If so, can't depend on it.
                available = this.inputStream.available();
                if (available > 0 && available < size) {
                    throw new EOFException("Available stream not enough for edit, " + "inputStream.available()= " + this.inputStream.available() + ", " + "entry size= " + size + " at offset = " + this.inputStream.getPos());
                }
                ProtobufUtil.mergeFrom(builder, new LimitInputStream(this.inputStream, size), (int) size);
            } catch (InvalidProtocolBufferException ipbe) {
                throw (EOFException) new EOFException("Invalid PB, EOF? Ignoring; originalPosition=" + originalPosition + ", currentPosition=" + this.inputStream.getPos() + ", messageSize=" + size + ", currentAvailable=" + available).initCause(ipbe);
            }
            if (!builder.isInitialized()) {
                //       If we can get the KV count, we could, theoretically, try to get next record.
                throw new EOFException("Partial PB while reading WAL, " + "probably an unexpected EOF, ignoring. current offset=" + this.inputStream.getPos());
            }
            WALKey walKey = builder.build();
            entry.getKey().readFieldsFromPb(walKey, this.byteStringUncompressor);
            if (!walKey.hasFollowingKvCount() || 0 == walKey.getFollowingKvCount()) {
                if (LOG.isTraceEnabled()) {
                    LOG.trace("WALKey has no KVs that follow it; trying the next one. current offset=" + this.inputStream.getPos());
                }
                continue;
            }
            int expectedCells = walKey.getFollowingKvCount();
            long posBefore = this.inputStream.getPos();
            try {
                int actualCells = entry.getEdit().readFromCells(cellDecoder, expectedCells);
                if (expectedCells != actualCells) {
                    // other info added in catch
                    throw new EOFException("Only read " + actualCells);
                }
            } catch (Exception ex) {
                String posAfterStr = "<unknown>";
                try {
                    posAfterStr = this.inputStream.getPos() + "";
                } catch (Throwable t) {
                    if (LOG.isTraceEnabled()) {
                        LOG.trace("Error getting pos for error message - ignoring", t);
                    }
                }
                String message = " while reading " + expectedCells + " WAL KVs; started reading at " + posBefore + " and read up to " + posAfterStr;
                IOException realEofEx = extractHiddenEof(ex);
                throw (EOFException) new EOFException("EOF " + message).initCause(realEofEx != null ? realEofEx : ex);
            }
            if (trailerPresent && this.inputStream.getPos() > this.walEditsStopOffset) {
                LOG.error("Read WALTrailer while reading WALEdits. wal: " + this.path + ", inputStream.getPos(): " + this.inputStream.getPos() + ", walEditsStopOffset: " + this.walEditsStopOffset);
                throw new EOFException("Read WALTrailer while reading WALEdits");
            }
        } catch (EOFException eof) {
            // If originalPosition is < 0, it is rubbish and we cannot use it (probably local fs)
            if (originalPosition < 0) {
                if (LOG.isTraceEnabled()) {
                    LOG.trace("Encountered a malformed edit, but can't seek back to last good position because originalPosition is negative. last offset=" + this.inputStream.getPos(), eof);
                }
                throw eof;
            }
            // read successfully.
            if (LOG.isTraceEnabled()) {
                LOG.trace("Encountered a malformed edit, seeking back to last good position in file, from " + inputStream.getPos() + " to " + originalPosition, eof);
            }
            seekOnFs(originalPosition);
            return false;
        }
        return true;
    }
}
Also used : WALKey(org.apache.hadoop.hbase.shaded.protobuf.generated.WALProtos.WALKey) EOFException(java.io.EOFException) InvalidProtocolBufferException(com.google.protobuf.InvalidProtocolBufferException) LimitInputStream(org.apache.hadoop.hbase.io.LimitInputStream) IOException(java.io.IOException) InvalidProtocolBufferException(com.google.protobuf.InvalidProtocolBufferException) IOException(java.io.IOException) EOFException(java.io.EOFException)

Aggregations

InvalidProtocolBufferException (com.google.protobuf.InvalidProtocolBufferException)1 EOFException (java.io.EOFException)1 IOException (java.io.IOException)1 LimitInputStream (org.apache.hadoop.hbase.io.LimitInputStream)1 WALKey (org.apache.hadoop.hbase.shaded.protobuf.generated.WALProtos.WALKey)1