Home

Awesome

<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you 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. -->

Maven Central Coverage Status

=================

Apache<sup>®</sup> DataSketches™ Core Java Library Component

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 a dependency of other components of the library that create adaptors for target systems, such as the Apache Pig adaptor, the Apache Hive adaptor, and others.

Note that we have a parallel core component for C++ and Python implementations of the same sketch algorithms, datasketches-cpp and datasketches-python

Please visit the main DataSketches website for more information.

If you are interested in making contributions to this site please see our Community page for how to contact us.


Maven Build Instructions

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

JDK17 is required to compile

This component depends on the datasketches-memory-4.1.X component, and, as a result, must be compiled with JDK17 and this dependency:

<dependency>
  <groupId>org.apache.datasketches</groupId>
  <artifactId>datasketches-memory</artifactId>
  <version>4.1.0</version>
</dependency>

If your application only relies on the APIs of datasketches-java no special JVM arguments are required. However, if your application also directly relies on the APIs of the datasketches-memory component, you may need the additional JVM argument --add-modules=jdk.incubator.foreign.

Recommended Build Tool

This DataSketches component is structured as a Maven project and Maven is the recommended Build Tool.

To run normal unit tests:

$ mvn clean test

To install jars built from the downloaded source:

$ mvn clean install -DskipTests=true

This will create the following jars:

Dependencies

Run-time

There is one run-time dependency:

Testing

See the pom.xml file for test dependencies.

Known Issues

SpotBugs