|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcascading.stats.CascadingStats
public abstract class CascadingStats
Class CascadingStats is the base class for all Cascading statistics gathering. It also reports the status of core elements that have state.
There are eight states the stats object reports; PENDING, SKIPPED, STARTED, SUBMITTED, RUNNING, SUCCESSFUL, STOPPED, and FAILED.pending
- when the Flow or Cascade has yet to start.skipped
- when the Flow was skipped by the parent Cascade.started
- when Flow.start()
was called.submitted
- when the Step was submitted to the underlying platform for work.running
- when the Flow or Cascade is executing a workload.stopped
- when the user calls Flow.stop()
on the Flow or Cascade.failed
- when the Flow or Cascade threw an error and failed to finish the workload.successful
- when the Flow or Cascade naturally completed its workload without failure.startTime
- when the start()
method was called.submitTime
- when the unit of work was actually submitted for execution. Not supported by all sub-classes.runTime
- when the unit of work actually began to execute work. This value may be affected by any "polling interval" in place.finishedTime
- when all work has completed successfully, failed, or stopped.finished
when the Flow or Cascade is no longer processing a workload and successful
,
failed
, or stopped
is true.
CascadeStats
,
FlowStats
,
FlowStepStats
,
Serialized FormNested Class Summary | |
---|---|
static class |
CascadingStats.Status
|
Field Summary | |
---|---|
protected ClientState |
clientState
|
static String |
STATS_STORE_INTERVAL
|
Constructor Summary | |
---|---|
protected |
CascadingStats(String name,
ClientState clientState)
|
Method Summary | |
---|---|
abstract void |
captureDetail()
Method captureDetail will recursively capture details about nested systems. |
void |
cleanup()
Method cleanup destroys any resources allocated by this instance. |
abstract Collection |
getChildren()
Method getChildren returns any relevant child statistics instances. |
abstract Collection<String> |
getCounterGroups()
Method getCounterGroups returns all the available counter group names. |
abstract Collection<String> |
getCounterGroupsMatching(String regex)
Method getCounterGroupsMatching returns all the available counter group names that match the given regular expression. |
Collection<String> |
getCountersFor(Class<? extends Enum> group)
Method getCountersFor returns all the counter names for the counter Enum. |
abstract Collection<String> |
getCountersFor(String group)
Method getCountersFor returns all the counter names for the give group name. |
abstract long |
getCounterValue(Enum counter)
Method getCounter returns the current value for the given counter Enum. |
abstract long |
getCounterValue(String group,
String counter)
Method getCounter returns the current value for the given group and counter. |
long |
getCurrentDuration()
Method getCurrentDuration returns the current duration of the current work whether or not the work is finished. |
long |
getDuration()
Method getDuration returns the duration the work executed before being finished. |
long |
getFinishedTime()
Method getFinishedTime returns the finishedTime of this CascadingStats object. |
abstract String |
getID()
Method getID returns the ID of this CascadingStats object. |
String |
getName()
Method getName returns the name of this CascadingStats object. |
long |
getPendingTime()
Method getPendingTime returns the pendingTime of this CascadingStats object. |
long |
getRunTime()
Method getRunTime returns the runTime of this CascadingStats object. |
long |
getStartTime()
Method getStartTime returns the startTime of this CascadingStats object. |
protected String |
getStatsString()
|
CascadingStats.Status |
getStatus()
Method getStatus returns the CascadingStats.Status of this CascadingStats object. |
long |
getSubmitTime()
Method getSubmitTime returns the submitTime of this CascadingStats object. |
Throwable |
getThrowable()
Method getThrowable returns the throwable of this CascadingStats object. |
boolean |
isEngaged()
Method isEngaged returns true when there is work being executed, if isStarted() , isSubmitted() , or isRunning() returns true; |
boolean |
isFailed()
Method isFailed returns true when the work ended with an error. |
boolean |
isFinished()
Method isFinished returns true if the current status shows no work currently being executed, if isSkipped() , isSuccessful() , isFailed() , or isStopped() returns true. |
boolean |
isPending()
Method isPending returns true if no work has been submitted. |
boolean |
isRunning()
Method isRunning returns true when work has begun. |
boolean |
isSkipped()
Method isSkipped returns true when the works was skipped. |
boolean |
isStarted()
Method isStarted returns true when work has started. |
boolean |
isStopped()
Method isStopped returns true when the user stopped the work. |
boolean |
isSubmitted()
Method isSubmitted returns true if no work has started. |
boolean |
isSuccessful()
Method isSuccessful returns true when work has completed successfully. |
void |
markFailed(Throwable throwable)
Method markFailed sets the status to CascadingStats.Status.FAILED . |
void |
markPending()
Method markPending sets the status to CascadingStats.Status.PENDING . |
protected void |
markPendingTime()
|
void |
markRunning()
Method markRunning sets the status to CascadingStats.Status.RUNNING . |
protected void |
markRunTime()
|
void |
markSkipped()
Method markSkipped sets the status to CascadingStats.Status.SKIPPED . |
void |
markStarted()
Method markStarted sets the status to CascadingStats.Status.STARTED . |
void |
markStartedThenRunning()
Method markStartedThenRunning consecutively marks the status as CascadingStats.Status.STARTED then CascadingStats.Status.RUNNING
and forces the start and running time to be equals. |
protected void |
markStartTime()
|
protected void |
markStartToRunTime()
|
void |
markStopped()
Method markStopped sets the status to CascadingStats.Status.STOPPED . |
void |
markSubmitted()
Method markSubmitted sets the status to CascadingStats.Status.SUBMITTED . |
protected void |
markSubmitTime()
|
void |
markSuccessful()
Method markSuccessful sets the status to CascadingStats.Status.SUCCESSFUL . |
void |
prepare()
Method prepare initializes this instance. |
abstract void |
recordInfo()
|
void |
recordStats()
Method recordStats forces recording of current status information. |
static void |
setStatsStoreInterval(Map<Object,Object> properties,
long intervalMs)
Method setStatsStoreInterval sets the interval time between store operations against the underlying document storage services. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final String STATS_STORE_INTERVAL
protected final ClientState clientState
Constructor Detail |
---|
protected CascadingStats(String name, ClientState clientState)
Method Detail |
---|
public static void setStatsStoreInterval(Map<Object,Object> properties, long intervalMs)
properties
- of type PropertiesintervalMs
- milliseconds between storage callspublic void prepare()
public void cleanup()
public abstract String getID()
public String getName()
public Throwable getThrowable()
public boolean isPending()
public boolean isSkipped()
FlowSkipStrategy.skipFlow(Flow)
returns true
;
public boolean isStarted()
public boolean isSubmitted()
public boolean isRunning()
public boolean isEngaged()
isStarted()
, isSubmitted()
, or isRunning()
returns true;
public boolean isSuccessful()
public boolean isFailed()
public boolean isStopped()
public boolean isFinished()
isSkipped()
, isSuccessful()
, isFailed()
, or isStopped()
returns true.
public CascadingStats.Status getStatus()
CascadingStats.Status
of this CascadingStats object.
public void recordStats()
public abstract void recordInfo()
public void markPending()
CascadingStats.Status.PENDING
.
protected void markPendingTime()
public void markStartedThenRunning()
CascadingStats.Status.STARTED
then CascadingStats.Status.RUNNING
and forces the start and running time to be equals.
protected void markStartToRunTime()
public void markStarted()
CascadingStats.Status.STARTED
.
protected void markStartTime()
public void markSubmitted()
CascadingStats.Status.SUBMITTED
.
protected void markSubmitTime()
public void markRunning()
CascadingStats.Status.RUNNING
.
protected void markRunTime()
public void markSuccessful()
CascadingStats.Status.SUCCESSFUL
.
public void markFailed(Throwable throwable)
CascadingStats.Status.FAILED
.
throwable
- of type Throwablepublic void markStopped()
CascadingStats.Status.STOPPED
.
public void markSkipped()
CascadingStats.Status.SKIPPED
.
public long getPendingTime()
public long getStartTime()
public long getSubmitTime()
public long getRunTime()
public long getFinishedTime()
public long getDuration()
getCurrentDuration()
if you wish to poll for the current duration value.
Duration is calculated as finishedTime - startTime
.
public long getCurrentDuration()
getDuration()
.
Duration is calculated as finishedTime - startTime
.
public abstract Collection<String> getCounterGroups()
public abstract Collection<String> getCounterGroupsMatching(String regex)
regex
- of type String
public abstract Collection<String> getCountersFor(String group)
group
-
public Collection<String> getCountersFor(Class<? extends Enum> group)
group
-
public abstract long getCounterValue(Enum counter)
counter
- of type Enum
public abstract long getCounterValue(String group, String counter)
group
- of type Stringcounter
- of type String
public abstract void captureDetail()
public abstract Collection getChildren()
protected String getStatsString()
public String toString()
toString
in class Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |