Class RecoveryState.Translog
- java.lang.Object
-
- org.elasticsearch.indices.recovery.RecoveryState.Timer
-
- org.elasticsearch.indices.recovery.RecoveryState.Translog
-
- All Implemented Interfaces:
Writeable
,ToXContent
,ToXContentFragment
- Enclosing class:
- RecoveryState
public static class RecoveryState.Translog extends RecoveryState.Timer implements ToXContentFragment, Writeable
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Field Summary
Fields Modifier and Type Field Description static int
UNKNOWN
-
Fields inherited from class org.elasticsearch.indices.recovery.RecoveryState.Timer
startNanoTime, startTime, stopTime, time
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description Translog()
Translog(StreamInput in)
-
Method Summary
Modifier and Type Method Description void
decrementRecoveredOperations(int ops)
void
incrementRecoveredOperations()
void
incrementRecoveredOperations(int ops)
int
recoveredOperations()
returns the total number of translog operations recovered so farfloat
recoveredPercent()
void
reset()
int
totalOperations()
returns the total number of translog operations needed to be recovered at this moment.void
totalOperations(int total)
int
totalOperationsOnStart()
returns the total number of translog operations to recovered, on the start of the recovery.void
totalOperationsOnStart(int total)
XContentBuilder
toXContent(XContentBuilder builder, ToXContent.Params params)
void
writeTo(StreamOutput out)
Write this into the StreamOutput.-
Methods inherited from class org.elasticsearch.indices.recovery.RecoveryState.Timer
start, startTime, stop, stopTime, time
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
-
-
-
Field Detail
-
UNKNOWN
public static final int UNKNOWN
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Translog
public Translog()
-
Translog
public Translog(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Method Detail
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:Writeable
Write this into the StreamOutput.- Specified by:
writeTo
in interfaceWriteable
- Overrides:
writeTo
in classRecoveryState.Timer
- Throws:
java.io.IOException
-
reset
public void reset()
- Overrides:
reset
in classRecoveryState.Timer
-
incrementRecoveredOperations
public void incrementRecoveredOperations()
-
incrementRecoveredOperations
public void incrementRecoveredOperations(int ops)
-
decrementRecoveredOperations
public void decrementRecoveredOperations(int ops)
-
recoveredOperations
public int recoveredOperations()
returns the total number of translog operations recovered so far
-
totalOperations
public int totalOperations()
returns the total number of translog operations needed to be recovered at this moment. Note that this can change as the number of operations grows during recovery.A value of -1 (
UNKNOWN
is return if this is unknown (typically a gateway recovery)
-
totalOperations
public void totalOperations(int total)
-
totalOperationsOnStart
public int totalOperationsOnStart()
returns the total number of translog operations to recovered, on the start of the recovery. UnliketotalOperations()
this does change during recovery.A value of -1 (
UNKNOWN
is return if this is unknown (typically a gateway recovery)
-
totalOperationsOnStart
public void totalOperationsOnStart(int total)
-
recoveredPercent
public float recoveredPercent()
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContent
in interfaceToXContent
- Throws:
java.io.IOException
-
-