Re: Logback user class

2017-08-09 Thread Aljoscha Krettek
Hi,

It seems there is a bug in the internal Table API operators: they store the 
Logger that is available on the Client machine and deserialising that Logger 
fails on the cluster. I created a Jira issue for this: 
https://issues.apache.org/jira/browse/FLINK-7398 
<https://issues.apache.org/jira/browse/FLINK-7398>

Best,
Aljoscha

> On 26. Jul 2017, at 15:54, Nuno Rafael Goncalves 
>  wrote:
> 
> Even though I have executed the same code with intelliJ and works fine? <>
> The only difference is that intelliJ is using log4j and the other application 
> is using logback.
> Moreover, the snippet is quite simple, it does not reference any user class 
> other than flink's
> Does flink uses user loaded log implementation and tries to use it on server 
> side? Which in this case would justify the logback dependency.
>  
> From: Stephan Ewen [mailto:se...@apache.org <mailto:se...@apache.org>] 
> Sent: 26 de julho de 2017 14:42
> To: Nuno Rafael Goncalves  <mailto:nuno.goncal...@wedotechnologies.com>>
> Subject: Re: Logback user class
>  
> You seem to have a reference to the Logback Logger somewhere in your code.
>  
> The class for that logger seems to be not in the user code jar file, or in 
> the flink lib directory.
> Since Flink does not bundle logback by itself, you need to package this 
> dependency explicitly or add the logback jar to the lib folder.
>  
> On Wed, Jul 26, 2017 at 3:01 PM, nragon  <mailto:nuno.goncal...@wedotechnologies.com>> wrote:
> I've changed that line and compiled it into lib/. Error remains.
> I'm running a local custer with start-local.sh
> 
> 
> 
> --
> View this message in context: 
> http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/Logback-user-class-tp14464p14469.html
>  
> <http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/Logback-user-class-tp14464p14469.html>
> Sent from the Apache Flink User Mailing List archive. mailing list archive at 
> Nabble.com.



RE: Logback user class

2017-07-26 Thread Nuno Rafael Goncalves
Even though I have executed the same code with intelliJ and works fine?
The only difference is that intelliJ is using log4j and the other application 
is using logback.
Moreover, the snippet is quite simple, it does not reference any user class 
other than flink's
Does flink uses user loaded log implementation and tries to use it on server 
side? Which in this case would justify the logback dependency.

From: Stephan Ewen [mailto:se...@apache.org]
Sent: 26 de julho de 2017 14:42
To: Nuno Rafael Goncalves 
Subject: Re: Logback user class

You seem to have a reference to the Logback Logger somewhere in your code.

The class for that logger seems to be not in the user code jar file, or in the 
flink lib directory.
Since Flink does not bundle logback by itself, you need to package this 
dependency explicitly or add the logback jar to the lib folder.

On Wed, Jul 26, 2017 at 3:01 PM, nragon 
mailto:nuno.goncal...@wedotechnologies.com>>
 wrote:
I've changed that line and compiled it into lib/. Error remains.
I'm running a local custer with start-local.sh



--
View this message in context: 
http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/Logback-user-class-tp14464p14469.html
Sent from the Apache Flink User Mailing List archive. mailing list archive at 
Nabble.com.



Re: Logback user class

2017-07-26 Thread nragon
I've changed that line and compiled it into lib/. Error remains.
I'm running a local custer with start-local.sh



--
View this message in context: 
http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/Logback-user-class-tp14464p14469.html
Sent from the Apache Flink User Mailing List archive. mailing list archive at 
Nabble.com.


Re: Logback user class

2017-07-26 Thread Ted Yu
Please take a look at FLINK-6767.

On Wed, Jul 26, 2017 at 3:53 AM, nragon  wrote:

> Hi,
>
> I executing the following snippet on two different environments.
>
> 
> StreamExecutionEnvironment streamEnv =
> StreamExecutionEnvironment.createRemoteEnvironment("x", 6123);
> streamEnv.setParallelism(10);
> StreamTableEnvironment tableEnv =
> TableEnvironment.getTableEnvironment(streamEnv);
> DataStream> stream1 =
> streamEnv.fromElements(new Tuple2<>(1, "hello"));
> tableEnv.registerDataStream("a", stream1);
> DataStream dataStream =
> tableEnv.toAppendStream(tableEnv.sql("SELECT f0, f1 from a"), Row.class);
> dataStream.print();
> streamEnv.execute("job");
> 
>
> When executing through IDE everything works fine. However if I execute the
> same code loaded by a different class loader used on our application I get
> the following error, on flink side.
>
> org.apache.flink.streaming.runtime.tasks.StreamTaskException: Cannot load
> user class: ch.qos.logback.classic.Logger
> ClassLoader info: URL ClassLoader:
> Class not resolvable through given classloader.
> at
> org.apache.flink.streaming.api.graph.StreamConfig.getStreamOperator(
> StreamConfig.java:229)
> at
> org.apache.flink.streaming.runtime.tasks.OperatorChain.<
> init>(OperatorChain.java:95)
> at
> org.apache.flink.streaming.runtime.tasks.StreamTask.
> invoke(StreamTask.java:230)
> at org.apache.flink.runtime.taskmanager.Task.run(Task.java:702)
> at java.lang.Thread.run(Thread.java:745)
>
> On the client side we are using logback but according with the snippet
> there
> is no need to load logback on flink side. Is there any reference binding
> while building a stream graph or job that might reference logback as
> dependency? Or does flink assumes client log mechanism?
>
> Thanks
>
>
>
> --
> View this message in context: http://apache-flink-user-
> mailing-list-archive.2336050.n4.nabble.com/Logback-user-class-tp14464.html
> Sent from the Apache Flink User Mailing List archive. mailing list archive
> at Nabble.com.
>