Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A9BD711D30 for ; Fri, 12 Sep 2014 22:51:36 +0000 (UTC) Received: (qmail 1670 invoked by uid 500); 12 Sep 2014 22:51:35 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 1622 invoked by uid 500); 12 Sep 2014 22:51:35 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 1490 invoked by uid 99); 12 Sep 2014 22:51:35 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Sep 2014 22:51:35 +0000 Date: Fri, 12 Sep 2014 22:51:35 +0000 (UTC) From: "Sylvain Lebresne (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CASSANDRA-7888) Decide the best way to define user-define functions MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CASSANDRA-7888?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14132250#comment-14132250 ] Sylvain Lebresne commented on CASSANDRA-7888: --------------------------------------------- bq. The problem with the static method approach is that it force us internally to perform a method call via reflection for each call of the function. It's a fair point. But maybe the simpler solution is just to remove the option of having UDT as 'classes'. After all, it doesn't really provide any benefit over CASSANDRA-7562 and simpler is better. So I propose we just remove the UDF-as-classes option. Regarding user-defined aggregates, I think we should just copy Postresql approach which is described [here|http://www.postgresql.org/docs/9.1/static/sql-createaggregate.html]. This solves the problem of how to do scripting language for aggregates in particular. > Decide the best way to define user-define functions > --------------------------------------------------- > > Key: CASSANDRA-7888 > URL: https://issues.apache.org/jira/browse/CASSANDRA-7888 > Project: Cassandra > Issue Type: Improvement > Reporter: Benjamin Lerer > Labels: cql > Fix For: 3.0 > > > The goal of this ticket is to define what would be the best way from the ease of use and performance point of view for defining User Defined Scalar Function and User Defined Aggregate Function. > I would like to clarify this point before we add support for User Defined Aggregate Function as part of #4914 > The current version of UDF is supporting only the addition of Scalar Function and does so by allowing a User to provide some classes containing static methods that can then be loaded as functions within Cassandra. > The problem with the static method approach is that it force us internally to perform a method call via reflection for each call of the function. So if the request load 10 000 rows the static method will be called 10 000 times via reflection. > As the Method object is cached the HotSpot compiler will optimize the method call after a certain amount of iterations. Nevertheless, from a performance point of view it is definetly not a optimal situation. > Ideally a proper solution from the performance point of view will limit the impact to the function loading time (when the function is first added or at startup time) but not at query time. > The first solution to solve that problem would be to force the designer of a new function to implements a specific interface like: > {code} > public interface UserDefinedScalarFunction > { > Object execute(Object... args); > } > {code} > or for aggregate function > {code} > public interface UserDefinedAggregateFunction > { > UserDefinedAggregation newAggregate(); > public interface UserDefinedAggregate > { > void add(Object... args); > Object getResult(); > void reset(); > } > } > {code} > This will allow use to create one object instance via reflection and then reuse that object everytime the function is called. > The problems with that approach is that we loose the type safety of the arguments and of the return type and by consequence we will be able to detect a problem only at running time. > The second solution would be to force the designer of a new function to create a new class in which it marks the method to execute with an annotation. > {code} > public class AbsFunction > { > @Execute > public double abs(double d) > { > return Maths.abs(d); > } > } > {code} > The same approach for aggregate functions will give: > {code} > public class AvgFunction > { > private double sum; > private int count > @Add > public void addValue(double d) > { > sum += d; > count++; > } > @Get > public double getAvg() > { > if (count == 0) > return 0; > return sum / count > } > > @Reset > public void clear() > { > sum = 0; > count = 0; > } > } > {code} > For this approach to work we need to use, at loading time, code generation for extending the provided class with the method needed to adapt the class to our framework. > The disavantage of it is that we will need to add a new library like javaassist to the libraries used by C*. > Its advantage is that it will allow us to detect type mismatch at creation time. -- This message was sent by Atlassian JIRA (v6.3.4#6332)