
Titan is a scalable graph database optimized for storing and querying graphs containing hundreds of billions of vertices and edges distributed across a multi-machine cluster. Titan is a transactional database that can support thousands of concurrent users executing complex graph traversals.
In addition, Titan provides the following features:
- Elastic and linear scalability for a growing data and user base.
- Data distribution and replication for performance and fault tolerance.
- Multi-datacenter high availability and hot backups.
- Support for ACID and eventual consistency.
- Support for various storage backends:
- Support for geo, numeric range, and full-text search via:
- Native integration with the TinkerPop graph stack:
- Gremlin graph query language
- Frames object-to-graph mapper
- Rexster graph server
- Blueprints standard graph API
- Open source with the liberal Apache 2 license.
Download Titan or clone from GitHub.
Read the Titan documentation and join the mailing list.
For commercial Titan support, please contact the graph experts at Aurelius.
Quick Start
<dependency>
<groupId>com.thinkaurelius.titan</groupId>
<artifactId>titan-core</artifactId>
<version>$MAVEN{project.version}</version>
</dependency>
<!-- core, all, cassandra, hbase, berkeleyje, es, lucene, persistit -->
// who is hercules' grandfather?
g.V('name','hercules').out('father').out('father').name
Continue with the Getting Started with Titan guide for a step-by-step introduction.