Graph Connect Europe 2016

Reading time ~3 minutes

Last week I had the opportunity to attend Graph Connect Europe. Many great sessions, but one thing topped them all - Neo4j 3.0 is out!

And as with previous major release (it introduced Cypher) there are many bug fixes, tweaks, speed improvements, but here are my personal favorites:

  • Stored procedures…. Yeah I know I’ve lost you there. But those aren’t yours father’s stored procedures. Neo4j now enables to call any JVM custom function from Cypher. To start with, they published a repo with 99 procedures called apoc (and if ‘apoc’ sounds familiar, yes it’s a Matrix reference). It doesn’t make any sense to describe all of them since they are all quite well described in the GitHub repo, but just to point out the more awesome ones:
    • Meta Graph - to be exact apoc.meta.graph. This procedure analyzes the whole graph and creates a meta-graph showing what node types have what relations with each other. For me a great one for exploring an unknown Neo4j database, or just to check if we didn’t screw up any relations.

      To have a look how it looks lets fire the :play movie graph in Neo4j cmd. It displays a widget with couple steps. The code generating the database is on the second screen. After executing the graph should look like this:

      As You can see in the top left corner it has nodes labeled Movie and Person and relations named ACTED_IN, DIRECTED, DIRECTED,FOLLOWS,PRODUCED,REVIEWED, WROTE.
      So lets see meta graph:

      This graph is a XXXXS size, but with 171 nodes and 253 relations it is hard to gasp it’s structure. The meta graph makes it extremely simple and easy.

    • Loading data from RDBMS - It enables to connect to any database supporting JDBC connector.
      What is even more is the syntax: CALL apoc.load.jdbc('jdbc:derby:derbyDB','PERSON') YIELD row CREATE (:Person {name:row.name})
      for loading the whole table, or
      CALL apoc.load.jdbc('jdbc:derby:derbyDB','SELECT * FROM PERSON WHERE AGE > 18')
      for executing any SQL statement.

  • Bolt. A binary protocol for communicating with Neo4j. Because not long ago Ayende with Raven also announced they are moving to a binary protocol. For me it is a good signal. It means that those databases are maturing and HTTP overhead,which for millisecond operations can be bigger than time spend actually executing the query, is starting to be an issue. This would be a problem, because binary protocols are harder to implement drivers if not for the next announcement:

  • Official drivers. For Java, JavaScript, Python and .NET :). The syntax looks simple, but clear:
using (var driver = GraphDatabase.Driver("bolt://localhost"))
using (var session = driver.Session())
{
   var result = session.Run("MATCH (u:User) RETURN u.name");
}
  • No node limit. This may seem like a big thing (and probably was from implementation perspective), but previously the limit was 34 bilion nodes. So it wasn’t a real limit for most cases. But good to know:)

  • GUI changes. When You click on any node in the graph options will appear:

    So what do these buttons do?

    • x - removes the node from view (not from the database)
    • lock - locks this node into position, so it won’t move when the graph is expanded.
    • arrows - it shows all relations and nodes connected to this node. So from the above we get:

    And if we expand Joel Silver we get this:

    And so on and so on. You get the point. Why is it cool? Because it allows to actualy walk the graph and explore it. Imagine debugging Minority Report style (only without the gloves, the screen, and being Tom Cruse)

It doesn’t mean that those are all the features. If you got hooked go check Neo4j 3.0 blogpost on the official blog.

Hi, I'm Szymon Warda. I write code, design IT systems, write this blog, tweet and speak at conferences. If You want to know more go here, or follow me: