gojekfarm/beast

View on GitHub
src/main/java/com/gojek/beast/sink/bq/handler/BQRecordsErrorType.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.gojek.beast.sink.bq.handler;

/**
 * Models the Big Query records status.
 */
public enum BQRecordsErrorType {

    /**
     * BQ failures with valid data.
     */
    VALID,

    /**
     * BQ failures due to Out of Bounds errors on partition keys.
     */
    OOB,

    /**
     * BQ errors due to invalid schema/data.
     */
    INVALID,

    /**
     * Unknown error type.
     */
    UNKNOWN,
}