All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
co.cask.cdap.etl.mock.batch.joiner.DupeFlagger Maven / Gradle / Ivy
/*
* Copyright © 2016 Cask Data, Inc.
*
* 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 co.cask.cdap.etl.mock.batch.joiner;
import co.cask.cdap.api.annotation.Description;
import co.cask.cdap.api.annotation.Macro;
import co.cask.cdap.api.annotation.Name;
import co.cask.cdap.api.annotation.Plugin;
import co.cask.cdap.api.data.format.StructuredRecord;
import co.cask.cdap.api.data.schema.Schema;
import co.cask.cdap.api.plugin.PluginClass;
import co.cask.cdap.api.plugin.PluginConfig;
import co.cask.cdap.api.plugin.PluginPropertyField;
import co.cask.cdap.etl.api.JoinConfig;
import co.cask.cdap.etl.api.JoinElement;
import co.cask.cdap.etl.api.MultiInputPipelineConfigurer;
import co.cask.cdap.etl.api.MultiInputStageConfigurer;
import co.cask.cdap.etl.api.batch.BatchJoiner;
import co.cask.cdap.etl.proto.v2.ETLPlugin;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import javax.annotation.Nullable;
/**
* Plugin that takes exactly 2 inputs and flags records in one input if they also appear in the other.
*/
@Plugin(type = BatchJoiner.PLUGIN_TYPE)
@Name(DupeFlagger.NAME)
public class DupeFlagger extends BatchJoiner {
public static final String NAME = "DupeFlagger";
public static final PluginClass PLUGIN_CLASS = getPluginClass();
private final Config config;
public DupeFlagger(Config config) {
this.config = config;
}
@Override
public void configurePipeline(MultiInputPipelineConfigurer pipelineConfigurer) {
MultiInputStageConfigurer stageConfigurer = pipelineConfigurer.getMultiInputStageConfigurer();
Map inputSchemas = stageConfigurer.getInputSchemas();
if (inputSchemas.size() != 2) {
throw new IllegalArgumentException(String.format(
"The DupeFlagger plugin must have exactly two inputs with the same schema, but found %d inputs.",
inputSchemas.size()));
}
Iterator schemaIterator = inputSchemas.values().iterator();
Schema schema1 = schemaIterator.next();
Schema schema2 = schemaIterator.next();
if (!schema1.equals(schema2)) {
throw new IllegalArgumentException("The DupeFlagger plugin must have exactly two inputs with the same schema, " +
"but the schemas are not the same.");
}
if (!config.containsMacro("keep")) {
if (!inputSchemas.keySet().contains(config.keep)) {
throw new IllegalArgumentException(config.keep + " is not an input.");
}
}
if (!config.containsMacro("flagField")) {
stageConfigurer.setOutputSchema(getOutputSchema(schema1));
}
}
private Schema getOutputSchema(Schema inputSchema) {
List fields = new ArrayList<>();
fields.addAll(inputSchema.getFields());
fields.add(Schema.Field.of(config.flagField, Schema.of(Schema.Type.BOOLEAN)));
return Schema.recordOf(inputSchema.getRecordName() + ".flagged", fields);
}
@Override
public StructuredRecord joinOn(String stageName, StructuredRecord record) throws Exception {
return record;
}
@Override
public JoinConfig getJoinConfig() {
return new JoinConfig(Collections.singletonList(config.keep));
}
@Override
public StructuredRecord merge(StructuredRecord joinKey, Iterable> joinRow) {
StructuredRecord record = null;
boolean containsDupe = false;
for (JoinElement element : joinRow) {
if (element.getStageName().equals(config.keep)) {
record = element.getInputRecord();
} else {
containsDupe = true;
}
}
if (record == null) {
// can only happen if 'keep' was a macro and did not evaluate to one of the inputs
throw new IllegalArgumentException("No record for " + config.keep + " was found.");
}
Schema outputSchema = getOutputSchema(record.getSchema());
StructuredRecord.Builder outputBuilder = StructuredRecord.builder(outputSchema)
.set(config.flagField, containsDupe);
for (Schema.Field field : record.getSchema().getFields()) {
outputBuilder.set(field.getName(), record.get(field.getName()));
}
return outputBuilder.build();
}
/**
* Config for except plugin
*/
public static class Config extends PluginConfig {
@Macro
@Description("input to keep")
private final String keep;
@Macro
@Nullable
@Description("name of the flag field")
private final String flagField;
public Config() {
keep = null;
flagField = "isDupe";
}
public Config(String keep, String flagField) {
this.keep = keep;
this.flagField = flagField;
}
}
public static ETLPlugin getPlugin(String keep, String flagField) {
Map properties = new HashMap<>();
properties.put("keep", keep);
properties.put("flagField", flagField);
return new ETLPlugin(DupeFlagger.NAME, BatchJoiner.PLUGIN_TYPE, properties, null);
}
private static PluginClass getPluginClass() {
Map properties = new HashMap<>();
properties.put("keep", new PluginPropertyField("keep", "input to keep", "string", true, false));
properties.put("flagField", new PluginPropertyField("flagField", "name of the flag field", "string", false, true));
return new PluginClass(BatchJoiner.PLUGIN_TYPE, DupeFlagger.NAME, "", DupeFlagger.class.getName(),
"config", properties);
}
}