Re: [DISCUSS] Graduation of Flink from the Incubator

2014-11-28 Thread Sebastian Schelter
IMHO, the main purpose of the incubator is to show that the project adheres to the Apache Way and is able to grow its community. I think Flink has proven both, so I concur that the project is ready to graduate. Best, Sebastian On 11/28/2014 08:56 AM, Stephan Ewen wrote: > Hi! > > I feel very exc

InputFormat API and current scanned row count

2014-11-28 Thread Flavio Pompermaier
Hi guys, I was debugging an inputFormat and I discovered that there's no way to understand how many records have been processed in a split. So I added a counter in my input format incremented every nextRecord..do you think adding something to similar like "public int getProcessedRecordsCount()" to

Re: New Flink website layout and frontage

2014-11-28 Thread Till Rohrmann
I also like the new look. +1 On Fri, Nov 28, 2014 at 1:04 AM, Fabian Hueske wrote: > Thanks for putting this together. Looks really good! > > IMO, the tag line should make clear that Flink is a system for parallel > data processing. > > > 2014-11-27 23:35 GMT+01:00 Markl, Volker, Prof. Dr. < > v

Re: New Flink website layout and frontage

2014-11-28 Thread Suneel Marthi
+1 On Fri, Nov 28, 2014 at 4:22 AM, Till Rohrmann wrote: > I also like the new look. +1 > > On Fri, Nov 28, 2014 at 1:04 AM, Fabian Hueske wrote: > > > Thanks for putting this together. Looks really good! > > > > IMO, the tag line should make clear that Flink is a system for parallel > > data p

Re: New Flink website layout and frontage

2014-11-28 Thread Timo Walther
Hey, the new website looks very precise and clean! I agree with Vasia, I would remove "in clusters" and generialize it to "Fast reliable parallel data processing.". Regards, Timo On 27.11.2014 20:41, Vasiliki Kalavri wrote: Hey! It looks great :)) If I would only change one thing, I woul

ScalaTest for IntelliJ

2014-11-28 Thread Felix Neutatz
Hi, I imported the whole git repository of Flink into IntelliJ. All Java and Scala programs work and the Java unit tests as well. But Scala unit tests don't work. I followed this tutorial: http://www.scalatest.org/user_guide/using_scalatest_with_intellij to install ScalaTest for IntelliJ, but it

Re: ScalaTest for IntelliJ

2014-11-28 Thread Stephan Ewen
Hey! The dev list does not support attachments, can you put the image somewhere else an share a link to it? Stephan On Fri, Nov 28, 2014 at 2:54 PM, Felix Neutatz wrote: > Hi, > > I imported the whole git repository of Flink into IntelliJ. All Java and > Scala programs work and the Java unit

Re: ScalaTest for IntelliJ

2014-11-28 Thread Felix Neutatz
Hi, sry, here you can find the pictures: https://www.dropbox.com/sh/djgoncxcfs9j25i/AACCJ-VNcyz0MOGHmEPGPaYsa?dl=0 Thanks, Felix 2014-11-28 15:02 GMT+01:00 Stephan Ewen : > Hey! > > The dev list does not support attachments, can you put the image somewhere > else an share a link to it? > > > S

[jira] [Created] (FLINK-1293) Add support for out-of-place aggregations

2014-11-28 Thread Viktor Rosenfeld (JIRA)
Viktor Rosenfeld created FLINK-1293: --- Summary: Add support for out-of-place aggregations Key: FLINK-1293 URL: https://issues.apache.org/jira/browse/FLINK-1293 Project: Flink Issue Type: Imp

Re: ScalaTest for IntelliJ

2014-11-28 Thread Chiwan Park
Hi, Could you run `mvn clean && mvn test` command first? I think that there is no library for test in maven repository. After run that command, IntelliJ will be import automatically them. — Chiwan Park (Sent with iPhone) > On Nov 28, 2014, at 11:07 PM, Felix Neutatz wrote: > > Hi, > > sry,

Re: ScalaTest for IntelliJ

2014-11-28 Thread Felix Neutatz
Hi, I ran `mvn clean && mvn test`. It was successful, but nothing changed in IntelliJ. Best regards, Felix 2014-11-28 15:39 GMT+01:00 Chiwan Park : > Hi, Could you run `mvn clean && mvn test` command first? > I think that there is no library for test in maven repository. After run > that command

Re: [DISCUSS] Graduation of Flink from the Incubator

2014-11-28 Thread Robert Metzger
Kostas said in his first mail that we made two successful releases so far. Actually, we had 3 releases in the incubator (0.6, 0.6.1, 0.7.0). A bug fix release is not a big effort for the community code-wise, but we did the whole voting/compliance check three times so far ;) I'm subscribed to a few

Re: ScalaTest for IntelliJ

2014-11-28 Thread Chiwan Park
Hi. Could you click re-import all maven projects in IntelliJ? http://imgur.com/lWIQaQX Thanks. — Chiwan Park (Sent with iPhone) > On Nov 29, 2014, at 12:12 AM, Felix Neutatz wrote: > > Hi, > I ran `mvn clean && mvn test`. It was successful, but nothing changed in

Re: [DISCUSS] Graduation of Flink from the Incubator

2014-11-28 Thread Ufuk Celebi
I agree with all that has been said so far! :-) Super exited as well! On Fri, Nov 28, 2014 at 4:21 PM, Robert Metzger wrote: > Kostas said in his first mail that we made two successful releases so far. > Actually, we had 3 releases in the incubator (0.6, 0.6.1, 0.7.0). A bug fix > release is not

Re: ScalaTest for IntelliJ

2014-11-28 Thread Stephan Ewen
Hey! I am not an IntelliJ user, but sometimes calling "mvn clean install" works wonders in maven projects. Wild guess only, sorry... On Fri, Nov 28, 2014 at 4:30 PM, Chiwan Park wrote: > Hi. > > Could you click re-import all maven projects in IntelliJ? > http://imgur.com/lWIQaQX

Re: ScalaTest for IntelliJ

2014-11-28 Thread Robert Metzger
What solved my recent Scala / IntelliJ problems (which started occurring after migrating to Intellij 14) was adding this jar "/home/robert/.m2/repository/org/scalamacros/paradise_2.10.4/2.0.1/paradise_2.10.4-2.0.1.jar" on the scala compiler settings page in IntelliJ as a compiler plugin. (And I thi

Re: ScalaTest for IntelliJ

2014-11-28 Thread Kostas Tzoumas
Hey, I have not run into this issue, but something that works many times in IntelliJ is: - delete maven dependencies from your local maven repository - mvn clean install - Reimport all modules from maven in IntelliJ - Invalidate caches and restart IntelliJ On Fri, Nov 28, 2014 at 5:08 PM, Steph

Re: [DISCUSS] Graduation of Flink from the Incubator

2014-11-28 Thread Vasiliki Kalavri
Nothing much to add except that I totally share your excitement and I fully support ^^ On 28 November 2014 at 16:33, Ufuk Celebi wrote: > I agree with all that has been said so far! :-) Super exited as well! > > On Fri, Nov 28, 2014 at 4:21 PM, Robert Metzger > wrote: > > > Kostas said in his f

Re: ScalaTest for IntelliJ

2014-11-28 Thread Sean Owen
Oh, that's interesting. I have also had significant problems that sound like this. I was unable to compile Scala code due to... Error:scalac: bad option: -P:/Users/srowen/.m2/repository/org/scalamacros/paradise_2.10.4/2.0.1/paradise_2.10.4-2.0.1.jar Yes, IntelliJ adds this as an option to scalac

Re: ScalaTest for IntelliJ

2014-11-28 Thread Ufuk Celebi
I've experienced the same problem a few days ago. I don't know if it is of any help, but this is what I did: 1. I got the "bad option" -P flag error 2. I removed the flag, which resulted in problems compiling Quasiquotes (q"..."): Error:(118, 18) value q is not a member of StringContext val r