All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.gov.gchq.gaffer.spark.operation.javardd.SplitStoreFromJavaRDDOfElements Maven / Gradle / Ivy

There is a newer version: 2.3.1
Show newest version
/*
 * Copyright 2020 Crown Copyright
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package uk.gov.gchq.gaffer.spark.operation.javardd;

import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang3.exception.CloneFailedException;
import org.apache.spark.api.java.JavaRDD;

import uk.gov.gchq.gaffer.data.element.Element;
import uk.gov.gchq.gaffer.operation.Operation;
import uk.gov.gchq.gaffer.operation.io.Input;
import uk.gov.gchq.koryphe.Since;
import uk.gov.gchq.koryphe.Summary;
import uk.gov.gchq.koryphe.ValidationResult;

import java.util.Map;

@JsonPropertyOrder(value = {"class", "input"}, alphabetic = true)
@Since("1.12.0")
@Summary("Sets split points on a store derived from sampling a JavaRDD of elements")
public class SplitStoreFromJavaRDDOfElements implements
        Operation,
        Input> {

    private JavaRDD input;
    private Double fractionToSample;
    private Integer maxSampleSize;
    private Integer numSplits;
    private Map options;

    @Override
    public ValidationResult validate() {

        final ValidationResult result = Input.super.validate();

        if (null != fractionToSample && (fractionToSample <= 0 || fractionToSample > 1)) {
            result.addError("fractionToSample must be null or between 0 exclusive and 1 inclusive");
        }
        if (null != maxSampleSize && maxSampleSize < 1) {
            result.addError("maxSampleSize must be null or greater than 0");
        }
        if (null != numSplits && numSplits < 1) {
            result.addError("numSplits must be null or greater than 0");
        }

        return result;
    }

    @Override
    public JavaRDD getInput() {
        return input;
    }

    @Override
    public void setInput(final JavaRDD input) {
        this.input = input;
    }

    @Override
    public Map getOptions() {
        return options;
    }

    @Override
    public void setOptions(final Map options) {
        this.options = options;
    }

    @Override
    public Operation shallowClone() throws CloneFailedException {
        return new SplitStoreFromJavaRDDOfElements.Builder()
                .input(input)
                .fractionToSample(fractionToSample)
                .maxSampleSize(maxSampleSize)
                .numSplits(numSplits)
                .options(options)
                .build();
    }

    public Double getFractionToSample() {
        return fractionToSample;
    }

    public void setFractionToSample(final Double fractionToSample) {
        this.fractionToSample = fractionToSample;
    }

    public Integer getMaxSampleSize() {
        return maxSampleSize;
    }

    public void setMaxSampleSize(final Integer maxSampleSize) {
        this.maxSampleSize = maxSampleSize;
    }

    public Integer getNumSplits() {
        return numSplits;
    }

    public void setNumSplits(final Integer numSplits) {
        this.numSplits = numSplits;
    }

    public static class Builder extends BaseBuilder
            implements Input.Builder, Builder>,
            Operation.Builder {
        public Builder() {
            super(new SplitStoreFromJavaRDDOfElements());
        }

        public SplitStoreFromJavaRDDOfElements.Builder fractionToSample(final Double fractionToSample) {
            _getOp().setFractionToSample(fractionToSample);
            return this;
        }

        public SplitStoreFromJavaRDDOfElements.Builder maxSampleSize(final Integer maxSampleSize) {
            _getOp().setMaxSampleSize(maxSampleSize);
            return this;
        }

        public SplitStoreFromJavaRDDOfElements.Builder numSplits(final Integer numSplits) {
            _getOp().setNumSplits(numSplits);
            return this;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy