hnswlib-jna-legacy

This project contains a JNA (Java Native Access) implementation built on top of the native Hnswlib (Hierarchical Navigable Small World Graph) which offers a fast approximate nearest neighbor search. It includes some modifications and simplifications in order to provide Hnswlib features with native like performance to applications written in Java. Differently from the original Python implementation, the multi-thread support is not included in the bindings itself but it can be easily implemented on the Java side.

License

License

Categories

Categories

JNA Development Tools Native Search Business Logic Libraries
GroupId

GroupId

com.stepstone.search.hnswlib.jna
ArtifactId

ArtifactId

hnswlib-jna-legacy
Last Version

Last Version

1.4.2
Release Date

Release Date

Type

Type

jar
Description

Description

hnswlib-jna-legacy
This project contains a JNA (Java Native Access) implementation built on top of the native Hnswlib (Hierarchical Navigable Small World Graph) which offers a fast approximate nearest neighbor search. It includes some modifications and simplifications in order to provide Hnswlib features with native like performance to applications written in Java. Differently from the original Python implementation, the multi-thread support is not included in the bindings itself but it can be easily implemented on the Java side.
Source Code Management

Source Code Management

https://github.com/stepstone-tech/hnswlib-jna/tree/master/hnswlib-jna-legacy

Download hnswlib-jna-legacy

How to add to project

<!-- https://jarcasting.com/artifacts/com.stepstone.search.hnswlib.jna/hnswlib-jna-legacy/ -->
<dependency>
    <groupId>com.stepstone.search.hnswlib.jna</groupId>
    <artifactId>hnswlib-jna-legacy</artifactId>
    <version>1.4.2</version>
</dependency>
// https://jarcasting.com/artifacts/com.stepstone.search.hnswlib.jna/hnswlib-jna-legacy/
implementation 'com.stepstone.search.hnswlib.jna:hnswlib-jna-legacy:1.4.2'
// https://jarcasting.com/artifacts/com.stepstone.search.hnswlib.jna/hnswlib-jna-legacy/
implementation ("com.stepstone.search.hnswlib.jna:hnswlib-jna-legacy:1.4.2")
'com.stepstone.search.hnswlib.jna:hnswlib-jna-legacy:jar:1.4.2'
<dependency org="com.stepstone.search.hnswlib.jna" name="hnswlib-jna-legacy" rev="1.4.2">
  <artifact name="hnswlib-jna-legacy" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.stepstone.search.hnswlib.jna', module='hnswlib-jna-legacy', version='1.4.2')
)
libraryDependencies += "com.stepstone.search.hnswlib.jna" % "hnswlib-jna-legacy" % "1.4.2"
[com.stepstone.search.hnswlib.jna/hnswlib-jna-legacy "1.4.2"]

Dependencies

compile (2)

Group / Artifact Type Version
net.java.dev.jna : jna jar 4.2.2
com.stepstone.search.hnswlib.jna : hnswlib-jna Optional jar 1.4.2

test (2)

Group / Artifact Type Version
junit : junit jar 4.13.1
com.stepstone.search.hnswlib.jna : hnswlib-jna test-jar 1.4.2

Project Modules

There are no modules declared in this project.

Hnswlib with JNA (Java Native Access)

This project contains a JNA (Java Native Access) implementation built on top of the native Hnswlib (Hierarchical Navigable Small World Graph) which offers a fast approximate nearest neighbor search. It includes some modifications and simplifications in order to provide Hnswlib features with native like performance to applications written in Java. Differently from the original Python implementation, the multi-thread support is not included in the bindings itself but it can be easily implemented on the Java side. Hnswlib-jna works in collaboration with a shared library which contains the native code. For more information, please check the sections below.

Dependencies

Pre-Generated Shared Library

The jar file includes some pre-generated libraries for Windows, Debian Linux and MacOS (x86-64) which should allow an easy integration and abstract all complexity related to compilation. An extra library for Debian Linux (aarch64) is also available for tests with AWS Graviton 2. In the case of operating system issues, a runtime exception will be thrown and the manual compilation will be advised.

On Windows, the Build Tools for Visual Studio 2019 (C++ build tools) is required.

Using in Your Project

Add the following dependency in your pom.xml:

<dependency>
    <groupId>com.stepstone.search.hnswlib.jna</groupId>
    <artifactId>hnswlib-jna</artifactId>
    <version>1.4.0</version>
</dependency>

For more information and implementation details, please check hnswlib-jna-example.

Manual Compilation (Whenever it is advised)

This section includes more information about how to compile the shared libraries on Windows, Linux and Mac for different architectures (e.g., x86-64, aarch64). If you were able to run the example project on your PC, this section can be ignored.

Compiling the Shared Library

To generate the shared library required by this project, binding.cpp needs to be compiled using a C compiler (e.g., clang or gcc) with C++11 support, at least. The library can be generated with clang via:

clang++ -O3 -shared bindings.cpp -I hnswlib -o <project_folder>/lib/libhnswlib-jna-x86-64.dylib

Note: The shared library's name must be: libhnswlib-jna-ARCH.EXT where ARCH is the canonical architecture name (e.g., x86-64 for AMD64, or aarch64 for ARM64) and EXT is dylib for MacOS, for windows use dll, and linux so.

Instructions for Windows

Using Visual Studio Build Tools
  1. Download and install LLVM;
  2. Download and install Build Tools for Visual Studio 2019 (or higher);
  3. Compile the bindings using clang:
clang++ -O3 -shared bindings.cpp -I hnswlib -o <project_folder>/lib/libhnswlib-jna-x86-64.dll

This procedure will generate the 3 necessary files: libhnswlib-jna-x86-64.dll, libhnswlib-jna-x86-64.exp and libhnswlib-jna-x86-64.lib.

Using MinGW64
  1. Download and install LLVM;
  2. Make sure that LLVM's bin folder is in your PATH;
  3. Download MinGW-w64 with Headers for Clang;
  4. Unpack the archive and include MinGW64's bin folder into your PATH as well;
  5. Compile the bindings using clang:
clang++ -O3 -target x86_64-pc-windows-gnu -shared bindings.cpp -I hnswlib -o <project_folder>lib/libhnswlib-jna-x86-64.dll -lpthread

This procedure will generate libhnswlib-jna-x86-64.dll.

Instructions for Linux

  1. Download and install clang (older versions might trigger compilation issues, so it is better use a recent version);
  2. Compile the bindings using clang:
clang++ -O3 -fPIC -shared -std=c++11 bindings.cpp -I hnswlib -o <project_folder>/lib/libhnswlib-jna-x86-64.so

This procedure will generate libhnswlib-jna-x86-64.so.

Reading the Shared Library in Your Project

Once the shared library is available, it is necessary to tell the JVM and JNA where it is located. This can be done by setting the property jna.library.path via JVM parameters or system properties.

Via JVM parameters

-Djna.library.path=<project_folder>/lib

Programmatically via System Class

System.setProperty("jna.library.path", "<project_folder>/lib");

For more information and implementation details, please check hnswlib-jna-example.

License

Copyright 2020 StepStone Services

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

com.stepstone.search.hnswlib.jna

StepStone Tech

Technology of StepStone.

Versions

Version
1.4.2
1.4.1
1.4.0
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.1