I need to send some information for mapper jobs running on nodes in HBase. I already have defined the data as static member in the class but it seems when the mapper is being run on the other nodes, the data is not being transferred to the nodes. Is there any way to do that?
public class GetResultFromVerticesIDMapper extends TableMapper< ResultVal, IntWritable > {
public static HashMap<Long, Boolean> vertexIDsHashMap;
public static int nResultComponents;
...
}