[
https://issues.apache.org/jira/browse/DRILL-4398?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15201810#comment-15201810
]
Matt Keranen edited comment on DRILL-4398 at 3/18/16 5:25 PM:
--------------------------------------------------------------
Getting similar in 1.6.0 with CTAS into Parquet from csv data stored in HDFS:
{noformat}
Error: SYSTEM ERROR: IllegalStateException: Memory was leaked by query. Memory
leaked: (523264)
Allocator(op:1:12:5:ExternalSort) 20000000/523264/343731840/357913941
(res/actual/peak/limit)
Fragment 1:12
[Error Id: be0fef1f-e02a-422e-808f-2fe171ae7875 on es05:31010] (state=,code=0)
{noformat}
was (Author: mattk):
Getting similar in 1.6.0 with CTAS into Parquet from csv data stored in HDFS.
> SYSTEM ERROR: IllegalStateException: Memory was leaked by query
> ---------------------------------------------------------------
>
> Key: DRILL-4398
> URL: https://issues.apache.org/jira/browse/DRILL-4398
> Project: Apache Drill
> Issue Type: Bug
> Components: Storage - JDBC
> Affects Versions: 1.5.0
> Reporter: N Campbell
> Assignee: Taras Supyk
>
> Several queries fail with memory leaked errors
> select tjoin2.rnum, tjoin1.c1, tjoin2.c1 as c1j2, tjoin2.c2 as c2j2 from
> postgres.public.tjoin1 full outer join postgres.public.tjoin2 on tjoin1.c1 =
> tjoin2.c1
> select tjoin1.rnum, tjoin1.c1, tjoin2.c1 as c1j2, tjoin2.c2 from
> postgres.public.tjoin1, lateral ( select tjoin2.c1, tjoin2.c2 from
> postgres.public.tjoin2 where tjoin1.c1=tjoin2.c1) tjoin2
> SYSTEM ERROR: IllegalStateException: Memory was leaked by query. Memory
> leaked: (40960)
> Allocator(op:0:0:3:JdbcSubScan) 1000000/40960/135168/10000000000
> (res/actual/peak/limit)
> create table TJOIN1 (RNUM integer not null , C1 integer, C2 integer);
> insert into TJOIN1 (RNUM, C1, C2) values ( 0, 10, 15);
> insert into TJOIN1 (RNUM, C1, C2) values ( 1, 20, 25);
> insert into TJOIN1 (RNUM, C1, C2) values ( 2, NULL, 50);
> create table TJOIN2 (RNUM integer not null , C1 integer, C2 char(2));
> insert into TJOIN2 (RNUM, C1, C2) values ( 0, 10, 'BB');
> insert into TJOIN2 (RNUM, C1, C2) values ( 1, 15, 'DD');
> insert into TJOIN2 (RNUM, C1, C2) values ( 2, NULL, 'EE');
> insert into TJOIN2 (RNUM, C1, C2) values ( 3, 10, 'FF');
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)