=================
This is the core Java component of the DataSketches library. It contains all of the sketching algorithms and can be accessed directly from user applications. This component is also is a dependency of other components of the library that create adaptors for target systems, such as Hadoop Pig and Hadoop Hive. Please refer to our website for more comprehensive information about the various sketching algorithms and how to use them.
Note that we have a parallel core component for C++ and Python implementations of the same sketch algorithms, incubator-datasketches-cpp.
NOTE: This component accesses resource files for testing. As a result, the directory elements of the full absolute path of the target installation directory must qualify as Java identifiers. In other words, the directory elements must not have any space characters (or non-Java identifier characters) in any of the path elements.
This is required by the Oracle Java Specification in order to ensure location-independent access to resources: See Oracle Location-Independent Access to Resources
This DataSketches component is pure Java and you must compile using JDK 8.
This DataSketches component is structured as a Maven project and Maven is the recommended Build Tool.
There are two types of tests: normal unit tests and tests run by the strict profile.
To run normal unit tests:
$ mvn clean test
To run the strict profile tests:
$ mvn clean test -P strict
To install jars built from the downloaded source:
$ mvn clean install -DskipTests=true
This will create the following jars:
There is one run-time dependency:
See the pom.xml file for test dependencies.
We have two ASF the-ASF.slack.com slack channels:
For bugs and performance issues: Issues for datasketches-java
For general questions about using the library please subscribe: Users Mail List
If you are interested in contributing please subscribe: Developers Mail list