All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.graph.library.ConnectedComponents Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
/*
 * 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 org.apache.flink.graph.library;

import org.apache.flink.api.java.DataSet;
import org.apache.flink.graph.Graph;
import org.apache.flink.graph.GraphAlgorithm;
import org.apache.flink.graph.Vertex;
import org.apache.flink.graph.spargel.MessageIterator;
import org.apache.flink.graph.spargel.MessagingFunction;
import org.apache.flink.graph.spargel.VertexUpdateFunction;
import org.apache.flink.graph.utils.NullValueEdgeMapper;
import org.apache.flink.types.NullValue;

/**
 * A scatter-gather implementation of the Weakly Connected Components algorithm.
 *
 * This implementation assumes that the vertex values of the input Graph are initialized with Long component IDs.
 * The vertices propagate their current component ID in iterations.
 * Upon receiving component IDs from its neighbors, a vertex adopts a new component ID if its value
 * is lower than its current component ID.
 *
 * The algorithm converges when vertices no longer update their component ID value
 * or when the maximum number of iterations has been reached.
 * 
 * The result is a DataSet of vertices, where the vertex value corresponds to the assigned component ID.
 * 
 * @see GSAConnectedComponents
 */
@SuppressWarnings("serial")
public class ConnectedComponents implements GraphAlgorithm>> {

	private Integer maxIterations;

	/**
	 * Creates an instance of the Connected Components algorithm.
	 * The algorithm computes weakly connected components
	 * and converges when no vertex updates its component ID
	 * or when the maximum number of iterations has been reached.
	 * 
	 * @param maxIterations The maximum number of iterations to run.
	 */
	public ConnectedComponents(Integer maxIterations) {
		this.maxIterations = maxIterations;
	}

	@Override
	public DataSet> run(Graph graph) throws Exception {

		Graph undirectedGraph = graph.mapEdges(new NullValueEdgeMapper())
				.getUndirected();

		// initialize vertex values and run the Scatter-Gather Iteration
		return undirectedGraph.runScatterGatherIteration(
				new CCUpdater(), new CCMessenger(), maxIterations)
				.getVertices();
	}

	/**
	 * Updates the value of a vertex by picking the minimum neighbor ID out of all the incoming messages.
	 */
	public static final class CCUpdater extends VertexUpdateFunction {

		@Override
		public void updateVertex(Vertex vertex, MessageIterator messages) throws Exception {
			long min = Long.MAX_VALUE;

			for (long msg : messages) {
				min = Math.min(min, msg);
			}

			// update vertex value, if new minimum
			if (min < vertex.getValue()) {
				setNewVertexValue(min);
			}
		}
	}

	/**
	 * Distributes the minimum ID associated with a given vertex among all the target vertices.
	 */
	public static final class CCMessenger extends MessagingFunction {

		@Override
		public void sendMessages(Vertex vertex) throws Exception {
			// send current minimum to neighbors
			sendMessageToAllNeighbors(vertex.getValue());
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy