You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Rahul Challapalli (JIRA)" <ji...@apache.org> on 2015/02/19 00:22:11 UTC

[jira] [Commented] (DRILL-2268) Applying flatten after a join fails with IOBE

    [ https://issues.apache.org/jira/browse/DRILL-2268?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14326723#comment-14326723 ] 

Rahul Challapalli commented on DRILL-2268:
------------------------------------------

The below case also fails with a IOBE
{code}
select flatten(sub1.events)  from (select t1.events from `data.json` t1 inner join `data.json` t2 on t1.uid=t2.uid) sub1;
Query failed: RemoteRpcException: Failure while running fragment., index: -4, length: 4 (expected: range(0, 16384)) [ 72effd1c-52f0-4a69-8a83-df69682c0e87 on qa-node190.qa.lab:31010 ]
[ 72effd1c-52f0-4a69-8a83-df69682c0e87 on qa-node190.qa.lab:31010 ]
{code}

The below result could be related to DRILL-2254
{code}
select flatten(sub1.lst_lst)  from (select t1.lst_lst lst_lst from `data.json` t1 inner join `data.json` t2 on t1.uid=t2.uid) sub1;
+------------+
|   EXPR$0   |
+------------+
| null       |
| null       |
| null       |
| null       |
+------------+
{code}

And finally this one succeeds : 
{code}
 select flatten(sub1.lst_lst[0])  from (select t1.lst_lst lst_lst from `data.json` t1 inner join `data.json` t2 on t1.uid=t2.uid) sub1;
+------------+
|   EXPR$0   |
+------------+
| 1          |
| 2          |
| 3          |
| 4          |
| 5          |
| 1          |
| 2          |
| 3          |
| 4          |
| 5          |
+------------+
{code}


> Applying flatten after a join  fails with IOBE
> ----------------------------------------------
>
>                 Key: DRILL-2268
>                 URL: https://issues.apache.org/jira/browse/DRILL-2268
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Functions - Drill
>            Reporter: Rahul Challapalli
>            Assignee: Jason Altekruse
>            Priority: Critical
>
> git.commit.id.abbrev=6676f2d
> Data Set :
> {code}
> {
>   "id" : 1,
>   "events" : [
>         { "evnt_id":"e1", "campaign_id":"c1", "event_name":"e1_name", "event_time":1000000, "type" : "cmpgn9"},
>         { "evnt_id":"e2", "campaign_id":"c1", "event_name":"e2_name", "event_time":2000000, "type" : "cmpgn4"}
>   ],
>   "lst_lst" : [[1,2],[3,4]],
>   "lst" : [1,2,3,4]
> }
> {
>   "id" : 2,
>   "events" : [
>         { "evnt_id":"e1", "campaign_id":"c1", "event_name":"e1_name", "event_time":1000000, "type" : "cmpgn9"},
>         { "evnt_id":"e2", "campaign_id":"c1", "event_name":"e2_name", "event_time":2000000, "type" : "cmpgn4"}
>   ],
>   "lst_lst" : [[1,2],[3,4]],
>   "lst" : [1,2,3,4]
> }
> {code}
> The below query which tries to flatten a repeated list fails :
> {code}
> select flatten(t1.lst_lst) from `temp.json` t1 inner join `temp.json` t2 on t1.uid=t2.uid;
> Query failed: RemoteRpcException: Failure while running fragment., index: -4, length: 4 (expected: range(0, 16384)) [ e32cd0c6-a84a-4bbb-9812-bc0f7de17a68 on qa-node190.qa.lab:31010 ]
> [ e32cd0c6-a84a-4bbb-9812-bc0f7de17a68 on qa-node190.qa.lab:31010 ]
> {code}
> The below query which tries to flatten a repeated map also fails
> {code}
> select flatten(t1.events) from `temp.json` t1 inner join `temp.json` t2 on t1.uid=t2.uid;
> Query failed: RemoteRpcException: Failure while running fragment., index: -4, length: 4 (expected: range(0, 16384)) [ c9adffb0-44c6-4ecb-9093-1f3fd13837f9 on qa-node190.qa.lab:31010 ]
> [ c9adffb0-44c6-4ecb-9093-1f3fd13837f9 on qa-node190.qa.lab:31010 ]
> {code}
> The below 2 queries return empty results. I can open a different JIRA if the below 2 failures are because of a completely different reason
> {code}
> select flatten(t1.lst_lst[0]) from `temp.json` t1 inner join `temp.json` t2 on t1.uid=t2.uid;
> +------------+
> |   EXPR$0   |
> +------------+
> +------------+
> {code}
> {code}
> select flatten(t1.lst) from `temp.json` t1 inner join `temp.json` t2 on t1.uid=t2.uid;
> +------------+
> |   EXPR$0   |
> +------------+
> +------------+
> {code}
> Let me know if you have any questions



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)