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

    
https://github.com/apache/incubator-apex-malhar/pull/235#discussion_r60868927
  
    --- Diff: 
contrib/src/main/java/com/datatorrent/contrib/enrich/MapEnricher.java ---
    @@ -0,0 +1,150 @@
    +/**
    + * 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 com.datatorrent.contrib.enrich;
    +
    +import java.util.ArrayList;
    +import java.util.List;
    +import java.util.Map;
    +
    +import org.apache.hadoop.classification.InterfaceStability;
    +
    +import com.datatorrent.api.DefaultInputPort;
    +import com.datatorrent.api.DefaultOutputPort;
    +import com.datatorrent.lib.util.FieldInfo;
    +
    +/**
    + * This class takes a HashMap tuple as input and extract the value of the 
lookupKey configured
    + * for this operator. It then does a lookup in file/DB to find matching 
entry and all key-value pairs
    + * specified in the file/DB or based on include fields are added to 
original tuple.
    + * <p>
    + * Example
    + * The file contains data in json format, one entry per line. during setup 
entire file is read and
    + * kept in memory for quick lookup.
    + * If file contains following lines, and operator is configured with 
lookup key "productId"
    + * <p>
    + * { "productId": 1, "productCategory": 3 }
    + * { "productId": 4, "productCategory": 10 }
    + * { "productId": 3, "productCategory": 1 }
    + * </p>
    + * And input tuple is
    + * <p>
    + * { amount=10.0, channelId=4, productId=3 }
    + * </p>
    + * The tuple is modified as below before operator emits it on output port.
    + * <p>
    + * { amount=10.0, channelId=4, productId=3, productCategory=1 }
    + * </p>
    + *
    + * @displayName MapEnrichment
    + * @category Database
    + * @tags enrichment, lookup, map
    + */
    [email protected]
    +public class MapEnricher extends AbstractEnricher<Map<String, Object>, 
Map<String, Object>>
    +{
    +  public final transient DefaultInputPort<Map<String, Object>> input = new 
DefaultInputPort<Map<String, Object>>()
    +  {
    +    @Override
    +    public void process(Map<String, Object> obj)
    +    {
    +      processTuple(obj);
    +    }
    +  };
    +
    +  public final transient DefaultOutputPort<Map<String, Object>> output = 
new DefaultOutputPort<>();
    +
    +  private void processTuple(Map<String, Object> obj)
    --- End diff --
    
    Protected?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to