Java Code Examples for org.apache.flink.graph.Graph#joinWithEdges()
The following examples show how to use
org.apache.flink.graph.Graph#joinWithEdges() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: JoinWithEdgesITCase.java From flink with Apache License 2.0 | 6 votes |
@Test public void testWithCustomType() throws Exception { /* * Test joinWithEdges with a DataSet containing custom parametrised type input values */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(TestGraphUtils.getLongLongCustomTuple3Data(env), new CustomValueMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,10\n" + "1,3,20\n" + "2,3,30\n" + "3,4,40\n" + "3,5,35\n" + "4,5,45\n" + "5,1,51\n"; compareResultAsTuples(result, expectedResult); }
Example 2
Source File: JoinWithEdgesITCase.java From Flink-CEPplus with Apache License 2.0 | 6 votes |
@Test public void testWithCustomType() throws Exception { /* * Test joinWithEdges with a DataSet containing custom parametrised type input values */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(TestGraphUtils.getLongLongCustomTuple3Data(env), new CustomValueMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,10\n" + "1,3,20\n" + "2,3,30\n" + "3,4,40\n" + "3,5,35\n" + "4,5,45\n" + "5,1,51\n"; compareResultAsTuples(result, expectedResult); }
Example 3
Source File: JoinWithEdgesITCase.java From flink with Apache License 2.0 | 6 votes |
@Test public void testWithCustomType() throws Exception { /* * Test joinWithEdges with a DataSet containing custom parametrised type input values */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(TestGraphUtils.getLongLongCustomTuple3Data(env), new CustomValueMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,10\n" + "1,3,20\n" + "2,3,30\n" + "3,4,40\n" + "3,5,35\n" + "4,5,45\n" + "5,1,51\n"; compareResultAsTuples(result, expectedResult); }
Example 4
Source File: JoinWithEdgesITCase.java From flink with Apache License 2.0 | 5 votes |
@Test public void testWithLessElementsDifferentType() throws Exception { /* * Test joinWithEdges with the input DataSet passed as a parameter containing * less elements than the edge DataSet and of a different type(Boolean) */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(graph.getEdges().first(3) .map(new BooleanEdgeValueMapper()), new DoubleIfTrueMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,24\n" + "1,3,26\n" + "2,3,46\n" + "3,4,34\n" + "3,5,35\n" + "4,5,45\n" + "5,1,51\n"; compareResultAsTuples(result, expectedResult); }
Example 5
Source File: JoinWithEdgesITCase.java From flink with Apache License 2.0 | 5 votes |
@Test public void testWithNoCommonKeys() throws Exception { /* * Test joinWithEdges with the input DataSet containing different keys than the edge DataSet * - the iterator becomes empty. */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(TestGraphUtils.getLongLongLongTuple3Data(env), new DoubleValueMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,24\n" + "1,3,26\n" + "2,3,46\n" + "3,4,68\n" + "3,5,35\n" + "4,5,45\n" + "5,1,51\n"; compareResultAsTuples(result, expectedResult); }
Example 6
Source File: JoinWithEdgesITCase.java From flink with Apache License 2.0 | 5 votes |
@Test public void testWithLessElementsDifferentType() throws Exception { /* * Test joinWithEdges with the input DataSet passed as a parameter containing * less elements than the edge DataSet and of a different type(Boolean) */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(graph.getEdges().first(3) .map(new BooleanEdgeValueMapper()), new DoubleIfTrueMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,24\n" + "1,3,26\n" + "2,3,46\n" + "3,4,34\n" + "3,5,35\n" + "4,5,45\n" + "5,1,51\n"; compareResultAsTuples(result, expectedResult); }
Example 7
Source File: JoinWithEdgesITCase.java From flink with Apache License 2.0 | 5 votes |
@Test public void testWithLessElements() throws Exception { /* * Test joinWithEdges with the input DataSet passed as a parameter containing * less elements than the edge DataSet, but of the same type */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(graph.getEdges().first(3) .map(new EdgeToTuple3Map<>()), new AddValuesMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,24\n" + "1,3,26\n" + "2,3,46\n" + "3,4,34\n" + "3,5,35\n" + "4,5,45\n" + "5,1,51\n"; compareResultAsTuples(result, expectedResult); }
Example 8
Source File: JoinWithEdgesITCase.java From flink with Apache License 2.0 | 5 votes |
@Test public void testWithEdgesInputDataset() throws Exception { /* * Test joinWithEdges with the input DataSet parameter identical * to the edge DataSet */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(graph.getEdges() .map(new EdgeToTuple3Map<>()), new AddValuesMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,24\n" + "1,3,26\n" + "2,3,46\n" + "3,4,68\n" + "3,5,70\n" + "4,5,90\n" + "5,1,102\n"; compareResultAsTuples(result, expectedResult); }
Example 9
Source File: JoinWithEdgesITCase.java From flink with Apache License 2.0 | 5 votes |
@Test public void testWithNoCommonKeys() throws Exception { /* * Test joinWithEdges with the input DataSet containing different keys than the edge DataSet * - the iterator becomes empty. */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(TestGraphUtils.getLongLongLongTuple3Data(env), new DoubleValueMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,24\n" + "1,3,26\n" + "2,3,46\n" + "3,4,68\n" + "3,5,35\n" + "4,5,45\n" + "5,1,51\n"; compareResultAsTuples(result, expectedResult); }
Example 10
Source File: JoinWithEdgesITCase.java From flink with Apache License 2.0 | 5 votes |
@Test public void testWithLessElements() throws Exception { /* * Test joinWithEdges with the input DataSet passed as a parameter containing * less elements than the edge DataSet, but of the same type */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(graph.getEdges().first(3) .map(new EdgeToTuple3Map<>()), new AddValuesMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,24\n" + "1,3,26\n" + "2,3,46\n" + "3,4,34\n" + "3,5,35\n" + "4,5,45\n" + "5,1,51\n"; compareResultAsTuples(result, expectedResult); }
Example 11
Source File: JoinWithEdgesITCase.java From flink with Apache License 2.0 | 5 votes |
@Test public void testWithEdgesInputDataset() throws Exception { /* * Test joinWithEdges with the input DataSet parameter identical * to the edge DataSet */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(graph.getEdges() .map(new EdgeToTuple3Map<>()), new AddValuesMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,24\n" + "1,3,26\n" + "2,3,46\n" + "3,4,68\n" + "3,5,70\n" + "4,5,90\n" + "5,1,102\n"; compareResultAsTuples(result, expectedResult); }
Example 12
Source File: JoinWithEdgesITCase.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
@Test public void testWithNoCommonKeys() throws Exception { /* * Test joinWithEdges with the input DataSet containing different keys than the edge DataSet * - the iterator becomes empty. */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(TestGraphUtils.getLongLongLongTuple3Data(env), new DoubleValueMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,24\n" + "1,3,26\n" + "2,3,46\n" + "3,4,68\n" + "3,5,35\n" + "4,5,45\n" + "5,1,51\n"; compareResultAsTuples(result, expectedResult); }
Example 13
Source File: JoinWithEdgesITCase.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
@Test public void testWithLessElementsDifferentType() throws Exception { /* * Test joinWithEdges with the input DataSet passed as a parameter containing * less elements than the edge DataSet and of a different type(Boolean) */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(graph.getEdges().first(3) .map(new BooleanEdgeValueMapper()), new DoubleIfTrueMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,24\n" + "1,3,26\n" + "2,3,46\n" + "3,4,34\n" + "3,5,35\n" + "4,5,45\n" + "5,1,51\n"; compareResultAsTuples(result, expectedResult); }
Example 14
Source File: JoinWithEdgesITCase.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
@Test public void testWithLessElements() throws Exception { /* * Test joinWithEdges with the input DataSet passed as a parameter containing * less elements than the edge DataSet, but of the same type */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(graph.getEdges().first(3) .map(new EdgeToTuple3Map<>()), new AddValuesMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,24\n" + "1,3,26\n" + "2,3,46\n" + "3,4,34\n" + "3,5,35\n" + "4,5,45\n" + "5,1,51\n"; compareResultAsTuples(result, expectedResult); }
Example 15
Source File: JoinWithEdgesITCase.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
@Test public void testWithEdgesInputDataset() throws Exception { /* * Test joinWithEdges with the input DataSet parameter identical * to the edge DataSet */ final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); Graph<Long, Long, Long> graph = Graph.fromDataSet(TestGraphUtils.getLongLongVertexData(env), TestGraphUtils.getLongLongEdgeData(env), env); Graph<Long, Long, Long> res = graph.joinWithEdges(graph.getEdges() .map(new EdgeToTuple3Map<>()), new AddValuesMapper()); DataSet<Edge<Long, Long>> data = res.getEdges(); List<Edge<Long, Long>> result = data.collect(); expectedResult = "1,2,24\n" + "1,3,26\n" + "2,3,46\n" + "3,4,68\n" + "3,5,70\n" + "4,5,90\n" + "5,1,102\n"; compareResultAsTuples(result, expectedResult); }
Example 16
Source File: EuclideanGraphWeighing.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
public static void main(String[] args) throws Exception { if (!parseParameters(args)) { return; } ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); DataSet<Vertex<Long, Point>> vertices = getVerticesDataSet(env); DataSet<Edge<Long, Double>> edges = getEdgesDataSet(env); Graph<Long, Point, Double> graph = Graph.fromDataSet(vertices, edges, env); // the edge value will be the Euclidean distance between its src and trg vertex DataSet<Tuple3<Long, Long, Double>> edgesWithEuclideanWeight = graph.getTriplets() .map(new MapFunction<Triplet<Long, Point, Double>, Tuple3<Long, Long, Double>>() { @Override public Tuple3<Long, Long, Double> map(Triplet<Long, Point, Double> triplet) throws Exception { Vertex<Long, Point> srcVertex = triplet.getSrcVertex(); Vertex<Long, Point> trgVertex = triplet.getTrgVertex(); return new Tuple3<>(srcVertex.getId(), trgVertex.getId(), srcVertex.getValue().euclideanDistance(trgVertex.getValue())); } }); Graph<Long, Point, Double> resultedGraph = graph.joinWithEdges(edgesWithEuclideanWeight, new EdgeJoinFunction<Double, Double>() { public Double edgeJoin(Double edgeValue, Double inputValue) { return inputValue; } }); // retrieve the edges from the final result DataSet<Edge<Long, Double>> result = resultedGraph.getEdges(); // emit result if (fileOutput) { result.writeAsCsv(outputPath, "\n", ","); // since file sinks are lazy, we trigger the execution explicitly env.execute("Euclidean Graph Weighing Example"); } else { result.print(); } }
Example 17
Source File: EuclideanGraphWeighing.java From flink with Apache License 2.0 | 4 votes |
public static void main(String[] args) throws Exception { if (!parseParameters(args)) { return; } ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); DataSet<Vertex<Long, Point>> vertices = getVerticesDataSet(env); DataSet<Edge<Long, Double>> edges = getEdgesDataSet(env); Graph<Long, Point, Double> graph = Graph.fromDataSet(vertices, edges, env); // the edge value will be the Euclidean distance between its src and trg vertex DataSet<Tuple3<Long, Long, Double>> edgesWithEuclideanWeight = graph.getTriplets() .map(new MapFunction<Triplet<Long, Point, Double>, Tuple3<Long, Long, Double>>() { @Override public Tuple3<Long, Long, Double> map(Triplet<Long, Point, Double> triplet) throws Exception { Vertex<Long, Point> srcVertex = triplet.getSrcVertex(); Vertex<Long, Point> trgVertex = triplet.getTrgVertex(); return new Tuple3<>(srcVertex.getId(), trgVertex.getId(), srcVertex.getValue().euclideanDistance(trgVertex.getValue())); } }); Graph<Long, Point, Double> resultedGraph = graph.joinWithEdges(edgesWithEuclideanWeight, new EdgeJoinFunction<Double, Double>() { public Double edgeJoin(Double edgeValue, Double inputValue) { return inputValue; } }); // retrieve the edges from the final result DataSet<Edge<Long, Double>> result = resultedGraph.getEdges(); // emit result if (fileOutput) { result.writeAsCsv(outputPath, "\n", ","); // since file sinks are lazy, we trigger the execution explicitly env.execute("Euclidean Graph Weighing Example"); } else { result.print(); } }
Example 18
Source File: EuclideanGraphWeighing.java From flink with Apache License 2.0 | 4 votes |
public static void main(String[] args) throws Exception { if (!parseParameters(args)) { return; } ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); DataSet<Vertex<Long, Point>> vertices = getVerticesDataSet(env); DataSet<Edge<Long, Double>> edges = getEdgesDataSet(env); Graph<Long, Point, Double> graph = Graph.fromDataSet(vertices, edges, env); // the edge value will be the Euclidean distance between its src and trg vertex DataSet<Tuple3<Long, Long, Double>> edgesWithEuclideanWeight = graph.getTriplets() .map(new MapFunction<Triplet<Long, Point, Double>, Tuple3<Long, Long, Double>>() { @Override public Tuple3<Long, Long, Double> map(Triplet<Long, Point, Double> triplet) throws Exception { Vertex<Long, Point> srcVertex = triplet.getSrcVertex(); Vertex<Long, Point> trgVertex = triplet.getTrgVertex(); return new Tuple3<>(srcVertex.getId(), trgVertex.getId(), srcVertex.getValue().euclideanDistance(trgVertex.getValue())); } }); Graph<Long, Point, Double> resultedGraph = graph.joinWithEdges(edgesWithEuclideanWeight, new EdgeJoinFunction<Double, Double>() { public Double edgeJoin(Double edgeValue, Double inputValue) { return inputValue; } }); // retrieve the edges from the final result DataSet<Edge<Long, Double>> result = resultedGraph.getEdges(); // emit result if (fileOutput) { result.writeAsCsv(outputPath, "\n", ","); // since file sinks are lazy, we trigger the execution explicitly env.execute("Euclidean Graph Weighing Example"); } else { result.print(); } }