You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "zhangminglei (JIRA)" <ji...@apache.org> on 2018/07/29 07:43:00 UTC

[jira] [Resolved] (FLINK-9614) Improve the error message for Compiler#compile

     [ https://issues.apache.org/jira/browse/FLINK-9614?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

zhangminglei resolved FLINK-9614.
---------------------------------
    Resolution: Won't Fix

> Improve the error message for Compiler#compile
> ----------------------------------------------
>
>                 Key: FLINK-9614
>                 URL: https://issues.apache.org/jira/browse/FLINK-9614
>             Project: Flink
>          Issue Type: Improvement
>          Components: Table API &amp; SQL
>    Affects Versions: 1.5.0
>            Reporter: zhangminglei
>            Assignee: zhangminglei
>            Priority: Major
>              Labels: pull-request-available
>
> When the below sql has too long. Like
> case when .... case when .....
>  when host in ('114.67.56.94','114.67.56.102','114.67.56.103','114.67.56.106','114.67.56.107','183.60.220.231','183.60.220.232','183.60.219.247','114.67.56.94','114.67.56.102','114.67.56.103','114.67.56.106','114.67.56.107','183.60.220.231','183.60.220.232','183.60.219.247','114.67.56.94','114.67.56.102','114.67.56.103','114.67.56.106','114.67.56.107','183.60.220.231','183.60.220.232','183.60.219.247') then 'condition'
> Then cause the {{StackOverflowError}}. And the current code is below, we can solve this by setting -Xss 20m, instead of {{This is a bug......}}
> {code:java}
> trait Compiler[T] {
>   @throws(classOf[CompileException])
>   def compile(cl: ClassLoader, name: String, code: String): Class[T] = {
>     require(cl != null, "Classloader must not be null.")
>     val compiler = new SimpleCompiler()
>     compiler.setParentClassLoader(cl)
>     try {
>       compiler.cook(code)
>     } catch {
>       case t: Throwable =>
>         throw new InvalidProgramException("Table program cannot be compiled. " +
>           "This is a bug. Please file an issue.", t)
>     }
>     compiler.getClassLoader.loadClass(name).asInstanceOf[Class[T]]
>   }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)