mvn clean install
Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Tinkerpop | 1,722 | 146 | 72 | 2 days ago | 50 | July 21, 2021 | 25 | apache-2.0 | Java | |
Apache TinkerPop - a graph computing framework | ||||||||||
Graph | 749 | 2 months ago | 83 | apache-2.0 | Ruby | |||||
Practical Gremlin - An Apache TinkerPop Tutorial | ||||||||||
Graph Notebook | 532 | 4 days ago | 55 | June 11, 2022 | 30 | apache-2.0 | Jupyter Notebook | |||
Library extending Jupyter notebooks to integrate with Apache TinkerPop, openCypher, and RDF SPARQL. | ||||||||||
Rexster | 436 | 68 | 17 | 3 years ago | 6 | September 17, 2014 | 14 | other | Java | |
A Graph Server (no longer active - see Apache TinkerPop) | ||||||||||
Morpheus | 307 | 1 | 7 | 3 years ago | 33 | June 03, 2019 | 29 | apache-2.0 | Scala | |
Morpheus brings the leading graph query language, Cypher, onto the leading distributed processing platform, Spark. | ||||||||||
Goldenorb | 295 | 4 years ago | apache-2.0 | Java | ||||||
GoldenOrb is an open-source implementation of Pregel, Google's graph processing framework | ||||||||||
Neo4j Spark Connector | 293 | a month ago | 14 | September 06, 2022 | 25 | apache-2.0 | Scala | |||
Neo4j Connector for Apache Spark, which provides bi-directional read/write access to Neo4j from Spark, using the Spark DataSource APIs | ||||||||||
Sparkflow | 290 | 2 years ago | 13 | May 18, 2019 | 8 | mit | Python | |||
Easy to use library to bring Tensorflow on Apache Spark | ||||||||||
Gradoop | 234 | 7 | 2 | a month ago | 14 | March 29, 2021 | 82 | apache-2.0 | Java | |
Distributed Graph Analytics with Apache Flink | ||||||||||
Gremlin Javascript | 212 | 5 | 6 | 5 years ago | 12 | November 04, 2015 | 28 | mit | JavaScript | |
JavaScript tools for graph processing in Node.js and the browser inspired by the Apache TinkerPop API |
Apache TinkerPop provides graph computing capabilities for both graph databases (OLTP) and graph analytic systems (OLAP).
TinkerPop uses Maven and requires Java 11
for proper building and proper operations. To build, execute unit tests and package Gremlin Console/Server run:
mvn clean install
Please see the Building on Windows section for Windows specific build instructions.
The zip distributions can be found in the following directories:
gremlin-server/target
gremlin-console/target
Please see the CONTRIBUTING.asciidoc file for more detailed information and options for building, test running and developing TinkerPop.
Download Gremlin Console (compatible with Java 8/11) and unzip to a directory, then:
$ bin/gremlin.sh
\,,,/
(o o)
-----oOOo-(3)-oOOo-----
plugin activated: tinkerpop.server
plugin activated: tinkerpop.utilities
plugin activated: tinkerpop.tinkergraph
gremlin> graph = TinkerFactory.createModern()
==>tinkergraph[vertices:6 edges:6]
gremlin> g = traversal().withEmbedded(graph)
==>graphtraversalsource[tinkergraph[vertices:6 edges:6], standard]
gremlin> g.V().has('name','vadas').valueMap()
==>[name:[vadas], age:[27]]