Re: Class Cache

2017-08-01 Thread Mike Accola
07/31/2017 04:13 PM Subject: Re: Class Cache Hey Mike! Thanks for the detailed information about your setup. I'm also puzzled by this... (1) Which version of Flink are you using? We recently merged some changes to the JAR distribution components, which might cause this (although I think

Re: Class Cache

2017-07-31 Thread Vishnu Viswanath
;> ProcessFunction). > >> > >> I have been specifying --classpath option on my flink run command to > pull > >> in the mylib2.jar . > >> > >> Plus, I have been rebuilding mylib1.jar frequently just to be safe and > it > >> hasn

Re: Class Cache

2017-07-31 Thread Ufuk Celebi
on my flink run command to pull >> in the mylib2.jar . >> >> Plus, I have been rebuilding mylib1.jar frequently just to be safe and it >> hasn't made a difference. >> >> >> Mike Accola >> macc...@us.ibm.com >> >> >> >> &g

Re: Class Cache

2017-07-31 Thread Stephan Ewen
gt; > Plus, I have been rebuilding mylib1.jar frequently just to be safe and it > hasn't made a difference. > > > Mike Accola > macc...@us.ibm.com > > > > > > From: Eron Wright > To: dev@flink.apache.org > Date: 07/31/2017 01:47 PM > Su

Re: Class Cache

2017-07-31 Thread Mike Accola
frequently just to be safe and it hasn't made a difference. Mike Accola macc...@us.ibm.com From: Eron Wright To: dev@flink.apache.org Date: 07/31/2017 01:47 PM Subject: Re: Class Cache A Flink program is typically packaged as an 'uber-jar' containing its dependenc

Re: Class Cache

2017-07-31 Thread Eron Wright
A Flink program is typically packaged as an 'uber-jar' containing its dependencies. The Flink quickstart project illustrates this (see the use of the shading plugin in pom.xml). Based on your description, the classes of mylib2.jar were copied into mylib1.jar when the latter was built. Try rebui

Class Cache

2017-07-31 Thread Mike Accola
Are classes cached somewhere in flink? I am running in a very basic, local environment on Linux (start_local.sh). I've somehow gotten my environment into a strange state that I don't understand. I feel like I am overlooking something simple, but I've checked everything I can think of. My ma