SparklingGraph provides easy to use set of features that will give you ability to proces large scala graphs using Spark and GraphX.
- Scala 2.11 or 2.12
- Spark 2.4.0 (or compatible)
Since commit 3246714
project is using git versioning (for example 0.0.7+140-32467140
or 0.0.7+140-32467140+20190402-2057-SNAPSHOT
). All artifacts from now one will be published to snapshot without version overriding. New approach will also add abbility to reproduce each version. Release versions will use normal tag based approach.
Since commit 3246714
you can get artifacts for any master branch commits using git describe
command.
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
// one or all from:
libraryDependencies += "ml.sparkling" %% "sparkling-graph-examples" % "0.0.8-SNAPSHOT"
libraryDependencies += "ml.sparkling" %% "sparkling-graph-loaders" % "0.0.8-SNAPSHOT"
libraryDependencies += "ml.sparkling" %% "sparkling-graph-operators" % "0.0.8-SNAPSHOT"
// one or all from:
libraryDependencies += "ml.sparkling" %% "sparkling-graph-examples" % "0.0.7"
libraryDependencies += "ml.sparkling" %% "sparkling-graph-loaders" % "0.0.7"
libraryDependencies += "ml.sparkling" %% "sparkling-graph-operators" % "0.0.7"
- Loading
- Formats:
- CSV
- GraphML
- DSL
- Formats:
- Measures - measures can be configured to treat graphs as directed and undirected
- Measures DSL - easy to use domain specific language that boost productivity of library
- Graph
- Modularity
- Freeman's network centrality
- Vertex
- Closeness
- Local clustering
- Eigenvector
- Hits
- Neighbor connectivity
- Vertex embeddedness
- Betweenness
- Edmonds
- Flow
- Hua
- Edges
- Adamic/Adar
- Common neighbours
- Comunity detection methods
- PSCAN (SCAN)
- Graph coarsening
- Label Propagation based
- Link prediction
- Similarity measure based
- Generators
- Ring
- Watts And Strogatz
- Experiments
- Describe graph using all measures to CSV files
- Loading
- GML
- Measures
- Katz
- Comunity detection methods
- Modularity maximization
- Infomap
- More Generators
- API
- Random walk
- BFS
- ML
- Vertex classification
Please check API, examples or docs
If you use SparklingGraph in your research and publish it, please consider citing us, it will help us get funding for making the library better. Currently manuscript is in preparation, so please us following references:
Bartusiak et al. (2017). SparklingGraph: large scale, distributed graph processing made easy. Manuscript in preparation.
@unpublished{sparkling-graph
title={SparklingGraph: large scale, distributed graph processing made easy},
author={Bartusiak R., Kajdanowicz T.},
note = {Manuscript in preparation},
year = {2017}
}