public interface JobReport
A Job report is used to report status on a WriteBatcher or a QueryBatcher job at any point of time after it is started and provide a snapshot of the job’s status at that time.
| Modifier and Type | Method and Description |
|---|---|
long |
getFailureBatchesCount()
WriteBatcher : gets the number of batches that the job failed to writeQueryBatcher : gets the number of query attempts that failed (same as getFailureEventsCount) |
long |
getFailureEventsCount()
WriteBatcher : gets the number of documents that were sent but failed to writeQueryBatcher : gets the number of query attempts that failed (same as getFailureBatchesCount) |
Calendar |
getReportTimestamp()
Gets the timestamp at which this instance of JobReport was created
|
long |
getSuccessBatchesCount()
WriteBatcher : gets the number of batches written to the databaseQueryBatcher : gets the number of batches of URIs read from the database |
long |
getSuccessEventsCount()
WriteBatcher : gets the number of documents written to the databaseQueryBatcher : gets the number of uris read from the database |
long getSuccessEventsCount()
WriteBatcher : gets the number of documents written to the database
QueryBatcher : gets the number of uris read from the database
long getFailureEventsCount()
WriteBatcher : gets the number of documents that were sent but failed to write
QueryBatcher : gets the number of query attempts that failed (same as getFailureBatchesCount)
long getSuccessBatchesCount()
WriteBatcher : gets the number of batches written to the database
QueryBatcher : gets the number of batches of URIs read from the database
long getFailureBatchesCount()
WriteBatcher : gets the number of batches that the job failed to write
QueryBatcher : gets the number of query attempts that failed (same as getFailureEventsCount)
Calendar getReportTimestamp()
Gets the timestamp at which this instance of JobReport was created
Copyright © 2013-2017 MarkLogic Corporation.