Merge branch 'NIFI-1356' of https://github.com/jdye64/nifi into NIFI-1356

This commit is contained in:
Mark Payne 2016-01-26 08:51:34 -05:00
commit 5ded6b223b
10 changed files with 1425 additions and 0 deletions

View File

@ -130,4 +130,21 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes combine.children="append">
<exclude>src/test/resources/*.csv</exclude>
<exclude>src/test/resources/*.json</exclude>
<exclude>src/test/resources/*.avro</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,460 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.nifi.processors.kite;
import org.apache.avro.Schema;
import org.apache.commons.lang.StringUtils;
import org.apache.nifi.annotation.behavior.InputRequirement;
import org.apache.nifi.annotation.behavior.ReadsAttribute;
import org.apache.nifi.annotation.behavior.ReadsAttributes;
import org.apache.nifi.annotation.behavior.WritesAttributes;
import org.apache.nifi.annotation.behavior.WritesAttribute;
import org.apache.nifi.annotation.documentation.CapabilityDescription;
import org.apache.nifi.annotation.documentation.Tags;
import org.apache.nifi.components.PropertyDescriptor;
import org.apache.nifi.flowfile.FlowFile;
import org.apache.nifi.flowfile.attributes.CoreAttributes;
import org.apache.nifi.processor.ProcessContext;
import org.apache.nifi.processor.ProcessSession;
import org.apache.nifi.processor.ProcessorInitializationContext;
import org.apache.nifi.processor.Relationship;
import org.apache.nifi.processor.exception.ProcessException;
import org.apache.nifi.processor.io.InputStreamCallback;
import org.apache.nifi.processor.io.OutputStreamCallback;
import org.apache.nifi.processor.util.StandardValidators;
import org.kitesdk.data.spi.JsonUtil;
import org.kitesdk.data.spi.filesystem.CSVProperties;
import org.kitesdk.data.spi.filesystem.CSVUtil;
import java.io.InputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.BufferedReader;
import java.util.List;
import java.util.ArrayList;
import java.util.Set;
import java.util.HashSet;
import java.util.Collections;
import java.util.concurrent.atomic.AtomicReference;
@Tags({"kite", "avro", "infer", "schema", "csv", "json"})
@InputRequirement(InputRequirement.Requirement.INPUT_REQUIRED)
@CapabilityDescription("Examines the contents of the incoming FlowFile to infer an Avro schema. The processor will" +
" use the Kite SDK to make an attempt to automatically generate an Avro schema from the incoming content." +
" When inferring the schema from JSON data the key names will be used in the resulting Avro schema" +
" definition. When inferring from CSV data a \"header definition\" must be present either as the first line of the incoming data" +
" or the \"header definition\" must be explicitly set in the property \"CSV Header Definition\". A \"header definition\"" +
" is simply a single comma separated line defining the names of each column. The \"header definition\" is" +
" required in order to determine the names that should be given to each field in the resulting Avro definition." +
" When inferring data types the higher order data type is always used if there is ambiguity." +
" For example when examining numerical values the type may be set to \"long\" instead of \"integer\" since a long can" +
" safely hold the value of any \"integer\". Only CSV and JSON content is currently supported for automatically inferring an" +
" Avro schema. The type of content present in the incoming FlowFile is set by using the property \"Input Content Type\"." +
" The property can either be explicitly set to CSV, JSON, or \"use mime.type value\" which will examine the" +
" value of the mime.type attribute on the incoming FlowFile to determine the type of content present.")
@ReadsAttributes({
@ReadsAttribute(attribute = "mime.type", description = "If configured by property \"Input Content Type\" will" +
" use this value to determine what sort of content should be inferred from the incoming FlowFile content."),
})
@WritesAttributes({
@WritesAttribute(attribute = "inferred.avro.schema", description = "If configured by \"Schema output destination\" to" +
" write to an attribute this will hold the resulting Avro schema from inferring the incoming FlowFile content."),
})
public class InferAvroSchema
extends AbstractKiteProcessor {
public static final String CSV_DELIMITER = ",";
public static final String USE_MIME_TYPE = "use mime.type value";
public static final String JSON_CONTENT = "json";
public static final String CSV_CONTENT = "csv";
public static final String AVRO_SCHEMA_ATTRIBUTE_NAME = "inferred.avro.schema";
public static final String DESTINATION_ATTRIBUTE = "flowfile-attribute";
public static final String DESTINATION_CONTENT = "flowfile-content";
public static final String JSON_MIME_TYPE = "application/json";
public static final String CSV_MIME_TYPE = "text/csv";
public static final String AVRO_MIME_TYPE = "application/avro-binary";
public static final String AVRO_FILE_EXTENSION = ".avro";
public static final PropertyDescriptor SCHEMA_DESTINATION = new PropertyDescriptor.Builder()
.name("Schema Output Destination")
.description("Control if Avro schema is written as a new flowfile attribute '" + AVRO_SCHEMA_ATTRIBUTE_NAME + "' " +
"or written in the flowfile content. Writing to flowfile content will overwrite any " +
"existing flowfile content.")
.required(true)
.allowableValues(DESTINATION_ATTRIBUTE, DESTINATION_CONTENT)
.defaultValue(DESTINATION_CONTENT)
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.build();
public static final PropertyDescriptor INPUT_CONTENT_TYPE = new PropertyDescriptor.Builder()
.name("Input Content Type")
.description("Content Type of data present in the incoming FlowFile's content. Only \"" +
JSON_CONTENT + "\" or \"" + CSV_CONTENT + "\" are supported." +
" If this value is set to \"" + USE_MIME_TYPE + "\" the incoming Flowfile's attribute \"" + CoreAttributes.MIME_TYPE + "\"" +
" will be used to determine the Content Type.")
.allowableValues(USE_MIME_TYPE, JSON_CONTENT, CSV_CONTENT)
.defaultValue(USE_MIME_TYPE)
.required(true)
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.build();
public static final PropertyDescriptor GET_CSV_HEADER_DEFINITION_FROM_INPUT = new PropertyDescriptor.Builder()
.name("Get CSV Header Definition From Data")
.description("This property only applies to CSV content type. If \"true\" the processor will attempt to read the CSV header definition from the" +
" first line of the input data.")
.required(true)
.allowableValues("true", "false")
.defaultValue("true")
.addValidator(StandardValidators.BOOLEAN_VALIDATOR)
.build();
public static final PropertyDescriptor CSV_HEADER_DEFINITION = new PropertyDescriptor.Builder()
.name("CSV Header Definition")
.description("This property only applies to CSV content type. Comma separated string defining the column names expected in the CSV data." +
" EX: \"fname,lname,zip,address\". The elements present in this string should be in the same order" +
" as the underlying data. Setting this property will cause the value of" +
" \"" + GET_CSV_HEADER_DEFINITION_FROM_INPUT.getName() + "\" to be ignored instead using this value.")
.required(false)
.expressionLanguageSupported(true)
.defaultValue(null)
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.build();
public static final PropertyDescriptor HEADER_LINE_SKIP_COUNT = new PropertyDescriptor.Builder()
.name("CSV Header Line Skip Count")
.description("This property only applies to CSV content type. Specifies the number of lines that should be skipped when reading the CSV data." +
" Setting this value to 0 is equivalent to saying \"the entire contents of the file should be read\". If the" +
" property \"" + GET_CSV_HEADER_DEFINITION_FROM_INPUT.getName() + "\" is set then the first line of the CSV " +
" file will be read in and treated as the CSV header definition. Since this will remove the header line from the data" +
" care should be taken to make sure the value of \"CSV header Line Skip Count\" is set to 0 to ensure" +
" no data is skipped.")
.required(true)
.defaultValue("0")
.expressionLanguageSupported(true)
.addValidator(StandardValidators.NON_NEGATIVE_INTEGER_VALIDATOR)
.build();
public static final PropertyDescriptor ESCAPE_STRING = new PropertyDescriptor.Builder()
.name("CSV Escape String")
.description("This property only applies to CSV content type. String that represents an escape sequence" +
" in the CSV FlowFile content data.")
.required(true)
.defaultValue("\\")
.expressionLanguageSupported(true)
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.build();
public static final PropertyDescriptor QUOTE_STRING = new PropertyDescriptor.Builder()
.name("CSV Quote String")
.description("This property only applies to CSV content type. String that represents a literal quote" +
" character in the CSV FlowFile content data.")
.required(true)
.defaultValue("'")
.expressionLanguageSupported(true)
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.build();
public static final PropertyDescriptor RECORD_NAME = new PropertyDescriptor.Builder()
.name("Avro Record Name")
.description("Value to be placed in the Avro record schema \"name\" field.")
.required(true)
.expressionLanguageSupported(true)
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.build();
public static final PropertyDescriptor CHARSET = new PropertyDescriptor.Builder()
.name("Charset")
.description("Character encoding of CSV data.")
.required(true)
.defaultValue("UTF-8")
.addValidator(StandardValidators.CHARACTER_SET_VALIDATOR)
.build();
public static final PropertyDescriptor PRETTY_AVRO_OUTPUT = new PropertyDescriptor.Builder()
.name("Pretty Avro Output")
.description("If true the Avro output will be formatted.")
.required(true)
.defaultValue("true")
.allowableValues("true", "false")
.addValidator(StandardValidators.BOOLEAN_VALIDATOR)
.build();
public static final PropertyDescriptor NUM_RECORDS_TO_ANALYZE = new PropertyDescriptor.Builder()
.name("Number Of Records To Analyze")
.description("This property only applies to JSON content type. The number of JSON records that should be" +
" examined to determine the Avro schema. The higher the value the better chance kite has of detecting" +
" the appropriate type. However the default value of 10 is almost always enough.")
.required(true)
.defaultValue("10")
.expressionLanguageSupported(true)
.addValidator(StandardValidators.NON_NEGATIVE_INTEGER_VALIDATOR)
.build();
public static final Relationship REL_SUCCESS = new Relationship.Builder().name("success")
.description("Successfully created Avro schema from data.").build();
public static final Relationship REL_ORIGINAL = new Relationship.Builder().name("original")
.description("Original incoming FlowFile data").build();
public static final Relationship REL_FAILURE = new Relationship.Builder().name("failure")
.description("Failed to create Avro schema from data.").build();
public static final Relationship REL_UNSUPPORTED_CONTENT = new Relationship.Builder().name("unsupported content")
.description("The content found in the flowfile content is not of the required format.").build();
private List<PropertyDescriptor> properties;
private Set<Relationship> relationships;
@Override
protected void init(final ProcessorInitializationContext context) {
final List<PropertyDescriptor> properties = new ArrayList<>();
properties.add(SCHEMA_DESTINATION);
properties.add(INPUT_CONTENT_TYPE);
properties.add(CSV_HEADER_DEFINITION);
properties.add(GET_CSV_HEADER_DEFINITION_FROM_INPUT);
properties.add(HEADER_LINE_SKIP_COUNT);
properties.add(ESCAPE_STRING);
properties.add(QUOTE_STRING);
properties.add(PRETTY_AVRO_OUTPUT);
properties.add(RECORD_NAME);
properties.add(NUM_RECORDS_TO_ANALYZE);
properties.add(CHARSET);
this.properties = Collections.unmodifiableList(properties);
final Set<Relationship> relationships = new HashSet<>();
relationships.add(REL_SUCCESS);
relationships.add(REL_FAILURE);
relationships.add(REL_ORIGINAL);
relationships.add(REL_UNSUPPORTED_CONTENT);
this.relationships = Collections.unmodifiableSet(relationships);
}
@Override
protected List<PropertyDescriptor> getSupportedPropertyDescriptors() {
return properties;
}
@Override
public Set<Relationship> getRelationships() {
return relationships;
}
@Override
public void onTrigger(final ProcessContext context, final ProcessSession session) throws ProcessException {
final FlowFile original = session.get();
if (original == null) {
return;
}
try {
final AtomicReference<String> avroSchema = new AtomicReference<>();
switch (context.getProperty(INPUT_CONTENT_TYPE).getValue()) {
case USE_MIME_TYPE:
avroSchema.set(inferAvroSchemaFromMimeType(original, context, session));
break;
case JSON_CONTENT:
avroSchema.set(inferAvroSchemaFromJSON(original, context, session));
break;
case CSV_CONTENT:
avroSchema.set(inferAvroSchemaFromCSV(original, context, session));
break;
default:
//Shouldn't be possible but just in case
session.transfer(original, REL_UNSUPPORTED_CONTENT);
break;
}
if (StringUtils.isNotEmpty(avroSchema.get())) {
String destination = context.getProperty(SCHEMA_DESTINATION).getValue();
FlowFile avroSchemaFF = null;
switch (destination) {
case DESTINATION_ATTRIBUTE:
avroSchemaFF = session.putAttribute(session.clone(original), AVRO_SCHEMA_ATTRIBUTE_NAME, avroSchema.get());
//Leaves the original CoreAttributes.MIME_TYPE in place.
break;
case DESTINATION_CONTENT:
avroSchemaFF = session.write(session.create(), new OutputStreamCallback() {
@Override
public void process(OutputStream out) throws IOException {
out.write(avroSchema.get().getBytes());
}
});
avroSchemaFF = session.putAttribute(avroSchemaFF, CoreAttributes.MIME_TYPE.key(), AVRO_MIME_TYPE);
break;
default:
break;
}
//Transfer the sessions.
avroSchemaFF = session.putAttribute(avroSchemaFF, CoreAttributes.FILENAME.key(), (original.getAttribute(CoreAttributes.FILENAME.key()) + AVRO_FILE_EXTENSION));
session.transfer(avroSchemaFF, REL_SUCCESS);
session.transfer(original, REL_ORIGINAL);
} else {
//If the avroSchema is null then the content type is unknown and therefore unsupported
session.transfer(original, REL_UNSUPPORTED_CONTENT);
}
} catch (Exception ex) {
getLogger().error("Failed to infer Avro schema for {} due to {}", new Object[] {original, ex});
session.transfer(original, REL_FAILURE);
}
}
/**
* Infers the Avro schema from the input Flowfile content. To infer an Avro schema for CSV content a header line is
* required. You can configure the processor to pull that header line from the first line of the CSV data if it is
* present OR you can manually supply the desired header line as a property value.
*
* @param inputFlowFile
* The original input FlowFile containing the CSV content as it entered this processor.
*
* @param context
* ProcessContext to pull processor configurations.
*
* @param session
* ProcessSession to transfer FlowFiles
*/
private String inferAvroSchemaFromCSV(final FlowFile inputFlowFile, final ProcessContext context, final ProcessSession session) {
//Determines the header line either from the property input or the first line of the delimited file.
final AtomicReference<String> header = new AtomicReference<>();
final AtomicReference<Boolean> hasHeader = new AtomicReference<>();
if (context.getProperty(GET_CSV_HEADER_DEFINITION_FROM_INPUT).asBoolean() == Boolean.TRUE) {
//Read the first line of the file to get the header value.
session.read(inputFlowFile, new InputStreamCallback() {
@Override
public void process(InputStream in) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(in));
header.set(br.readLine());
hasHeader.set(Boolean.TRUE);
br.close();
}
});
hasHeader.set(Boolean.TRUE);
} else {
header.set(context.getProperty(CSV_HEADER_DEFINITION).evaluateAttributeExpressions(inputFlowFile).getValue());
hasHeader.set(Boolean.FALSE);
}
//Prepares the CSVProperties for kite
final CSVProperties props = new CSVProperties.Builder()
.delimiter(CSV_DELIMITER)
.escape(context.getProperty(ESCAPE_STRING).evaluateAttributeExpressions().getValue())
.quote(context.getProperty(QUOTE_STRING).evaluateAttributeExpressions().getValue())
.header(header.get())
.hasHeader(hasHeader.get())
.linesToSkip(context.getProperty(HEADER_LINE_SKIP_COUNT).evaluateAttributeExpressions().asInteger())
.charset(context.getProperty(CHARSET).getValue())
.build();
final AtomicReference<String> avroSchema = new AtomicReference<>();
session.read(inputFlowFile, new InputStreamCallback() {
@Override
public void process(InputStream in) throws IOException {
avroSchema.set(CSVUtil
.inferSchema(
context.getProperty(RECORD_NAME).evaluateAttributeExpressions().getValue(), in, props)
.toString(context.getProperty(PRETTY_AVRO_OUTPUT).asBoolean()));
}
});
return avroSchema.get();
}
/**
* Infers the Avro schema from the input Flowfile content.
*
* @param inputFlowFile
* The original input FlowFile containing the JSON content as it entered this processor.
*
* @param context
* ProcessContext to pull processor configurations.
*
* @param session
* ProcessSession to transfer FlowFiles
*/
private String inferAvroSchemaFromJSON(final FlowFile inputFlowFile, final ProcessContext context, final ProcessSession session) {
final AtomicReference<String> avroSchema = new AtomicReference<>();
session.read(inputFlowFile, new InputStreamCallback() {
@Override
public void process(InputStream in) throws IOException {
Schema as = JsonUtil.inferSchema(
in, context.getProperty(RECORD_NAME).evaluateAttributeExpressions().getValue(),
context.getProperty(NUM_RECORDS_TO_ANALYZE).evaluateAttributeExpressions().asInteger());
avroSchema.set(as.toString(context.getProperty(PRETTY_AVRO_OUTPUT).asBoolean()));
}
});
return avroSchema.get();
}
/**
* Examines the incoming FlowFiles mime.type attribute to determine if the schema should be inferred for CSV or JSON data.
*
* @param inputFlowFile
* The original input FlowFile containing the content.
*
* @param context
* ProcessContext to pull processor configurations.
*
* @param session
* ProcessSession to transfer FlowFiles
*/
private String inferAvroSchemaFromMimeType(final FlowFile inputFlowFile, final ProcessContext context, final ProcessSession session) {
String mimeType = inputFlowFile.getAttribute(CoreAttributes.MIME_TYPE.key());
String avroSchema = "";
if (mimeType!= null) {
switch (mimeType) {
case JSON_MIME_TYPE:
getLogger().debug("Inferred content type as JSON from \"{}\" value of \"{}\"", new Object[]{CoreAttributes.MIME_TYPE.key(),
inputFlowFile.getAttribute(CoreAttributes.MIME_TYPE.key())});
avroSchema = inferAvroSchemaFromJSON(inputFlowFile, context, session);
break;
case CSV_MIME_TYPE:
getLogger().debug("Inferred content type as CSV from \"{}\" value of \"{}\"", new Object[]{CoreAttributes.MIME_TYPE.key(),
inputFlowFile.getAttribute(CoreAttributes.MIME_TYPE.key())});
avroSchema = inferAvroSchemaFromCSV(inputFlowFile, context, session);
break;
default:
getLogger().warn("Unable to infer Avro Schema from {} because its mime type is {}, " +
" which is not supported by this Processor", new Object[] {inputFlowFile, mimeType} );
break;
}
}
return avroSchema;
}
}

View File

@ -16,3 +16,4 @@ org.apache.nifi.processors.kite.StoreInKiteDataset
org.apache.nifi.processors.kite.ConvertCSVToAvro
org.apache.nifi.processors.kite.ConvertJSONToAvro
org.apache.nifi.processors.kite.ConvertAvroSchema
org.apache.nifi.processors.kite.InferAvroSchema

View File

@ -0,0 +1,176 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.nifi.processors.kite;
import org.junit.Assert;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import org.apache.nifi.flowfile.attributes.CoreAttributes;
import org.apache.nifi.util.MockFlowFile;
import org.apache.nifi.util.TestRunner;
import org.apache.nifi.util.TestRunners;
import org.junit.Before;
import org.junit.Test;
import java.io.File;
import java.io.StringWriter;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.util.HashMap;
import java.util.Map;
public class TestInferAvroSchema {
private TestRunner runner = null;
@Before
public void setup() {
runner = TestRunners.newTestRunner(InferAvroSchema.class);
//Prepare the common setup.
runner.assertNotValid();
runner.setProperty(InferAvroSchema.INPUT_CONTENT_TYPE, InferAvroSchema.USE_MIME_TYPE);
runner.setProperty(InferAvroSchema.GET_CSV_HEADER_DEFINITION_FROM_INPUT, "true");
runner.setProperty(InferAvroSchema.SCHEMA_DESTINATION, InferAvroSchema.DESTINATION_CONTENT);
runner.setProperty(InferAvroSchema.HEADER_LINE_SKIP_COUNT, "0");
runner.setProperty(InferAvroSchema.ESCAPE_STRING, "\\");
runner.setProperty(InferAvroSchema.QUOTE_STRING, "'");
runner.setProperty(InferAvroSchema.RECORD_NAME, "com.jeremydyer.contact");
runner.setProperty(InferAvroSchema.CHARSET, "UTF-8");
runner.setProperty(InferAvroSchema.PRETTY_AVRO_OUTPUT, "true");
}
@Test
public void inferAvroSchemaFromHeaderDefinitionOfCSVFile() throws Exception {
runner.assertValid();
Map<String, String> attributes = new HashMap<>();
attributes.put(CoreAttributes.MIME_TYPE.key(), "text/csv");
runner.enqueue(new File("src/test/resources/Shapes_Header.csv").toPath(), attributes);
runner.run();
runner.assertTransferCount(InferAvroSchema.REL_UNSUPPORTED_CONTENT, 0);
runner.assertTransferCount(InferAvroSchema.REL_FAILURE, 0);
runner.assertTransferCount(InferAvroSchema.REL_ORIGINAL, 1);
runner.assertTransferCount(InferAvroSchema.REL_SUCCESS, 1);
MockFlowFile flowFile = runner.getFlowFilesForRelationship(InferAvroSchema.REL_SUCCESS).get(0);
flowFile.assertContentEquals(new File("src/test/resources/Shapes_Header.csv.avro").toPath());
flowFile.assertAttributeEquals(CoreAttributes.MIME_TYPE.key(), "application/avro-binary");
}
@Test
public void inferAvroSchemaFromJSONFile() throws Exception {
runner.assertValid();
runner.setProperty(InferAvroSchema.INPUT_CONTENT_TYPE, InferAvroSchema.USE_MIME_TYPE);
//Purposely set to True to test that none of the JSON file is read which would cause issues.
runner.setProperty(InferAvroSchema.GET_CSV_HEADER_DEFINITION_FROM_INPUT, "true");
runner.setProperty(InferAvroSchema.SCHEMA_DESTINATION, InferAvroSchema.DESTINATION_ATTRIBUTE);
Map<String, String> attributes = new HashMap<>();
attributes.put(CoreAttributes.MIME_TYPE.key(), "application/json");
runner.enqueue(new File("src/test/resources/Shapes.json").toPath(), attributes);
runner.run();
runner.assertTransferCount(InferAvroSchema.REL_UNSUPPORTED_CONTENT, 0);
runner.assertTransferCount(InferAvroSchema.REL_FAILURE, 0);
runner.assertTransferCount(InferAvroSchema.REL_ORIGINAL, 1);
runner.assertTransferCount(InferAvroSchema.REL_SUCCESS, 1);
MockFlowFile data = runner.getFlowFilesForRelationship(InferAvroSchema.REL_SUCCESS).get(0);
String avroSchema = data.getAttribute(InferAvroSchema.AVRO_SCHEMA_ATTRIBUTE_NAME);
String knownSchema = FileUtils.readFileToString(new File("src/test/resources/Shapes.json.avro"));
Assert.assertEquals(avroSchema, knownSchema);
//Since that avro schema is written to an attribute this should be teh same as the original
data.assertAttributeEquals(CoreAttributes.MIME_TYPE.key(), "application/json");
}
@Test
public void inferAvroSchemaFromCSVFile() throws Exception {
runner.assertValid();
//Read in the header
StringWriter writer = new StringWriter();
IOUtils.copy((Files.newInputStream(Paths.get("src/test/resources/ShapesHeader.csv"), StandardOpenOption.READ)), writer, "UTF-8");
runner.setProperty(InferAvroSchema.CSV_HEADER_DEFINITION, writer.toString());
runner.setProperty(InferAvroSchema.GET_CSV_HEADER_DEFINITION_FROM_INPUT, "false");
Map<String, String> attributes = new HashMap<>();
attributes.put(CoreAttributes.MIME_TYPE.key(), "text/csv");
runner.enqueue(new File("src/test/resources/Shapes_NoHeader.csv").toPath(), attributes);
runner.run();
runner.assertTransferCount(InferAvroSchema.REL_UNSUPPORTED_CONTENT, 0);
runner.assertTransferCount(InferAvroSchema.REL_FAILURE, 0);
runner.assertTransferCount(InferAvroSchema.REL_ORIGINAL, 1);
runner.assertTransferCount(InferAvroSchema.REL_SUCCESS, 1);
MockFlowFile data = runner.getFlowFilesForRelationship(InferAvroSchema.REL_SUCCESS).get(0);
data.assertContentEquals(Paths.get("src/test/resources/Shapes_Header.csv.avro"));
data.assertAttributeEquals(CoreAttributes.MIME_TYPE.key(), "application/avro-binary");
}
@Test
public void inferSchemaFormHeaderLinePropertyOfProcessor() throws Exception {
final String CSV_HEADER_LINE = FileUtils.readFileToString(new File("src/test/resources/ShapesHeader.csv"));
runner.assertValid();
runner.setProperty(InferAvroSchema.GET_CSV_HEADER_DEFINITION_FROM_INPUT, "false");
runner.setProperty(InferAvroSchema.CSV_HEADER_DEFINITION, CSV_HEADER_LINE);
runner.setProperty(InferAvroSchema.HEADER_LINE_SKIP_COUNT, "1");
runner.assertValid();
Map<String, String> attributes = new HashMap<>();
attributes.put(CoreAttributes.MIME_TYPE.key(), "text/csv");
runner.enqueue((CSV_HEADER_LINE + "\nJeremy,Dyer,29,55555").getBytes(), attributes);
runner.run();
runner.assertTransferCount(InferAvroSchema.REL_FAILURE, 0);
runner.assertTransferCount(InferAvroSchema.REL_ORIGINAL, 1);
runner.assertTransferCount(InferAvroSchema.REL_SUCCESS, 1);
MockFlowFile data = runner.getFlowFilesForRelationship(InferAvroSchema.REL_SUCCESS).get(0);
data.assertAttributeEquals(CoreAttributes.MIME_TYPE.key(), "application/avro-binary");
}
@Test
public void inferSchemaFromEmptyContent() throws Exception {
runner.assertValid();
Map<String, String> attributes = new HashMap<>();
attributes.put(CoreAttributes.MIME_TYPE.key(), "text/csv");
runner.enqueue("", attributes);
runner.run();
runner.assertTransferCount(InferAvroSchema.REL_FAILURE, 1);
runner.assertTransferCount(InferAvroSchema.REL_ORIGINAL, 0);
runner.assertTransferCount(InferAvroSchema.REL_SUCCESS, 0);
}
}

View File

@ -0,0 +1,10 @@
{
"shapes":
[
{"shape": "circle", "color": "red", "width": 100, "height": 100},
{"shape": "square", "color": "red", "width": 100, "height": 100},
{"shape": "sphere", "color": "red", "width": 100, "height": 100},
{"shape": "triangle", "color": "red", "width": 100, "height": 100},
{"shape": "rectangle", "color": "red", "width": 100, "height": 100}
]
}

View File

@ -0,0 +1,34 @@
{
"type" : "record",
"name" : "contact",
"namespace" : "com.jeremydyer",
"fields" : [ {
"name" : "shapes",
"type" : {
"type" : "array",
"items" : {
"type" : "record",
"name" : "shapes",
"namespace" : "",
"fields" : [ {
"name" : "shape",
"type" : "string",
"doc" : "Type inferred from '\"circle\"'"
}, {
"name" : "color",
"type" : "string",
"doc" : "Type inferred from '\"red\"'"
}, {
"name" : "width",
"type" : "int",
"doc" : "Type inferred from '100'"
}, {
"name" : "height",
"type" : "int",
"doc" : "Type inferred from '100'"
} ]
}
},
"doc" : "Type inferred from '[{\"shape\":\"circle\",\"color\":\"red\",\"width\":100,\"height\":100},{\"shape\":\"square\",\"color\":\"red\",\"width\":100,\"height\":100},{\"shape\":\"sphere\",\"color\":\"red\",\"width\":100,\"height\":100},{\"shape\":\"triangle\",\"color\":\"red\",\"width\":100,\"height\":100},{\"shape\":\"rectangle\",\"color\":\"red\",\"width\":100,\"height\":100}]'"
} ]
}

View File

@ -0,0 +1 @@
shape,color,width,height
1 shape color width height

View File

@ -0,0 +1,352 @@
shape,color,width,height
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
1 shape color width height
2 circle red 100 100
3 square red 100 100
4 sphere red 100 100
5 triangle red 100 100
6 rectangle red 100 100
7 circle red 100 100
8 sphere red 100 100
9 circle red 100 100
10 circle red 100 100
11 triangle red 100 100
12 cone red 100 100
13 circle red 100 100
14 rectangle red 100 100
15 circle red 100 100
16 square red 100 100
17 sphere red 100 100
18 triangle red 100 100
19 rectangle red 100 100
20 circle red 100 100
21 sphere red 100 100
22 circle red 100 100
23 circle red 100 100
24 triangle red 100 100
25 cone red 100 100
26 circle red 100 100
27 rectangle red 100 100
28 circle red 100 100
29 square red 100 100
30 sphere red 100 100
31 triangle red 100 100
32 rectangle red 100 100
33 circle red 100 100
34 sphere red 100 100
35 circle red 100 100
36 circle red 100 100
37 triangle red 100 100
38 cone red 100 100
39 circle red 100 100
40 rectangle red 100 100
41 circle red 100 100
42 square red 100 100
43 sphere red 100 100
44 triangle red 100 100
45 rectangle red 100 100
46 circle red 100 100
47 sphere red 100 100
48 circle red 100 100
49 circle red 100 100
50 triangle red 100 100
51 cone red 100 100
52 circle red 100 100
53 rectangle red 100 100
54 circle red 100 100
55 square red 100 100
56 sphere red 100 100
57 triangle red 100 100
58 rectangle red 100 100
59 circle red 100 100
60 sphere red 100 100
61 circle red 100 100
62 circle red 100 100
63 triangle red 100 100
64 cone red 100 100
65 circle red 100 100
66 rectangle red 100 100
67 circle red 100 100
68 square red 100 100
69 sphere red 100 100
70 triangle red 100 100
71 rectangle red 100 100
72 circle red 100 100
73 sphere red 100 100
74 circle red 100 100
75 circle red 100 100
76 triangle red 100 100
77 cone red 100 100
78 circle red 100 100
79 rectangle red 100 100
80 circle red 100 100
81 square red 100 100
82 sphere red 100 100
83 triangle red 100 100
84 rectangle red 100 100
85 circle red 100 100
86 sphere red 100 100
87 circle red 100 100
88 circle red 100 100
89 triangle red 100 100
90 cone red 100 100
91 circle red 100 100
92 rectangle red 100 100
93 circle red 100 100
94 square red 100 100
95 sphere red 100 100
96 triangle red 100 100
97 rectangle red 100 100
98 circle red 100 100
99 sphere red 100 100
100 circle red 100 100
101 circle red 100 100
102 triangle red 100 100
103 cone red 100 100
104 circle red 100 100
105 rectangle red 100 100
106 circle red 100 100
107 square red 100 100
108 sphere red 100 100
109 triangle red 100 100
110 rectangle red 100 100
111 circle red 100 100
112 sphere red 100 100
113 circle red 100 100
114 circle red 100 100
115 triangle red 100 100
116 cone red 100 100
117 circle red 100 100
118 rectangle red 100 100
119 circle red 100 100
120 square red 100 100
121 sphere red 100 100
122 triangle red 100 100
123 rectangle red 100 100
124 circle red 100 100
125 sphere red 100 100
126 circle red 100 100
127 circle red 100 100
128 triangle red 100 100
129 cone red 100 100
130 circle red 100 100
131 rectangle red 100 100
132 circle red 100 100
133 square red 100 100
134 sphere red 100 100
135 triangle red 100 100
136 rectangle red 100 100
137 circle red 100 100
138 sphere red 100 100
139 circle red 100 100
140 circle red 100 100
141 triangle red 100 100
142 cone red 100 100
143 circle red 100 100
144 rectangle red 100 100
145 circle red 100 100
146 square red 100 100
147 sphere red 100 100
148 triangle red 100 100
149 rectangle red 100 100
150 circle red 100 100
151 sphere red 100 100
152 circle red 100 100
153 circle red 100 100
154 triangle red 100 100
155 cone red 100 100
156 circle red 100 100
157 rectangle red 100 100
158 circle red 100 100
159 square red 100 100
160 sphere red 100 100
161 triangle red 100 100
162 rectangle red 100 100
163 circle red 100 100
164 sphere red 100 100
165 circle red 100 100
166 circle red 100 100
167 triangle red 100 100
168 cone red 100 100
169 circle red 100 100
170 rectangle red 100 100
171 circle red 100 100
172 square red 100 100
173 sphere red 100 100
174 triangle red 100 100
175 rectangle red 100 100
176 circle red 100 100
177 sphere red 100 100
178 circle red 100 100
179 circle red 100 100
180 triangle red 100 100
181 cone red 100 100
182 circle red 100 100
183 rectangle red 100 100
184 circle red 100 100
185 square red 100 100
186 sphere red 100 100
187 triangle red 100 100
188 rectangle red 100 100
189 circle red 100 100
190 sphere red 100 100
191 circle red 100 100
192 circle red 100 100
193 triangle red 100 100
194 cone red 100 100
195 circle red 100 100
196 rectangle red 100 100
197 circle red 100 100
198 square red 100 100
199 sphere red 100 100
200 triangle red 100 100
201 rectangle red 100 100
202 circle red 100 100
203 sphere red 100 100
204 circle red 100 100
205 circle red 100 100
206 triangle red 100 100
207 cone red 100 100
208 circle red 100 100
209 rectangle red 100 100
210 circle red 100 100
211 square red 100 100
212 sphere red 100 100
213 triangle red 100 100
214 rectangle red 100 100
215 circle red 100 100
216 sphere red 100 100
217 circle red 100 100
218 circle red 100 100
219 triangle red 100 100
220 cone red 100 100
221 circle red 100 100
222 rectangle red 100 100
223 circle red 100 100
224 square red 100 100
225 sphere red 100 100
226 triangle red 100 100
227 rectangle red 100 100
228 circle red 100 100
229 sphere red 100 100
230 circle red 100 100
231 circle red 100 100
232 triangle red 100 100
233 cone red 100 100
234 circle red 100 100
235 rectangle red 100 100
236 circle red 100 100
237 square red 100 100
238 sphere red 100 100
239 triangle red 100 100
240 rectangle red 100 100
241 circle red 100 100
242 sphere red 100 100
243 circle red 100 100
244 circle red 100 100
245 triangle red 100 100
246 cone red 100 100
247 circle red 100 100
248 rectangle red 100 100
249 circle red 100 100
250 square red 100 100
251 sphere red 100 100
252 triangle red 100 100
253 rectangle red 100 100
254 circle red 100 100
255 sphere red 100 100
256 circle red 100 100
257 circle red 100 100
258 triangle red 100 100
259 cone red 100 100
260 circle red 100 100
261 rectangle red 100 100
262 circle red 100 100
263 square red 100 100
264 sphere red 100 100
265 triangle red 100 100
266 rectangle red 100 100
267 circle red 100 100
268 sphere red 100 100
269 circle red 100 100
270 circle red 100 100
271 triangle red 100 100
272 cone red 100 100
273 circle red 100 100
274 rectangle red 100 100
275 circle red 100 100
276 square red 100 100
277 sphere red 100 100
278 triangle red 100 100
279 rectangle red 100 100
280 circle red 100 100
281 sphere red 100 100
282 circle red 100 100
283 circle red 100 100
284 triangle red 100 100
285 cone red 100 100
286 circle red 100 100
287 rectangle red 100 100
288 circle red 100 100
289 square red 100 100
290 sphere red 100 100
291 triangle red 100 100
292 rectangle red 100 100
293 circle red 100 100
294 sphere red 100 100
295 circle red 100 100
296 circle red 100 100
297 triangle red 100 100
298 cone red 100 100
299 circle red 100 100
300 rectangle red 100 100
301 circle red 100 100
302 square red 100 100
303 sphere red 100 100
304 triangle red 100 100
305 rectangle red 100 100
306 circle red 100 100
307 sphere red 100 100
308 circle red 100 100
309 circle red 100 100
310 triangle red 100 100
311 cone red 100 100
312 circle red 100 100
313 rectangle red 100 100
314 circle red 100 100
315 square red 100 100
316 sphere red 100 100
317 triangle red 100 100
318 rectangle red 100 100
319 circle red 100 100
320 sphere red 100 100
321 circle red 100 100
322 circle red 100 100
323 triangle red 100 100
324 cone red 100 100
325 circle red 100 100
326 rectangle red 100 100
327 circle red 100 100
328 square red 100 100
329 sphere red 100 100
330 triangle red 100 100
331 rectangle red 100 100
332 circle red 100 100
333 sphere red 100 100
334 circle red 100 100
335 circle red 100 100
336 triangle red 100 100
337 cone red 100 100
338 circle red 100 100
339 rectangle red 100 100
340 circle red 100 100
341 square red 100 100
342 sphere red 100 100
343 triangle red 100 100
344 rectangle red 100 100
345 circle red 100 100
346 sphere red 100 100
347 circle red 100 100
348 circle red 100 100
349 triangle red 100 100
350 cone red 100 100
351 circle red 100 100
352 rectangle red 100 100

View File

@ -0,0 +1,351 @@
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
circle,red,100,100
square,red,100,100
sphere,red,100,100
triangle,red,100,100
rectangle,red,100,100
circle,red,100,100
sphere,red,100,100
circle,red,100,100
circle,red,100,100
triangle,red,100,100
cone,red,100,100
circle,red,100,100
rectangle,red,100,100
1 circle red 100 100
2 square red 100 100
3 sphere red 100 100
4 triangle red 100 100
5 rectangle red 100 100
6 circle red 100 100
7 sphere red 100 100
8 circle red 100 100
9 circle red 100 100
10 triangle red 100 100
11 cone red 100 100
12 circle red 100 100
13 rectangle red 100 100
14 circle red 100 100
15 square red 100 100
16 sphere red 100 100
17 triangle red 100 100
18 rectangle red 100 100
19 circle red 100 100
20 sphere red 100 100
21 circle red 100 100
22 circle red 100 100
23 triangle red 100 100
24 cone red 100 100
25 circle red 100 100
26 rectangle red 100 100
27 circle red 100 100
28 square red 100 100
29 sphere red 100 100
30 triangle red 100 100
31 rectangle red 100 100
32 circle red 100 100
33 sphere red 100 100
34 circle red 100 100
35 circle red 100 100
36 triangle red 100 100
37 cone red 100 100
38 circle red 100 100
39 rectangle red 100 100
40 circle red 100 100
41 square red 100 100
42 sphere red 100 100
43 triangle red 100 100
44 rectangle red 100 100
45 circle red 100 100
46 sphere red 100 100
47 circle red 100 100
48 circle red 100 100
49 triangle red 100 100
50 cone red 100 100
51 circle red 100 100
52 rectangle red 100 100
53 circle red 100 100
54 square red 100 100
55 sphere red 100 100
56 triangle red 100 100
57 rectangle red 100 100
58 circle red 100 100
59 sphere red 100 100
60 circle red 100 100
61 circle red 100 100
62 triangle red 100 100
63 cone red 100 100
64 circle red 100 100
65 rectangle red 100 100
66 circle red 100 100
67 square red 100 100
68 sphere red 100 100
69 triangle red 100 100
70 rectangle red 100 100
71 circle red 100 100
72 sphere red 100 100
73 circle red 100 100
74 circle red 100 100
75 triangle red 100 100
76 cone red 100 100
77 circle red 100 100
78 rectangle red 100 100
79 circle red 100 100
80 square red 100 100
81 sphere red 100 100
82 triangle red 100 100
83 rectangle red 100 100
84 circle red 100 100
85 sphere red 100 100
86 circle red 100 100
87 circle red 100 100
88 triangle red 100 100
89 cone red 100 100
90 circle red 100 100
91 rectangle red 100 100
92 circle red 100 100
93 square red 100 100
94 sphere red 100 100
95 triangle red 100 100
96 rectangle red 100 100
97 circle red 100 100
98 sphere red 100 100
99 circle red 100 100
100 circle red 100 100
101 triangle red 100 100
102 cone red 100 100
103 circle red 100 100
104 rectangle red 100 100
105 circle red 100 100
106 square red 100 100
107 sphere red 100 100
108 triangle red 100 100
109 rectangle red 100 100
110 circle red 100 100
111 sphere red 100 100
112 circle red 100 100
113 circle red 100 100
114 triangle red 100 100
115 cone red 100 100
116 circle red 100 100
117 rectangle red 100 100
118 circle red 100 100
119 square red 100 100
120 sphere red 100 100
121 triangle red 100 100
122 rectangle red 100 100
123 circle red 100 100
124 sphere red 100 100
125 circle red 100 100
126 circle red 100 100
127 triangle red 100 100
128 cone red 100 100
129 circle red 100 100
130 rectangle red 100 100
131 circle red 100 100
132 square red 100 100
133 sphere red 100 100
134 triangle red 100 100
135 rectangle red 100 100
136 circle red 100 100
137 sphere red 100 100
138 circle red 100 100
139 circle red 100 100
140 triangle red 100 100
141 cone red 100 100
142 circle red 100 100
143 rectangle red 100 100
144 circle red 100 100
145 square red 100 100
146 sphere red 100 100
147 triangle red 100 100
148 rectangle red 100 100
149 circle red 100 100
150 sphere red 100 100
151 circle red 100 100
152 circle red 100 100
153 triangle red 100 100
154 cone red 100 100
155 circle red 100 100
156 rectangle red 100 100
157 circle red 100 100
158 square red 100 100
159 sphere red 100 100
160 triangle red 100 100
161 rectangle red 100 100
162 circle red 100 100
163 sphere red 100 100
164 circle red 100 100
165 circle red 100 100
166 triangle red 100 100
167 cone red 100 100
168 circle red 100 100
169 rectangle red 100 100
170 circle red 100 100
171 square red 100 100
172 sphere red 100 100
173 triangle red 100 100
174 rectangle red 100 100
175 circle red 100 100
176 sphere red 100 100
177 circle red 100 100
178 circle red 100 100
179 triangle red 100 100
180 cone red 100 100
181 circle red 100 100
182 rectangle red 100 100
183 circle red 100 100
184 square red 100 100
185 sphere red 100 100
186 triangle red 100 100
187 rectangle red 100 100
188 circle red 100 100
189 sphere red 100 100
190 circle red 100 100
191 circle red 100 100
192 triangle red 100 100
193 cone red 100 100
194 circle red 100 100
195 rectangle red 100 100
196 circle red 100 100
197 square red 100 100
198 sphere red 100 100
199 triangle red 100 100
200 rectangle red 100 100
201 circle red 100 100
202 sphere red 100 100
203 circle red 100 100
204 circle red 100 100
205 triangle red 100 100
206 cone red 100 100
207 circle red 100 100
208 rectangle red 100 100
209 circle red 100 100
210 square red 100 100
211 sphere red 100 100
212 triangle red 100 100
213 rectangle red 100 100
214 circle red 100 100
215 sphere red 100 100
216 circle red 100 100
217 circle red 100 100
218 triangle red 100 100
219 cone red 100 100
220 circle red 100 100
221 rectangle red 100 100
222 circle red 100 100
223 square red 100 100
224 sphere red 100 100
225 triangle red 100 100
226 rectangle red 100 100
227 circle red 100 100
228 sphere red 100 100
229 circle red 100 100
230 circle red 100 100
231 triangle red 100 100
232 cone red 100 100
233 circle red 100 100
234 rectangle red 100 100
235 circle red 100 100
236 square red 100 100
237 sphere red 100 100
238 triangle red 100 100
239 rectangle red 100 100
240 circle red 100 100
241 sphere red 100 100
242 circle red 100 100
243 circle red 100 100
244 triangle red 100 100
245 cone red 100 100
246 circle red 100 100
247 rectangle red 100 100
248 circle red 100 100
249 square red 100 100
250 sphere red 100 100
251 triangle red 100 100
252 rectangle red 100 100
253 circle red 100 100
254 sphere red 100 100
255 circle red 100 100
256 circle red 100 100
257 triangle red 100 100
258 cone red 100 100
259 circle red 100 100
260 rectangle red 100 100
261 circle red 100 100
262 square red 100 100
263 sphere red 100 100
264 triangle red 100 100
265 rectangle red 100 100
266 circle red 100 100
267 sphere red 100 100
268 circle red 100 100
269 circle red 100 100
270 triangle red 100 100
271 cone red 100 100
272 circle red 100 100
273 rectangle red 100 100
274 circle red 100 100
275 square red 100 100
276 sphere red 100 100
277 triangle red 100 100
278 rectangle red 100 100
279 circle red 100 100
280 sphere red 100 100
281 circle red 100 100
282 circle red 100 100
283 triangle red 100 100
284 cone red 100 100
285 circle red 100 100
286 rectangle red 100 100
287 circle red 100 100
288 square red 100 100
289 sphere red 100 100
290 triangle red 100 100
291 rectangle red 100 100
292 circle red 100 100
293 sphere red 100 100
294 circle red 100 100
295 circle red 100 100
296 triangle red 100 100
297 cone red 100 100
298 circle red 100 100
299 rectangle red 100 100
300 circle red 100 100
301 square red 100 100
302 sphere red 100 100
303 triangle red 100 100
304 rectangle red 100 100
305 circle red 100 100
306 sphere red 100 100
307 circle red 100 100
308 circle red 100 100
309 triangle red 100 100
310 cone red 100 100
311 circle red 100 100
312 rectangle red 100 100
313 circle red 100 100
314 square red 100 100
315 sphere red 100 100
316 triangle red 100 100
317 rectangle red 100 100
318 circle red 100 100
319 sphere red 100 100
320 circle red 100 100
321 circle red 100 100
322 triangle red 100 100
323 cone red 100 100
324 circle red 100 100
325 rectangle red 100 100
326 circle red 100 100
327 square red 100 100
328 sphere red 100 100
329 triangle red 100 100
330 rectangle red 100 100
331 circle red 100 100
332 sphere red 100 100
333 circle red 100 100
334 circle red 100 100
335 triangle red 100 100
336 cone red 100 100
337 circle red 100 100
338 rectangle red 100 100
339 circle red 100 100
340 square red 100 100
341 sphere red 100 100
342 triangle red 100 100
343 rectangle red 100 100
344 circle red 100 100
345 sphere red 100 100
346 circle red 100 100
347 circle red 100 100
348 triangle red 100 100
349 cone red 100 100
350 circle red 100 100
351 rectangle red 100 100

View File

@ -0,0 +1,23 @@
{
"type" : "record",
"name" : "contact",
"namespace" : "com.jeremydyer",
"doc" : "Schema generated by Kite",
"fields" : [ {
"name" : "shape",
"type" : "string",
"doc" : "Type inferred from 'circle'"
}, {
"name" : "color",
"type" : "string",
"doc" : "Type inferred from 'red'"
}, {
"name" : "width",
"type" : "long",
"doc" : "Type inferred from '100'"
}, {
"name" : "height",
"type" : "long",
"doc" : "Type inferred from '100'"
} ]
}