[jira] [Commented] (IMPALA-11527) SUPPORT user-defined table functions (UDTFs)

2024-03-19 Thread Manish Maheshwari (Jira)


[ 
https://issues.apache.org/jira/browse/IMPALA-11527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17828455#comment-17828455
 ] 

Manish Maheshwari commented on IMPALA-11527:


Hi [~gaoxiaoqing] - Checking in, Are you planning to work on this feature?

> SUPPORT user-defined table functions (UDTFs)
> 
>
> Key: IMPALA-11527
> URL: https://issues.apache.org/jira/browse/IMPALA-11527
> Project: IMPALA
>  Issue Type: New Feature
>Reporter: gaoxiaoqing
>Assignee: gaoxiaoqing
>Priority: Major
>
> Currently, Impala does not support user-defined table functions (UDTFs), some 
> Data Analysis Scenario need this feature such as funnel analysis, session 
> analysis and so on. Other database Hive, Max compute support udtf. for 
> example explode in hive:
> https://github.com/apache/hive/blob/master/ql/src/test/results/clientpositive/llap/udtf_explode.q.out
> Do we have plan to support impala udtf? The syntax of query is as follows,
> select udtf_explode(info) as (name, phone) from table;
> Besides, we can also support the following syntax,
> select udtf_example(c1, c2, c3) over (partition by c1 order by c2) as (num, 
> c1, c2) from table;
> Users can create udtf, the create grammar as follows:
> create transform function udtf_example(BIGINT, STRING, STRING, ...)
> location '/tmp/libimpalaExts.so' prepare_fn='' init_fn='' update_fn='' 
> finalize_fn='' close_fn=''



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: issues-all-unsubscr...@impala.apache.org
For additional commands, e-mail: issues-all-h...@impala.apache.org



[jira] [Commented] (IMPALA-11527) SUPPORT user-defined table functions (UDTFs)

2022-08-29 Thread gaoxiaoqing (Jira)


[ 
https://issues.apache.org/jira/browse/IMPALA-11527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17597008#comment-17597008
 ] 

gaoxiaoqing commented on IMPALA-11527:
--

Thanks for your reply. [~stigahuang]  [~csringhofer]  I wrote the udtf usage 
scenario and how to create the query plan. 
[https://docs.google.com/document/d/1-dVfGeIfXBpVKtoWmPye11BO7Wn-sQTqBMemKf9zJ4k/edit#]
 

After we come to an agreement, I'll finish the design doc.

> SUPPORT user-defined table functions (UDTFs)
> 
>
> Key: IMPALA-11527
> URL: https://issues.apache.org/jira/browse/IMPALA-11527
> Project: IMPALA
>  Issue Type: New Feature
>Reporter: gaoxiaoqing
>Assignee: gaoxiaoqing
>Priority: Major
>
> Currently, Impala does not support user-defined table functions (UDTFs), some 
> Data Analysis Scenario need this feature such as funnel analysis, session 
> analysis and so on. Other database Hive, Max compute support udtf. for 
> example explode in hive:
> https://github.com/apache/hive/blob/master/ql/src/test/results/clientpositive/llap/udtf_explode.q.out
> Do we have plan to support impala udtf? The syntax of query is as follows,
> select udtf_explode(info) as (name, phone) from table;
> Besides, we can also support the following syntax,
> select udtf_example(c1, c2, c3) over (partition by c1 order by c2) as (num, 
> c1, c2) from table;
> Users can create udtf, the create grammar as follows:
> create transform function udtf_example(BIGINT, STRING, STRING, ...)
> location '/tmp/libimpalaExts.so' prepare_fn='' init_fn='' update_fn='' 
> finalize_fn='' close_fn=''



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: issues-all-unsubscr...@impala.apache.org
For additional commands, e-mail: issues-all-h...@impala.apache.org



[jira] [Commented] (IMPALA-11527) SUPPORT user-defined table functions (UDTFs)

2022-08-24 Thread Quanlong Huang (Jira)


[ 
https://issues.apache.org/jira/browse/IMPALA-11527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17584566#comment-17584566
 ] 

Quanlong Huang commented on IMPALA-11527:
-

Thanks for raising this JIRA! There is an Epic tracking this feature: 
IMPALA-9521. Maybe we can start from some simple ones like IMPALA-9522, 
IMPALA-9523, IMPALA-9524, IMPALA-9525, IMPALA-9526.

Before jumping into coding, it'd nice to have a design doc for discussion.

> SUPPORT user-defined table functions (UDTFs)
> 
>
> Key: IMPALA-11527
> URL: https://issues.apache.org/jira/browse/IMPALA-11527
> Project: IMPALA
>  Issue Type: New Feature
>Reporter: gaoxiaoqing
>Assignee: gaoxiaoqing
>Priority: Major
>
> Currently, Impala does not support user-defined table functions (UDTFs), some 
> Data Analysis Scenario need this feature such as funnel analysis, session 
> analysis and so on. Other database Hive, Max compute support udtf. for 
> example explode in hive:
> https://github.com/apache/hive/blob/master/ql/src/test/results/clientpositive/llap/udtf_explode.q.out
> Do we have plan to support impala udtf? The syntax of query is as follows,
> select udtf_explode(info) as (name, phone) from table;
> Besides, we can also support the following syntax,
> select udtf_example(c1, c2, c3) over (partition by c1 order by c2) as (num, 
> c1, c2) from table;
> Users can create udtf, the create grammar as follows:
> create transform function udtf_example(BIGINT, STRING, STRING, ...)
> location '/tmp/libimpalaExts.so' prepare_fn='' init_fn='' update_fn='' 
> finalize_fn='' close_fn=''



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: issues-all-unsubscr...@impala.apache.org
For additional commands, e-mail: issues-all-h...@impala.apache.org



[jira] [Commented] (IMPALA-11527) SUPPORT user-defined table functions (UDTFs)

2022-08-24 Thread gaoxiaoqing (Jira)


[ 
https://issues.apache.org/jira/browse/IMPALA-11527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17584096#comment-17584096
 ] 

gaoxiaoqing commented on IMPALA-11527:
--

[~stigahuang] I'm interested on this task if you have this plan :)

> SUPPORT user-defined table functions (UDTFs)
> 
>
> Key: IMPALA-11527
> URL: https://issues.apache.org/jira/browse/IMPALA-11527
> Project: IMPALA
>  Issue Type: New Feature
>Reporter: gaoxiaoqing
>Assignee: gaoxiaoqing
>Priority: Major
>
> Currently, Impala does not support user-defined table functions (UDTFs), some 
> Data Analysis Scenario need this feature such as funnel analysis, session 
> analysis and so on. Other database Hive, Max compute support udtf. for 
> example explode in hive:
> https://github.com/apache/hive/blob/master/ql/src/test/results/clientpositive/llap/udtf_explode.q.out
> Do we have plan to support impala udtf? The syntax of query is as follows,
> select udtf_explode(info) as (name, phone) from table;
> Besides, we can also support the following syntax,
> select udtf_example(c1, c2, c3) over (partition by c1 order by c2) as (num, 
> c1, c2) from table;
> Users can create udtf, the create grammar as follows:
> create transform function udtf_example(BIGINT, STRING, STRING, ...)
> location '/tmp/libimpalaExts.so' prepare_fn='' init_fn='' update_fn='' 
> finalize_fn='' close_fn=''



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: issues-all-unsubscr...@impala.apache.org
For additional commands, e-mail: issues-all-h...@impala.apache.org