Adding license to misc files, update readme
11 files changed
tree: 6c6890a7e36d1b788570e0e2555881ec05c89272
  1. src/
  2. tools/
  3. .gitignore
  4. .travis.yml
  5. DISCLAIMER-WIP
  6. LICENSE
  7. NOTICE
  8. pom.xml
  9. README.md
README.md

Build Status Maven Central Language grade: Java Total alerts Coverage Status

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

DataSketches UDF Adaptors for Hive

Please refer to our website for more comprehensive information about the various sketching algorithms and how to use them.

Documentation and Feedback

DataSketches Library Website

Java Core Overview

Hadoop Hive UDFs

Java Core Javadocs

Hive UDFs

Forum

Downloading Latest Release

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

Zip File from Apache Archive

Jar Files from Maven Central

GitHub

Build Instructions

JDK8 is Required Compiler

This DataSketches component is pure Java and you must compile using JDK 8.

Recommended Build Tool

The DataSketches-java component 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:

  • datasketches-hive-X.Y.Z-incubating.jar The compiled main class files.
  • datasketches-hive-X.Y.Z-incubating-tests.jar The compiled test class files.
  • datasketches-hive-X.Y.Z-incubating-sources.jar The main source files.
  • datasketches-hive-X.Y.Z-incubating-test-sources.jar The test source files
  • datasketches-hive-X.Y.Z-incubating-javadoc.jar The compressed Javadocs.

Dependencies

Run-time

This has the following top-level dependencies:

  • org.apache.datasketches : datasketches-java
  • org.apache.hive : hive-exec
  • org.apache.hadoop : hadoop-common
  • org.apache.hadoop : hadoop-mapreduce-client-core

Testing

See the pom.xml file for test dependencies.