Skip to content

ZhensongQian/graphframes

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

graphframes - DataFrame-based graphs with Spark

Build Status codecov.io

GraphFrames: DataFrame-based Graphs

This is a package for DataFrame-based graphs on top of Apache Spark. Users can write highly expressive queries by leveraging the DataFrame API, combined with a new API for motif finding. The user also benefits from DataFrame performance optimizations within the Spark SQL engine.

Building and running unit tests

To compile this project, run build/sbt assembly from the project home directory. This will also run the Scala unit tests.

To run the Python unit tests, run the run-tests.sh script from the python/ directory. You will need to set SPARK_HOME to your local Spark installation directory.

Spark version compatibility

This project is compatible with Spark 1.6+.

However, significant speed improvements have been made to DataFrames in more recent versions(Spark 2.XX) of Spark, so you may see speedups from using the latest Spark version.

Contributing

GraphFrames is collaborative effort among UC Berkeley, MIT, and Databricks. We welcome open source contributions as well!

Releases:

  • 0.5.0 release (latest)

    • Major bug fix: Indexing non-Integer vertex IDs, which is used by algorithms which call GraphX under the hood, including PageRank, ConnectedComponents, and others.
    • aggregateMessages for Python API
  • 0.4.0 release

    • Spark 2.1 support
    • Fix for checkpointing issue in DataFrame-based connected components implementation (issue 160)
  • 0.3.0 release

    • DataFrame-based connected components implementation
    • added support for Python 3
    • removed support for Spark 1.4 and 1.5
  • 0.2.0 release

    • Spark 2.0 support (work of @felixcheung)
  • 0.1.0 initial release