[ 
https://issues.apache.org/jira/browse/NIFI-3717?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15987028#comment-15987028
 ] 

ASF GitHub Bot commented on NIFI-3717:
--------------------------------------

Github user joewitt commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/1706#discussion_r113749967
  
    --- Diff: 
nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-service/src/main/java/org/apache/nifi/schemaregistry/hortonworks/HortonworksSchemaRegistry.java
 ---
    @@ -0,0 +1,323 @@
    +/*
    + * 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.schemaregistry.hortonworks;
    +
    +import java.io.IOException;
    +import java.util.ArrayList;
    +import java.util.Collections;
    +import java.util.EnumSet;
    +import java.util.HashMap;
    +import java.util.List;
    +import java.util.Map;
    +import java.util.Set;
    +import java.util.concurrent.ConcurrentHashMap;
    +import java.util.concurrent.ConcurrentMap;
    +import java.util.stream.Collectors;
    +
    +import org.apache.avro.LogicalType;
    +import org.apache.avro.Schema;
    +import org.apache.avro.Schema.Field;
    +import org.apache.avro.Schema.Type;
    +import org.apache.nifi.annotation.documentation.CapabilityDescription;
    +import org.apache.nifi.annotation.documentation.Tags;
    +import org.apache.nifi.annotation.lifecycle.OnDisabled;
    +import org.apache.nifi.annotation.lifecycle.OnEnabled;
    +import org.apache.nifi.components.PropertyDescriptor;
    +import org.apache.nifi.controller.AbstractControllerService;
    +import org.apache.nifi.controller.ConfigurationContext;
    +import org.apache.nifi.processor.util.StandardValidators;
    +import org.apache.nifi.reporting.InitializationException;
    +import org.apache.nifi.schema.access.SchemaField;
    +import org.apache.nifi.schemaregistry.services.SchemaRegistry;
    +import org.apache.nifi.serialization.SimpleRecordSchema;
    +import org.apache.nifi.serialization.record.DataType;
    +import org.apache.nifi.serialization.record.RecordField;
    +import org.apache.nifi.serialization.record.RecordFieldType;
    +import org.apache.nifi.serialization.record.RecordSchema;
    +import org.apache.nifi.serialization.record.SchemaIdentifier;
    +import org.apache.nifi.util.Tuple;
    +
    +import com.hortonworks.registries.schemaregistry.SchemaMetadata;
    +import com.hortonworks.registries.schemaregistry.SchemaMetadataInfo;
    +import com.hortonworks.registries.schemaregistry.SchemaVersionInfo;
    +import com.hortonworks.registries.schemaregistry.SchemaVersionKey;
    +import 
com.hortonworks.registries.schemaregistry.client.SchemaRegistryClient;
    +import 
com.hortonworks.registries.schemaregistry.errors.SchemaNotFoundException;
    +
    +@Tags({"schema", "registry", "avro", "hortonworks", "hwx"})
    +@CapabilityDescription("Provides a Schema Registry Service that interacts 
with a Hortonworks Schema Registry")
    --- End diff --
    
    i think we should link to the github page for the hwx schema registry 
project here.


> Add Schema Registry Controller Service for interacting with the Hortonworks 
> Schema Registry
> -------------------------------------------------------------------------------------------
>
>                 Key: NIFI-3717
>                 URL: https://issues.apache.org/jira/browse/NIFI-3717
>             Project: Apache NiFi
>          Issue Type: New Feature
>          Components: Extensions
>            Reporter: Mark Payne
>            Assignee: Joseph Witt
>             Fix For: 1.2.0
>
>
> Now that we have the Record Readers & Writers a la NIFI-1280, we should have 
> the ability to interact with an external Schema Registry. We currently have 
> only the AvroSchemaRegistry service but I would like to interact with the 
> Hortonworks Schema Registry service as well.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to