Skip to content
This repository has been archived by the owner on May 6, 2021. It is now read-only.

graphaware/neo4j-changefeed

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GraphAware Neo4j ChangeFeed - RETIRED

ChangeFeed Has Been Retired

As of March 26th 2016, this module is retiring. This means it will no longer be maintained and released together with new versions of the GraphAware Framework and Neo4j. The last compatible Neo4j version is 2.3.2.

ChangeFeed is being replaced by a much more powerful Audit Module, which is part of GraphAware Enterprise and is available under a commercial subscription. Unlike many other GraphAware modules, nobody is using ChangeFeed in production, to the best of our knowledge.

This repository will remain public. Please get in touch if you've been using ChangeFeed and would like to migrate to GraphAware Audit.

Introduction

Build Status | Javadoc | Latest Release: 2.3.2.37.7

GraphAware ChangeFeed is a GraphAware Runtime Module that keeps track of changes made to the graph.

Getting the Software

Server Mode

When using Neo4j in the standalone server mode, you will need the GraphAware Neo4j Framework and GraphAware Neo4j ChangeFeed .jar files (both of which you can download here) dropped into the plugins directory of your Neo4j installation. After a change in neo4.properties (described later) and Neo4j restart, you will be able to use the REST APIs of the ChangeFeed.

Embedded Mode / Java Development

Java developers that use Neo4j in embedded mode and those developing Neo4j server plugins, unmanaged extensions, GraphAware Runtime Modules, or Spring MVC Controllers can include use the ChangeFeed as a dependency for their Java project.

Releases

Releases are synced to Maven Central repository. When using Maven for dependency management, include the following dependency in your pom.xml.

<dependencies>
    ...
    <dependency>
        <groupId>com.graphaware.neo4j</groupId>
        <artifactId>changefeed</artifactId>
        <version>2.3.2.37.7</version>
    </dependency>
    ...
</dependencies>

Snapshots

To use the latest development version, just clone this repository, run mvn clean install and change the version in the dependency above to 2.3.2.37.8-SNAPSHOT.

Note on Versioning Scheme

The version number has two parts. The first four numbers indicate compatibility with Neo4j GraphAware Framework. The last number is the version of the ChangeFeed library. For example, version 2.1.2.10.2 is version 2 of the ChangeFeed compatible with GraphAware Neo4j Framework 2.1.2.10.

Setup and Configuration

Server Mode

Edit neo4j.properties to register the ChangeFeed module:

com.graphaware.runtime.enabled=true

#CFM becomes the module ID:
com.graphaware.module.CFM.1=com.graphaware.module.changefeed.ChangeFeedModuleBootstrapper

#optional, default is 100:
com.graphaware.module.CFM.maxChanges=100

#optional, default is 10000 (10 seconds):
com.graphaware.module.CFM.pruneDelay=10000

#optional, default is 10;
com.graphaware.module.CFM.pruneWhenExceeded=10

#optionally specify node inclusion policy using expressions, default is all business (i.e. non-framework-internal) nodes
com.graphaware.module.CFM.node=!hasLabel('NotIncluded')

#optionally specify relationship inclusion policy using expressions, default is all business (i.e. non-framework-internal) relationships
com.graphaware.module.CFM.relationship=!isType('NOT_INCLUDED')

Note that "CFM" becomes the module ID. It is possible to register the ChangeFeed module multiple times with different configurations, provided that their IDs are different. This ID is important for querying the feed (read on).

com.graphaware.module.CFM.maxChanges limits the total number of changes tracked. The default is 100. Note that for efficiency, the total number of changes at any given point may be 10 (by default) more than the maxChanges set but will eventually constrain the size to 100. The default value can be changed by setting the com.graphaware.module.CFM.pruneWhenExceeded configuration value. Finally, com.graphaware.module.CFM.pruneDelay specifies in milliseconds, how frequently the changes will be checked for pruning. The default is 10 seconds.

Embedded Mode / Java Development

To use the ChangeFeed programmatically, register the module like this

 GraphAwareRuntime runtime = GraphAwareRuntimeFactory.createRuntime(database);  //where database is an instance of GraphDatabaseService
 ChangeFeedModule module = new ChangeFeedModule("CFM", ChangeFeedConfiguration.defaultConfiguration(), database);
 runtime.registerModule(module);
 runtime.start();

Alternatively:

 GraphDatabaseService database = new GraphDatabaseFactory().newEmbeddedDatabaseBuilder(pathToDb)
    .loadPropertiesFromFile(this.getClass().getClassLoader().getResource("neo4j.properties").getPath())
    .newGraphDatabase();

 RuntimeRegistry.getStartedRuntime(database);
 //make sure neo4j.properties contain the lines mentioned in previous section

Using GraphAware ChangeFeed

Server Mode

In Server Mode, the ChangeFeed is accessible via the REST API.

You can issue GET requests to http://your-server-address:7474/graphaware/changefeed/{moduleId} to get a list of changes made to the graph, most recent change first. {moduleId} is the module ID the ChangeFeed Module was registered with. You can omit this part of the URL, in which case "CFM" is assumed as the default value.

Two parameters can be added to each request, uuid and limit, where uuid is the uuid of the last change set the client has already seen, so only changes later than the given one will be returned. limit is the maximum number of changes to return, most recent change first. A GET request using these parameters would be issued to the following URL: http://your-server-address:7474/graphaware/changefeed/{moduleId}?uuid={uuid}&limit={limit}

The REST API returns a JSON array of changesets. A changeset contains the following:

  • uuid - the uuid of the changeset
  • timestamp - timestamp of the changeset (represented as the number of milliseconds since 1/1/1970)
  • changes - an array of Strings representing each modification to the graph that occurred in the same transaction

e.g.

[
    {
        "uuid": "376de020-20b3-11e4-83b0-f0b4792288ef",
        "timestamp": 1405411937335,
        "changes": [
            "Created node (:Person {name: Doe})"
        ]
    },
    {
        "uuid": "376de021-20b3-11e4-83b0-f0b4792288ef",
        "timestamp": 1405411933210,
        "changes": [
            "Created node (:Person {name: John})"
        ]
    }
]

NOTE: Please note that timestamps are assigned at the instant when the transaction starts committing. Consequently, the order does not represent the order in which the transactions have been committed.

Java API

To use the Java API, please instantiate CachingGraphChangeReader and use one of its methods for getting the changes.

GraphChangeReader reader = new CachingGraphChangeReader(database);
Collection<ChangeSet> changes = reader.getAllChanges();

In case more than one ChangeFeed Module is registered or a single one with ID different than "CFM" is registered, then the ID must be specified when constructing the reader.

GraphChangeReader reader = new CachingGraphChangeReader(database, "ModuleID");
Collection<ChangeSet> changes = reader.getAllChanges();

Please refer to Javadoc for more detail.

Limitations

Note that Node IDs and Relationship IDs are not exposed by the change feed. This is a deliberate choice as it is not a good practice to expose internal IDs outside of Neo4j. Please use custom identifiers (such as UUIDs) instead.

Also note that the contents of the changes are human-, rather than machine-readable. This will be changed in future versions.

License

Copyright (c) 2014 GraphAware

GraphAware is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

About

A GraphAware Framework Runtime Module allowing users to find out what were the latest changes performed on the graph

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages