DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block |
|---|
public interface SinkWriterMetricGroupSinkCommitterMetricGroup extends OperatorMetricGroup { /** The total number of committables arrived. */ Counter getNumCommittablesTotalCounter(); /** * The total number of committable failures. */ Counter getNumCommittableErrorsCounter(); /** * The total number of successful committables. */ Counter getNumCommittableSuccessCounter(); /** * The pending committables. */ Gauge getNumPendingCommittablesGauge(); } |
...