Home > Articles > Data

Introduction to Neo4j

Relational databases are still great for storing and managing data, but in this century data hasn't just multiplied; it has diversified. No RDBMS can keep pace with data experiencing exponential growth and increasingly intricate relationships. In Part 1 of a three-part series, Steven Haines describes a better solution: Neo4j, a graph database with the flexibility and power to handle modern business and complex social interactions.
Like this article? We recommend

Like this article? We recommend

Introduction to Neo4j

Although relational databases have dominated the data management space for decades, some alternative solutions are better than relational databases at solving specific categories of problems. Neo4j is a graph database designed for interacting with highly related data, such as you might find in a social graph. This article is Part 1 of a series on Neo4j. The following sections introduce you to Neo4j, share examples of when you might want to use this database, and show you how to set up a Neo4j development environment.

Understanding Neo4j Basics

The computer age began with the need to manage data. The 1970s saw the emergence of relational databases as a solution for managing data by defining entities and the relationships between them. For nearly three decades, relational databases dominated the data management scene, until the amount of data grew to Internet scale. As we moved from managing megabytes of data to managing petabytes of data, we needed new paradigms to handle data at this volume. This shift inspired the emergence of what some people call NoSQL, an unfortunate nickname because it actually groups different data store technologies by a feature they lack: SQL as a query language. Regardless of the naming convention, these new technologies enabled us to accomplish far more than we could with relational databases.

NoSQL databases fit into four general categories:

  • Key/value stores such as Memcached and Redis
  • Column-oriented databases such as Cassandra and HBase
  • Document-oriented databases such as MongoDB and CouchDB
  • Graph databases such as Neo4j and OrientDB

One big problem with accessing relational databases from object-oriented programming languages is the disconnect between how relational databases represent entities and relationships versus how object-oriented programming languages represent objects, including issues like inheritance and polymorphism. This complication is one of the primary reasons for the emergence of Object Relational Mapping (ORM) tools like Hibernate and iBATIS: bridging the gap between a relational database model and an object-oriented programming model. As we explore Neo4j, you'll see that its programming model is far more natural for object-oriented programmers.

Some categories of problems are not easily solved using relational databases. For example, let's create a social graph of users in which one user can be friends with other users. Figure 1 shows how such a data model might look.

Figure 1 Social graph relational data model.

Figure 1 shows a User table with a User_Friend table that defines friend relationships between users: A user can have zero or more friends. Let's look at how we might use this simple data model.

I am indebted to Aleksa Vukotic and Nicki Watt, co-authors of Neo4j in Action, for testing the performance of such a data model. You could query for the friends of a user's friends like this:

select count(distinct uf2.*) from User_friend uf1
inner join User_Friend uf2 on uf1.user_1 = uf2.user_2
where uf1.user_1 = ?

Likewise, if you want to find friends of friends of friends, you could execute a query like the following:

select count(distinct uf3.*) from User_friend uf1
inner join User_Friend uf2 on uf1.user_1 = uf2.user_2
inner join User_Friend uf3 on uf2.user_1 = uf3.user_2
where uf1.user_1 = ?

These are not complex queries, but in order for a relational database to find your result set, it must create the Cartesian product of the two tables joined together (or, in the last case, the Cartesian product of the User_Friend three times), and remove any extraneous data. Vukotic and Watt executed these types of queries against 1,000 users with approximately 50 friends each. The following table shows their response times.

Depth

Execution Time (seconds)

Result Count

2

0.028

~900

3

0.213

~999

4

10.273

~999

5

92.613

~999

As you can see, relational databases are very good at joins—and the response times are great at rather shallow depths, but horrible when you hit depths of 4 and 5.

Rather than trying to find a way to improve these queries, let's see if we can change the problem altogether. Consider the users and friendships shown in Figure 2.

Figure 2 Social relationships as a graph.

In Figure 2 we have defined users as nodes and their friendship relationships as lines (or edges) between the nodes. This is a more natural way of representing the data in an object-oriented model: starting from a user node, we can traverse all of the friendship relationships to find the user's friends. We can traverse all of the user's friends' friends in the same way.

The creators of graph databases saw this way of representing a social graph as being more natural, so in Neo4j you can perform a similar query to the SQL query just discussed, using code like the following:

TraversalDescription traversalDescription =
      TraversalDescription()
      .relationships( "IS_FRIEND_OF", Direction.OUTGOING )
      .evaluator( Evaluators.atDepth( 2 ) )
      .uniqueness( Uniqueness.NODE_GLOBAL );
Interable<Node> nodes =
traversalDescription.traverse(nodeById).nodes();

We choose a starting node and follow all "IS_FRIEND_OF" relationships from that node, searching at a depth of 2, and returning only unique nodes. The following table shows the results of this query at multiple depths.

Depth

Execution Time (seconds)

Result Count

2

0.04

~900

3

0.06

~999

4

0.07

~999

5

0.07

~999

The important thing to notice about this experiment is that the execution time is proportional to the size of the result set, rather than the size of the data. Let's run this experiment one more time, but with a much larger sample set. In this example, we have 1 million users and 50 relationships between users, giving us 50 million User_Friend rows.

Depth

SQL Execution Time (seconds)

Neo4j Execution Time (seconds)

Result Count

2

0.016

0.01

2,500

3

30.267

0.168

125,000

4

1,543.505

1.359

600,000

5

Not finished in an hour

2.132

800,000

As you can observe from these results, the response time of Neo4j increases with the number of nodes in the results set, whereas the response time of the SQL execution is proportional to the size of the data and all of those Cartesian products that need to be computed for the multiple joins. While Neo4j took only about two seconds to traverse 800,000 nodes, the SQL execution did not respond in over an hour.

In summary, if your data is designed in such a way that it can be represented in a graph of related nodes, querying that data can be extremely efficient.

Getting Started with Neo4j

I hope I've convinced you that graph databases in general, and specifically Neo4j, are good at solving problems for highly related data. Assuming you're ready to give it a try, let's get Neo4j set up on your local machine. You can download Neo4j from the Neo Technology website, or you can use it in an embedded mode by adding the following dependency to your Maven POM file:

<dependency>
     <groupId>org.neo4j</groupId>
     <artifactId>neo4j</artifactId>
     <version>2.2.0</version>
</dependency>

The first step in using Neo4j is to create a GraphDatabaseService object that communicates with the database. If you are running Neo4j in an embedded mode, use the following code:

GraphDatabaseService graphDB = new GraphDatabaseFactory().newEmbeddedDatabase( "mydata" );

In this case, we create a reference to an embedded database instance that resides in the mydata folder. You can specify a relative or absolute path to denote where Neo4j should store its information.

If you want to run a separate Neo4j instance, download Neo4j and decompress it to your hard drive. You can start it by executing the following command from the installation directory:

bin/neo4j start

With Neo4j installed and running, you can access the web console by opening the following URL in your favorite browser:

http://localhost:7474/

You should see a screen similar to the one in Figure 3.

Figure 3 Neo4j web console.

The top panel in the web console (the part with the dollar sign) allows you to enter queries in Cypher, which is Neo4j's custom query language. (We'll cover Cypher in Part 3 of this series.) Once you have data in Neo4j, the "three circles" icon in the upper-left corner will allow you to view the data graphically.

We can connect to Neo4j programmatically with the following code snippet:

GraphDatabaseService graphDB = new RestGraphDatabase( "http://localhost:7474/db/data" );

Neo4j exposes a Representational State Transfer (REST) interface that allows you to access it with any REST client, but if you create a RestGraphDatabase then it will provide the same interface used by the embedded database.

With our GraphDatabaseService in hand, let's create a node:

try( Transaction tx : graphDB.beginTx() ) {
    Node userNode = graphDB.createNode();
    tx.success();
} catch( Exception e ) {
    tx.failure();
} finally {
    tx.finish();
}

In addition to providing graph functionality, Neo4j is also a fully ACID-compliant database—atomic, consistent, isolated, and durable—just like its SQL counterparts. From a practical standpoint, this means that you need to wrap all node creations, updates, deletes, and queries inside a transaction.

We have effectively created a node, but it isn't very interesting at this point. Let's add a name property to our user node. We can accomplish that by invoking the setProperty() method:

userNode.setProperty( "name", "Steve" );

Neo4j property names must be Strings, but property values can be any of the following types: String, char, boolean, byte, short, int, long, double, float, or array. For example, I can set my age to int with the following command:

userNode.setProperty( "age", 43 );

Neo4j gives each node a unique identifier for use in retrieving the node. The first node that you add will have an ID of 1, so if we want to retrieve the node we inserted, we can use the following command:

Node userNode = graphDB.getNodeById( 1 );

And then we can retrieve the name property as follows:

String name = userNode.getProperty( "name" );

In Part 2 of this series, we'll explore how to search for nodes, but this brief introduction should give the more curious developer enough information to start being dangerous.

Summary

This article, Part 1 of a three-part series on Neo4j, provided a brief overview of why graph databases are better than relational databases at solving certain categories of problems. Now that your Neo4j environment is set up, Part 2 will review the Java API for creating nodes and relationships and explore the Traversal API for searching a graph database. In the final article in this series, we'll explore Cypher and see how to leverage it to execute complex queries.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020