====== Graph Databases ====== Some of the popular graph databases are Neo4J, Orient DB and Apache Titan (Titan: Big Graph Data with Cassandra). * [[wp>Graph_database]], [[wpfr>Base_de_données_orientée_graphe]] Voir aussi [[/informatique/web_semantique|web semantique]] pour les base de données RDF. Articles: * [[http://blog.e-zest.net/elasticsearch-vs-graph-database/|Elasticsearch vs Graph Database]] * [[http://www.kennybastani.com/2015/03/spark-neo4j-tutorial-docker.html|Getting Started with Apache Spark and Neo4j Using Docker Compose]] * [[https://www.quora.com/What-are-the-differences-between-a-Graph-database-and-a-Triple-store|What are the differences between a Graph database and a Triple store ?]] * [[http://www.snee.com/bobdc.blog/2014/01/storing-and-querying-rdf-in-ne.html|Storing and querying RDF in Neo4j]] * [[https://neo4j.com/developer/guide-data-visualization/|guide-data-visualization]] this article reviews the different tools available for visualizing graph-based data ===== Neo4J ===== http://neo4j.com/ Neo4j Community Edition : GPL v3 license, [[http://neo4j.com/licensing/|About Neo4j Licenses]] examples: * [[http://network.graphdemos.com/|Graph your Network]] (Twitter) - avec les queries utilisées (et le [[https://github.com/neo4j-contrib/twitter-neo4j|source]]) * [[http://neo4j.com/blog/oscon-twitter-graph/|OSCON Twitter Graph]] - Using the UNWIND clause we are able to pivot a collection * [[https://github.com/mneedham/neo4j-twitter|mneedham/neo4j-twitter]] example en Python. Avec la structure des données (twitter). * A CRM with Neo4j and REST https://www.sitepoint.com/crm-neo4j-rest/ Neo4j Browser * https://neo4j.com/developer/guide-neo4j-browser/ * https://neo4j.com/developer/guide-data-visualization/ Javascript in Browser: * [[https://github.com/neo4j/neo4j-javascript-driver|neo4j-javascript-driver]] with a special browser version of the driver, which supports connecting to Neo4j over WebSockets. * https://neo4j.com/developer/javascript/ ===== Apache Titan ===== http://titan.thinkaurelius.com/ ===== OrientDB ===== **Community Edition** http://orientdb.com/orientdb/ ===== Elastic Graph ===== **license**: 30 day trial https://www.elastic.co/fr/downloads/graph ===== Graph DB Tools ===== ==== Languages ==== === Cypher === OpenCypher, une initiative de Neo4j et d'autres contributeurs vise à étendre l'emploi de Cypher à d'autres base de données orientées graphe3 * http://www.opencypher.org/ * [[wpfr>Cypher_(langage)]] Docs: * [[http://neo4j.com/docs/developer-manual/current/cypher/|Cypher query language]] on Neo4J documentation * [[http://www.quackit.com/neo4j/tutorial/neo4j_create_a_node_using_cypher.cfm|create a node]] * [[http://www.quackit.com/neo4j/tutorial/neo4j_create_a_relationship_using_cypher.cfm|create a relationship]] * ... * [[https://gist.github.com/DaniSancas/1d5265fc159a95ff457b940fc5046887|Cypher queries cheatsheet]] === Gremlin === === SPARQL === [[/glossaire/SPARQL]] Autre langage déclaratif pour les requêtes sur des données orientées graphe ==== Spark Graphx ==== GraphX is Apache Spark's API for graphs and graph-parallel computation. https://spark.apache.org/graphx/ GraphX is a new component in Spark for graphs and graph-parallel computation. At a high level, GraphX extends the Spark RDD by introducing a new Graph abstraction: a directed multigraph with properties attached to each vertex and edge. To support graph computation, GraphX exposes a set of fundamental operators (e.g., subgraph, joinVertices, and aggregateMessages) as well as an optimized variant of the Pregel API. In addition, GraphX includes a growing collection of graph algorithms and builders to simplify graph analytics tasks. ==== Apache Giraph ==== http://giraph.apache.org/ Apache Giraph is an iterative graph processing system built for high scalability. For example, it is currently used at Facebook to analyze the social graph formed by users and their connections. Giraph originated as the open-source counterpart to Pregel, the graph processing architecture developed at Google and described in a 2010 paper ==== Gephi ==== Gephi is an interactive visualization and exploration platform for all kinds of networks and complex systems, dynamic and hierarchical graphs. [[informatique/gephi|Gephi]] ==== Sigma.js ==== A graph visualization application for the web [[/informatique/javascript/sigmajs|/informatique/javascript/sigmajs]] http://sigmajs.org/ ==== Linkurio.js ==== A Javascript library to add fast and interactive graph visualization into web-based products. Linkurious.js is an **active fork of Sigma.js**. It's dual-licensed under both GPLv3 and a commercial license for proprietary projects. http://linkurio.us/toolkit/ ==== Alchemy.js ==== A graph visualization application for the web http://graphalchemist.github.io/Alchemy/ ==== popotojs ==== Javascript generates an interactive graph query builder into any website or web based application to create advanced queries on Neo4j databases and display the results. http://popotojs.com/ === Plugins === Plugin [[https://github.com/jacomyal/sigma.js/tree/master/plugins/sigma.neo4j.cypher|sigma.neo4j.cypher]] provides a simple function, sigma.neo4j.cypher(), that will run a cypher query on a neo4j instance, parse the response, eventually instantiate sigma and fill the graph with the graph.read() method. Plugin [[https://github.com/jacomyal/sigma.js/tree/master/plugins/sigma.parsers.gexf|sigma.parsers.gexf]] provides a single function, sigma.parsers.gexf(), that will load a GEXF encoded file, parse it, and instantiate sigma.