![JAR search and dependency download from the Maven repository](/logo.png)
com.thinkaurelius.titan.hadoop.mapreduce.sideeffect.CommitEdgesMap Maven / Gradle / Ivy
package com.thinkaurelius.titan.hadoop.mapreduce.sideeffect;
import static com.thinkaurelius.titan.hadoop.compat.HadoopCompatLoader.DEFAULT_COMPAT;
import java.io.IOException;
import java.util.Iterator;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.io.NullWritable;
import org.apache.hadoop.mapreduce.Mapper;
import com.thinkaurelius.titan.hadoop.FaunusVertex;
import com.thinkaurelius.titan.hadoop.StandardFaunusEdge;
import com.thinkaurelius.titan.hadoop.Tokens;
import com.thinkaurelius.titan.hadoop.mapreduce.util.EmptyConfiguration;
import com.tinkerpop.blueprints.Direction;
import com.tinkerpop.blueprints.Edge;
/**
* @author Marko A. Rodriguez (http://markorodriguez.com)
*/
public class CommitEdgesMap {
public static final String ACTION = Tokens.makeNamespace(CommitEdgesMap.class) + ".action";
public enum Counters {
OUT_EDGES_DROPPED,
OUT_EDGES_KEPT,
IN_EDGES_DROPPED,
IN_EDGES_KEPT
}
public static Configuration createConfiguration(final Tokens.Action action) {
final Configuration configuration = new EmptyConfiguration();
configuration.set(ACTION, action.name());
return configuration;
}
public static class Map extends Mapper {
private boolean drop;
@Override
public void setup(final Mapper.Context context) throws IOException, InterruptedException {
this.drop = Tokens.Action.valueOf(context.getConfiguration().get(ACTION)).equals(Tokens.Action.DROP);
}
@Override
public void map(final NullWritable key, final FaunusVertex value, final Mapper.Context context) throws IOException, InterruptedException {
Iterator itty = value.getEdges(Direction.IN).iterator();
long edgesKept = 0;
long edgesDropped = 0;
while (itty.hasNext()) {
if (this.drop) {
if ((((StandardFaunusEdge) itty.next()).hasPaths())) {
itty.remove();
edgesDropped++;
} else
edgesKept++;
} else {
if (!(((StandardFaunusEdge) itty.next()).hasPaths())) {
itty.remove();
edgesDropped++;
} else
edgesKept++;
}
}
DEFAULT_COMPAT.incrementContextCounter(context, Counters.IN_EDGES_DROPPED, edgesDropped);
DEFAULT_COMPAT.incrementContextCounter(context, Counters.IN_EDGES_KEPT, edgesKept);
///////////////////
itty = value.getEdges(Direction.OUT).iterator();
edgesKept = 0;
edgesDropped = 0;
while (itty.hasNext()) {
if (this.drop) {
if ((((StandardFaunusEdge) itty.next()).hasPaths())) {
itty.remove();
edgesDropped++;
} else
edgesKept++;
} else {
if (!(((StandardFaunusEdge) itty.next()).hasPaths())) {
itty.remove();
edgesDropped++;
} else
edgesKept++;
}
}
DEFAULT_COMPAT.incrementContextCounter(context, Counters.OUT_EDGES_DROPPED, edgesDropped);
DEFAULT_COMPAT.incrementContextCounter(context, Counters.OUT_EDGES_KEPT, edgesKept);
context.write(NullWritable.get(), value);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy