Re: Fink 15: InvalidProgramException: Table program cannot be compiled. This is a bug

2022-06-10 Thread Shengkai Fang
github.io/janino/changelog.html > > > > > > > > *From: *David Anderson > *Date: *Thursday, June 9, 2022 at 12:05 PM > *To: *Benenson, Michael > *Cc: *user@flink.apache.org , Deshpande, Omkar < > omkar_deshpa...@intuit.com>, Waghulde, Suraj > *Subject:

Re: Fink 15: InvalidProgramException: Table program cannot be compiled. This is a bug

2022-06-09 Thread David Anderson
GeneratedClass.java:74) > ~[flink-table-runtime-1.15.0.jar:1.15.0] > … > Caused by: org.apache.flink.util.FlinkRuntimeException: > org.apache.flink.api.common.InvalidProgramException: Table program cannot > be compiled. This is a bug. Please file an issue. > > at > org.apache.flink.table.runtime.generated.CompileUtil

Re: Fink 15: InvalidProgramException: Table program cannot be compiled. This is a bug

2022-06-09 Thread David Anderson
ted class > 'WatermarkGenerator$0' > > … > > Caused by: org.apache.flink.api.common.InvalidProgramException: Table > program cannot be compiled. This is a bug. Please file an issue. > > at org.apache.flink.table.runtime.generated.CompileUtils.doCompile( > CompileUtils.java:107) > > …

Re: Table program cannot be compiled. This is a bug. Please file an issue

2021-09-13 Thread Caizhi Weng
istake: > > org.apache.flink.util.FlinkRuntimeException: > org.apache.flink.api.common.InvalidProgramException: Table program cannot > be compiled. This is a bug. Please file an issue. > at > org.apache.flink.table.runtime.generated.CompileUtils.compile(CompileUtils.java:76) > at > org.apache.flink.table.runtime.ge

Table program cannot be compiled. This is a bug. Please file an issue

2021-09-13 Thread 张颖
I write a long sql,but when I explain my plan,it make a mistake: org.apache.flink.util.FlinkRuntimeException: org.apache.flink.api.common.InvalidProgramException: Table program cannot be compiled. This is a bug. Please file an issue

Fwd: Flink Table program cannot be compiled when enable checkpoint of StreamExecutionEnvironment

2020-06-16 Thread 杜斌
-- Forwarded message - 发件人: 杜斌 Date: 2020年6月17日周三 上午10:31 Subject: Re: Flink Table program cannot be compiled when enable checkpoint of StreamExecutionEnvironment To: add the full stack trace here: Caused by: org.apache.flink.shaded.guava18

Re: Table program cannot be compiled

2019-05-20 Thread Timo Walther
Hi Shahar, yes the number of parameters should be the issue for a cannot compile exception. If you moved most of the constants to a member in the function, it should actually work. Do you have a little reproducible example somewhere? Thanks, Timo Am 16.05.19 um 19:59 schrieb shkob1: Hi

Re: Table program cannot be compiled

2019-05-16 Thread shkob1
Hi Timo, Thanks for the link. Not sure i understand your suggestion though, is the goal here reducing the amount of parameters coming to the UDF? if thats the case i can maybe have the tag names there, but still need the expressions to get evaluated before entering the eval. Do you see this in a

Re: Table program cannot be compiled

2019-05-16 Thread Timo Walther
Hi, too many arguments for calling a UDF could currently lead to "grows beyond 64 KB" and maybe also causes the GC exception. This is a known issue covered in https://issues.apache.org/jira/browse/FLINK-8921. Could you also add the tags to the function itself? Maybe as a static map for

Re: Table program cannot be compiled

2019-05-15 Thread Andrey Zagrebin
Hi, I am looping in Timo and Dawid to look at the problem. On Tue, May 14, 2019 at 9:12 PM shkob1 wrote: > BTW looking at past posts on this issue[1] it should have been fixed? i'm > using version 1.7.2 > Also the recommendation was to use a custom function, though that's exactly > what im

Re: Table program cannot be compiled

2019-05-14 Thread shkob1
BTW looking at past posts on this issue[1] it should have been fixed? i'm using version 1.7.2 Also the recommendation was to use a custom function, though that's exactly what im doing with the conditionalArray function[2] Thanks! [1]

Re: Table program cannot be compiled

2019-05-14 Thread shkob1
In a subsequent run i get Caused by: org.codehaus.janino.JaninoRuntimeException: Code of method "split$3681$(LDataStreamCalcRule$3682;)V" of class "DataStreamCalcRule$3682" grows beyond 64 KB -- Sent from: http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/

Table program cannot be compiled

2019-05-14 Thread shkob1
Hey, While running a SQL query i get an OutOfMemoryError exception and "Table program cannot be compiled" [2]. In my scenario i'm trying to enrich an event using an array of tags, each tag has a boolean classification (like a WHERE clause) and with a custom function i'm filtering

Re: [Table API example] Table program cannot be compiled. This is a bug. Please file an issue

2018-11-30 Thread Fabian Hueske
Hi Marvin, Can you post the query (+ schema of tables) that lead to this exception? Thank you, Fabian Am Fr., 30. Nov. 2018 um 10:55 Uhr schrieb Marvin777 < xymaqingxiang...@gmail.com>: > Hi all, > > I have a simple test for looking at Flink Table API and hit an exception > reported as a bug.

[Table API example] Table program cannot be compiled. This is a bug. Please file an issue

2018-11-30 Thread Marvin777
Hi all, I have a simple test for looking at Flink Table API and hit an exception reported as a bug. I wonder though if it is a missing something. BTW, the example is flink-examples-table-with-dependencies.jar, and the version is 1.4.2 . Thanks Mavin. [image: image.png]