Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 946 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 946 Bytes

Java CI with Maven

⚗️Mercury

Mercury is a collection of UDFs for Hive. There are two types of Hive UDFs: simple and generic. While simple UDFs are easier to construct, they are less flexible and generally less efficient.

Category Description
collect Deals with collections (Array, Map, Struct)
statistics Deals with statistical operations
.  
├── ...   
├── collect  
│ ├── ArrayIntersection  
│ ├── ArraySort  
│ ├── ArraySubtract  
│ ├── ArrayUnion  
│ └── ...  
├── statistcs  
│ ├── JaccardSimilarity  
│ └── ...   
└── ...