ONgDB - Lucene Index

Integration layer between Neo4j and Lucene, providing one possible implementation of the Index API.

License

License

Categories

Categories

Dex General Purpose Libraries Utility
GroupId

GroupId

org.graphfoundation.ongdb
ArtifactId

ArtifactId

ongdb-lucene-index
Last Version

Last Version

3.6.2
Release Date

Release Date

Type

Type

jar
Description

Description

ONgDB - Lucene Index
Integration layer between Neo4j and Lucene, providing one possible implementation of the Index API.
Project Organization

Project Organization

The ONgDB Neo4j Enterprise Fork Graph Database Project
Source Code Management

Source Code Management

https://github.com/graphfoundation/ongdb

Download ongdb-lucene-index

How to add to project

<!-- https://jarcasting.com/artifacts/org.graphfoundation.ongdb/ongdb-lucene-index/ -->
<dependency>
    <groupId>org.graphfoundation.ongdb</groupId>
    <artifactId>ongdb-lucene-index</artifactId>
    <version>3.6.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.graphfoundation.ongdb/ongdb-lucene-index/
implementation 'org.graphfoundation.ongdb:ongdb-lucene-index:3.6.2'
// https://jarcasting.com/artifacts/org.graphfoundation.ongdb/ongdb-lucene-index/
implementation ("org.graphfoundation.ongdb:ongdb-lucene-index:3.6.2")
'org.graphfoundation.ongdb:ongdb-lucene-index:jar:3.6.2'
<dependency org="org.graphfoundation.ongdb" name="ongdb-lucene-index" rev="3.6.2">
  <artifact name="ongdb-lucene-index" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.graphfoundation.ongdb', module='ongdb-lucene-index', version='3.6.2')
)
libraryDependencies += "org.graphfoundation.ongdb" % "ongdb-lucene-index" % "3.6.2"
[org.graphfoundation.ongdb/ongdb-lucene-index "3.6.2"]

Dependencies

compile (5)

Group / Artifact Type Version
org.graphfoundation.ongdb : ongdb-kernel jar 3.6.2
org.apache.lucene : lucene-analyzers-common jar 5.5.5
org.apache.lucene : lucene-core jar 5.5.5
org.apache.lucene : lucene-queryparser jar 5.5.5
org.apache.lucene : lucene-codecs jar 5.5.5

test (14)

Group / Artifact Type Version
org.graphfoundation.ongdb : ongdb-kernel test-jar 3.6.2
org.graphfoundation.ongdb : ongdb-kernel-api test-jar 3.6.2
org.graphfoundation.ongdb : ongdb-logging test-jar 3.6.2
org.graphfoundation.ongdb : ongdb-io test-jar 3.6.2
org.graphfoundation.ongdb : ongdb-common test-jar 3.6.2
commons-codec : commons-codec jar 1.11
org.junit.jupiter : junit-jupiter-migrationsupport jar 5.2.0
org.junit.vintage : junit-vintage-engine jar 5.2.0
org.junit.jupiter : junit-jupiter-engine jar 5.2.0
org.junit.jupiter : junit-jupiter-params jar 5.2.0
org.hamcrest : hamcrest-core jar 1.3
org.hamcrest : hamcrest-library jar 1.3
org.mockito : mockito-core jar 2.21.0
org.graphfoundation.ongdb : ongdb-random-values jar 3.6.2

Project Modules

There are no modules declared in this project.
Build Status

ONgDB - fork of Neo4j Enterprise: Graphs for Everyone

Open Native Graph DB (ONgDB) is a fork of the neo4j project that continues development of the neo4j enterprise codebase as a fully open source project after Neo4j Inc’s Open Core Shift that closed ongoing development and removed existing source code.

ONgDB is a high performance, native graph store with everything you would expect from an enterprise-ready database, including high availability clustering, ACID transactions, and uses the intuitive, pattern-centric open cypher query language. Developers use graph theory-based structures that we call nodes and relationships instead of rows and columns. For many use cases, ONgDB will provide orders of magnitude performance benefits compared to non-native graph, relational and NoSQL databases.

Learn more about our open source mission at The Graph Foundation website.

Using ONgDB

ONgDB is available as a standalone server, an embeddable component or a Docker image. You can download distributions from our CDN or pull images from DockerHub.

Extending ONgDB

We encourage experimentation with ONgDB. You can build extensions to ONgDB, develop library or drivers atop the product, or make contributions directly to the product core. You’ll need to sign a Contributor License Agreement in order for us to accept your patches.

Note
This GitHub repository contains mixed GPL and AGPL code. The Community edition (in the community/ directory) is GPLv3. The Enterprise edition (enterprise/) is licensed under the AGPLv3.

Dependencies

ONgDB is built using Apache Maven version 3.3 and a recent version of supported VM. Bash and Make are also required. Note that maven needs more memory than the standard configuration, this can be achieved with export MAVEN_OPTS="-Xmx512m".

macOS users need to have Homebrew installed.

With brew on macOS

brew install maven

Please note that we do not support building Debian packages on macOS.

With apt-get on Ubuntu

apt install maven openjdk-8-jdk

On top of that, to build Debian packages:

apt install debhelper devscripts dos2unix dpkg make xmlstarlet

Building ONgDB

Before you start running the unit and integration tests in the ONgDB Maven project on a Linux-like system, you should ensure your limit on open files is set to a reasonable value. You can test it with ulimit -n. We recommend you have a limit of at least 40K.

  • A plain mvn clean install will only build the individual jar files.

  • Test execution is, of course, part of the build.

  • In case you just want the jars, without running tests, this is for you: mvn clean install -DskipTests.

  • To build product packages, do export PATH="bin:$PATH" && make clean all in the packaging directory after building artifacts with Maven.

  • To build the documentation see the ONgDB documentation.

  • If you are running into problems building on Windows you can try building ONgDB in a Ubuntu virtual machine.

  • You may need to increase the memory available to Maven: export MAVEN_OPTS="-Xmx512m".

Running ONgDB

After running a mvn clean install, cd into packaging/standalone/target and extract the version you want. If you are not building from source you can start from a published release.

Linux/macOS

On Linux/macOS you want to run:

bin/neo4j start

in the extracted folder to start ONgDB on localhost:7474.

Windows

On Windows you want to run:

bin\neo4j start

in the extracted folder to start ONgDB on localhost:7474.

Maven

If you are not interested in the tarballs and just want to run ONgDB you can instead run a mvn clean install -DminimalBuild and then cd into community/server and run:

mvn clean compile exec:java

to start ONgDB.

Docker

To run with Docker execute the following:

docker run \
   --publish=7474:7474 --publish=7687:7687 \
   --volume=$HOME/ongdb/data:/data \
   graphfoundation/ongdb:3.6

to start localhost:7474. See DockerHub for published release tags and more details.

Licensing

ONgDB Community Edition is an open source product licensed under GPLv3.

ONgDB Enterprise Edition expands the functionality of Community Edition with Enterprise-grade features.

ONgDB Enterprise Edition consists of modules from ONgDB Community Edition and modules licensed under AGPLv3 in this repository.

Misc

ONgDB IDE code style configs can be found at under the build/ folder of this repository.

org.graphfoundation.ongdb

The Graph Foundation

Graphs for the People!

Versions

Version
3.6.2
3.6.1
3.6.0
3.6.0.M2
1.0.2
1.0.1
1.0.0
1.0.0-beta01