com.hazelcast.mapreduce.Mapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hazelcast-all Show documentation
Show all versions of hazelcast-all Show documentation
Kubernetes Service Discovery for Hazelcast Discovery SPI
/*
* Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
*
* 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 com.hazelcast.mapreduce;
import com.hazelcast.nio.serialization.BinaryInterface;
import java.io.Serializable;
/**
*
* The interface Mapper is used to build mappers for the {@link Job}. Most mappers will only need to
* implement this interface and the {@link #map(Object, Object, Context)} method to collect and emit needed
* key-value pairs.
* For more complex algorithms there is the possibility to implement the {@link LifecycleMapper} interface and
* override the {@link LifecycleMapper#initialize(Context)} and {@link LifecycleMapper#finalized(Context)}
* methods as well.
*
* A simple mapper could look like the following example:
*
* public class MyMapper extends Mapper<Integer, Integer, String, Integer>
* {
* public void map( Integer key, Integer value, Context<String, Integer> context )
* {
* context.emit( String.valueOf( key ), value );
* }
* }
*
*
*
* If you want to know more about the implementation of MapReduce algorithms read the {@see Google Whitepaper on MapReduce}.
*
*
* @param The type of key used in the {@link KeyValueSource}
* @param The type of value used in the {@link KeyValueSource}
* @param The key type for mapped results
* @param The value type for mapped results
* @since 3.2
* @deprecated MapReduce is deprecated and will be removed in 4.0.
* For map aggregations, you can use {@link com.hazelcast.aggregation.Aggregator} on IMap.
* For general data processing, it is superseded by Hazelcast Jet.
*/
@Deprecated
@BinaryInterface
public interface Mapper
extends Serializable {
/**
* The map method is called for every single key-value pair in the bound {@link KeyValueSource} instance
* on this cluster node and partition.
* Due to its nature of a DataGrid, Hazelcast distributes values all over the cluster and so this method
* is executed on multiple servers at the same time.
* If you want to know more about the implementation of MapReduce algorithms read the {@see Google Whitepaper on MapReduce}.
*
* @param key key to map
* @param value value to map
* @param context Context to be used for emitting values
*/
void map(KeyIn key, ValueIn value, Context context);
}