gojekfarm/beast

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

Summary

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

import com.gojek.beast.sink.bq.handler.BQRecordsErrorType;
import lombok.AllArgsConstructor;

@AllArgsConstructor
/**
 * stopped 200 This status code returns when a job is canceled.
 * This will be returned if a batch of insertion has some bad records
 * which caused the job to be cancelled. Bad records will have some *other* error
 * but rest of records will be marked as "stopped" and can be sent as is
 *
 * https://cloud.google.com/bigquery/docs/error-messages
 * */
public class StoppedError implements ErrorDescriptor {

    private final String reason;

    @Override
    public BQRecordsErrorType getType() {
        return BQRecordsErrorType.VALID;
    }

    @Override
    public boolean matches() {
        return reason.equals("stopped");
    }
}