Package org.apache.bookkeeper.client
Class ReadLastConfirmedAndEntryOp.ReadLACAndEntryRequest
- java.lang.Object
-
- org.apache.bookkeeper.client.ReadLastConfirmedAndEntryOp.ReadLACAndEntryRequest
-
- All Implemented Interfaces:
java.lang.AutoCloseable
- Direct Known Subclasses:
ReadLastConfirmedAndEntryOp.ParallelReadRequest
,ReadLastConfirmedAndEntryOp.SequenceReadRequest
- Enclosing class:
- ReadLastConfirmedAndEntryOp
abstract class ReadLastConfirmedAndEntryOp.ReadLACAndEntryRequest extends java.lang.Object implements java.lang.AutoCloseable
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.util.concurrent.atomic.AtomicBoolean
complete
(package private) java.util.List<BookieId>
ensemble
(package private) LedgerEntryImpl
entryImpl
(package private) int
firstError
(package private) int
numMissedEntryReads
(package private) DistributionSchedule.WriteSet
orderedEnsemble
(package private) int
rc
(package private) DistributionSchedule.WriteSet
writeSet
-
Constructor Summary
Constructors Constructor Description ReadLACAndEntryRequest(java.util.List<BookieId> ensemble, long lId, long eId)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
close()
(package private) boolean
complete(int bookieIndex, BookieId host, io.netty.buffer.ByteBuf buffer, long entryId)
Complete the read request from host.(package private) boolean
fail(int rc)
Fail the request with given result code rc.(package private) int
getFirstError()
(package private) int
getRc()
Get result code of this entry.(package private) boolean
isComplete()
Whether the read request completed.(package private) void
logErrorAndReattemptRead(int bookieIndex, BookieId host, java.lang.String errMsg, int rc)
Log error errMsg and reattempt read from host.(package private) abstract BookieId
maybeSendSpeculativeRead(java.util.BitSet heardFromHostsBitSet)
Send to next replica speculatively, if required and possible.(package private) abstract void
read()
Execute the read request.java.lang.String
toString()
-
-
-
Field Detail
-
complete
final java.util.concurrent.atomic.AtomicBoolean complete
-
rc
int rc
-
firstError
int firstError
-
numMissedEntryReads
int numMissedEntryReads
-
ensemble
final java.util.List<BookieId> ensemble
-
writeSet
final DistributionSchedule.WriteSet writeSet
-
orderedEnsemble
final DistributionSchedule.WriteSet orderedEnsemble
-
entryImpl
final LedgerEntryImpl entryImpl
-
-
Constructor Detail
-
ReadLACAndEntryRequest
ReadLACAndEntryRequest(java.util.List<BookieId> ensemble, long lId, long eId)
-
-
Method Detail
-
close
public void close()
- Specified by:
close
in interfacejava.lang.AutoCloseable
-
getFirstError
int getFirstError()
-
read
abstract void read()
Execute the read request.
-
complete
boolean complete(int bookieIndex, BookieId host, io.netty.buffer.ByteBuf buffer, long entryId)
Complete the read request from host.- Parameters:
bookieIndex
- bookie indexhost
- host that respond the readbuffer
- the data buffer- Returns:
- return true if we managed to complete the entry; otherwise return false if the read entry is not complete or it is already completed before
-
fail
boolean fail(int rc)
Fail the request with given result code rc.- Parameters:
rc
- result code to fail the request.- Returns:
- true if we managed to fail the entry; otherwise return false if it already failed or completed.
-
logErrorAndReattemptRead
void logErrorAndReattemptRead(int bookieIndex, BookieId host, java.lang.String errMsg, int rc)
Log error errMsg and reattempt read from host.- Parameters:
bookieIndex
- bookie indexhost
- host that just responderrMsg
- error msg to logrc
- read result code
-
maybeSendSpeculativeRead
abstract BookieId maybeSendSpeculativeRead(java.util.BitSet heardFromHostsBitSet)
Send to next replica speculatively, if required and possible. This returns the host we may have sent to for unit testing.- Parameters:
heardFromHostsBitSet
- the set of hosts that we already received responses.- Returns:
- host we sent to if we sent. null otherwise.
-
isComplete
boolean isComplete()
Whether the read request completed.- Returns:
- true if the read request is completed.
-
getRc
int getRc()
Get result code of this entry.- Returns:
- result code.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-