Hello,

I have a set of data representing various network connections.  Each vertex
is represented by a single id, while the edges have  a source id,
destination id, and a relationship (peer to peer, customer to provider, or
provider to customer).  I am trying to create a sub graph build around a
single source node following one type of edge as far as possible. 

For example:
1 2 p2p
2 3 p2p
2 3 c2p

Following the p2p edges would give:

1 2 p2p
2 3 p2p

I am pretty new to GraphX and GraphFrames, but was wondering if it is
possible to get this behavior using the GraphFrames bfs() function or would
it be better to modify the already existing Pregel implementation of bfs?

Thank you for your time.

Padraic



--
View this message in context: 
http://apache-spark-user-list.1001560.n3.nabble.com/GraphFrame-BFS-tp27876.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe e-mail: user-unsubscr...@spark.apache.org

Reply via email to