All Projects → Netflix → Netflix Graph

Netflix / Netflix Graph

Licence: apache-2.0
Compact in-memory representation of directed graph data

Programming Languages

java
68154 projects - #9 most used programming language

NetflixGraph

NetflixOSS Lifecycle

NetflixGraph is a compact in-memory data structure used to represent directed graph data. You can use NetflixGraph to vastly reduce the size of your application’s memory footprint, potentially by an order of magnitude or more. If your application is I/O bound, you may be able to remove that bottleneck by holding your entire dataset in RAM. This may be possible with NetflixGraph; you’ll likely be very surprised by how little memory is actually required to represent your data.

NetflixGraph provides an API to translate your data into a graph format, compress that data in memory, then serialize the compressed in-memory representation of the data so that it may be easily transported across your infrastructure.

Artifacts

The NetflixGraph binaries are published to Maven Central.

GroupID/Org ArtifactID/Name Latest Version
com.netflix.nfgraph netflix-graph 1.5.2
    ...	
    <dependency>
    	<groupId>com.netflix.nfgraph</groupId>
    	<artifactId>netflix-graph</artifactId>
            <version>1.5.2</version>
    </dependency>
    ...

Features

A quick overview can be found either on the wiki or on the Netflix Tech Blog.

Since the blog article was published, a number of improvements have been made:

  • contains() operations on connection sets are no longer necessarily O(n). Some memory-efficiency can be sacrificed to obtain O(1) performance.
  • The library will automatically switch from the default encoding to bit set encoding if it is more memory efficient.
  • Interfaces have been added to efficiently map Objects to ordinals.

Documentation

Detailed documentation of NetflixGraph's features and usage can be found on the wiki.

Javadocs are available here.

Build

NetflixGraph is built via Gradle (www.gradle.org). To build from the command line:

./gradlew build

Support

Support can be obtained through the NetflixGraph google group

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].