Re: Running example in IntelliJ

2015-03-08 Thread Stephan Ewen
If you run it from the IDE, the logging depends on whether you have a "log4j.properties" file in your classpath. The simplest way to do this is to copy on of the existing ones temporarily into the projects "src/main/resources" folder. I usually use the one in "flink-runtime/src/test/resources/log4

Re: Running example in IntelliJ

2015-03-06 Thread Dulaj Viduranga
Hi, Is there a way to turn off JobManager and TaskManager messages in the output? (Only example outputs). Maybe a flag? > On Mar 6, 2015, at 4:45 PM, Till Rohrmann wrote: > > Yes, this means that a task has finished its computation and can be removed > from the TaskManager. > > On Fri, Mar 6,

Re: Running example in IntelliJ

2015-03-06 Thread Till Rohrmann
Yes, this means that a task has finished its computation and can be removed from the TaskManager. On Fri, Mar 6, 2015 at 11:44 AM, Dulaj Viduranga wrote: > Thank you all. IntelliJ shows "Unregister task with execution ID > (something)” couple of times in the output. But I guess it’s normal? > >

Re: Running example in IntelliJ

2015-03-06 Thread Dulaj Viduranga
Thank you all. IntelliJ shows "Unregister task with execution ID (something)” couple of times in the output. But I guess it’s normal? > On Mar 6, 2015, at 4:08 PM, Stephan Ewen wrote: > > Hey Dulaj! > > Examples should run in a straight forward way from the IDE. > > The readme (displayed at t

Re: Running example in IntelliJ

2015-03-06 Thread Stephan Ewen
Hey Dulaj! Examples should run in a straight forward way from the IDE. The readme (displayed at the bottom of the page) has a bit of info on IDE setup https://github.com/apache/flink One thing you may have to do (if you compile the Scala project) is to configure the macroparadise compiler plugin

Re: Running example in IntelliJ

2015-03-06 Thread Dulaj Viduranga
Thanks Robert. > On Mar 6, 2015, at 1:41 PM, Robert Metzger wrote: > > Hey, > > This little screencast shows how to run WordCount in IntelliJ. > Note that it will take a bit more time the first time because IntelliJ will > compile all required classes: > https://www.youtube.com/watch?v=JIV_rX-O

Re: Running example in IntelliJ

2015-03-06 Thread Robert Metzger
Hey, This little screencast shows how to run WordCount in IntelliJ. Note that it will take a bit more time the first time because IntelliJ will compile all required classes: https://www.youtube.com/watch?v=JIV_rX-OIQM&feature=youtu.be Let us know if you need more help. Robert On Fri, Mar 6, 2015

Running example in IntelliJ

2015-03-05 Thread Dulaj Viduranga
Hello, Can someone help me with the steps on how to compile and run an example on IntelliJ