blob: 603f58626ed7805bc1703c2c186c47086aef331c [file] [log] [blame]
/*
* 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.
*/
package org.apache.datasketches.hive.theta;
import static org.apache.datasketches.Util.DEFAULT_UPDATE_SEED;
import org.apache.datasketches.hive.common.BytesWritableHelper;
import org.apache.datasketches.theta.Intersection;
import org.apache.datasketches.theta.SetOperation;
import org.apache.datasketches.theta.Sketch;
import org.apache.hadoop.hive.ql.exec.Description;
import org.apache.hadoop.hive.ql.exec.UDF;
import org.apache.hadoop.io.BytesWritable;
/**
* Hive intersection sketch UDF.
*
*/
@Description(
name = "intersectSketch",
value = "_FUNC_(firstSketch, secondSketch[, seed]) - Compute the intersection of the"
+ "given sketches",
extended = "The return value is a binary blob that contains a compact sketch, which can "
+ "be operated on by the other sketch-related functions. "
+ "The seed is optional, "
+ "and using it is not recommended unless you really know why you need it.")
@SuppressWarnings("deprecation")
public class IntersectSketchUDF extends UDF {
/**
* Main logic called by hive if sketchSize is also passed in. Computes the
* intersection of two sketches of same or different column.
*
* @param firstSketchBytes
* first sketch to be intersected.
* @param secondSketchBytes
* second sketch to be intersected.
* @param hashSeed
* Only required if input sketches were constructed using an update seed that was not the default.
* @return resulting sketch of intersection.
*/
public BytesWritable evaluate(final BytesWritable firstSketchBytes,
final BytesWritable secondSketchBytes, final long hashSeed) {
Sketch firstSketch = null;
if (firstSketchBytes != null && firstSketchBytes.getLength() > 0) {
firstSketch = Sketch.wrap(BytesWritableHelper.wrapAsMemory(firstSketchBytes), hashSeed);
}
Sketch secondSketch = null;
if (secondSketchBytes != null && secondSketchBytes.getLength() > 0) {
secondSketch = Sketch.wrap(BytesWritableHelper.wrapAsMemory(secondSketchBytes), hashSeed);
}
final Intersection intersect = SetOperation.builder().setSeed(hashSeed).buildIntersection();
return new BytesWritable(intersect.intersect(firstSketch, secondSketch).toByteArray());
}
/**
* Main logic called by hive if sketchSize is not passed in. Computes the
* intersection of two sketches of same or different column.
*
* @param firstSketchBytes
* first sketch to be intersected.
* @param secondSketchBytes
* second sketch to be intersected.
* @return resulting sketch of intersection.
*/
public BytesWritable evaluate(final BytesWritable firstSketchBytes, final BytesWritable secondSketchBytes) {
return evaluate(firstSketchBytes, secondSketchBytes, DEFAULT_UPDATE_SEED);
}
}