public interface TxnLog
| Modifier and Type | Interface and Description |
|---|---|
static interface |
TxnLog.TxnIterator
an iterating interface for reading
transaction logs.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
append(TxnHeader hdr,
org.apache.jute.Record r)
Append a request to the transaction log
|
void |
close()
close the transactions logs
|
void |
commit()
commmit the trasaction and make sure
they are persisted
|
long |
getDbId()
the dbid for this transaction log.
|
long |
getLastLoggedZxid()
the last zxid of the logged transactions.
|
TxnLog.TxnIterator |
read(long zxid)
Start reading the transaction logs
from a given zxid
|
void |
rollLog()
roll the current
log being appended to
|
boolean |
truncate(long zxid)
truncate the log to get in sync with the
leader.
|
void rollLog()
throws IOException
IOExceptionboolean append(TxnHeader hdr, org.apache.jute.Record r) throws IOException
hdr - the transaction headerr - the transaction itself
returns true iff something appended, otw falseIOExceptionTxnLog.TxnIterator read(long zxid) throws IOException
zxid - IOExceptionlong getLastLoggedZxid()
throws IOException
IOExceptionboolean truncate(long zxid)
throws IOException
zxid - the zxid to truncate at.IOExceptionlong getDbId()
throws IOException
IOExceptionvoid commit()
throws IOException
IOExceptionvoid close()
throws IOException
IOExceptionCopyright © 2014 The Apache Software Foundation