[jira] [Created] (FLINK-2526) Add catch{} for task when it stop running

2015-08-14 Thread fangfengbin (JIRA)
fangfengbin created FLINK-2526: -- Summary: Add catch{} for task when it stop running Key: FLINK-2526 URL: https://issues.apache.org/jira/browse/FLINK-2526 Project: Flink Issue Type: Bug

[jira] [Created] (FLINK-2525) Add configuration support in Storm-compatibility

2015-08-14 Thread fangfengbin (JIRA)
fangfengbin created FLINK-2525: -- Summary: Add configuration support in Storm-compatibility Key: FLINK-2525 URL: https://issues.apache.org/jira/browse/FLINK-2525 Project: Flink Issue Type: New Fe

Re: Test about Improve performance of call system.currentTimeMillis()

2015-08-14 Thread Stephan Ewen
In many cases, we actually need a proper timestamp (for example for timestamps in streaming records). I just ran a small micro-benchmark (Java 8, Linux kernel 3.11, 64bit VM) Making 5,000,000 function calls System.currentTimeMillis() took: 13240msecs System.nanoTime() took: 13355msecs At least o

Re: Test about Improve performance of call system.currentTimeMillis()

2015-08-14 Thread Ted Dunning
A big part of the cost of currentTimeMillis() is that it does a lot of work to make sure that the time is really time. If you only need a monotonic timer, nanoTime() might be what you want instead of currentTimeMillis(). nanoTime() is particularly handy when you want to avoid issues to do with le

[jira] [Created] (FLINK-2524) Add "getTaskNameWithSubtasks()" to RuntimeContext

2015-08-14 Thread Stephan Ewen (JIRA)
Stephan Ewen created FLINK-2524: --- Summary: Add "getTaskNameWithSubtasks()" to RuntimeContext Key: FLINK-2524 URL: https://issues.apache.org/jira/browse/FLINK-2524 Project: Flink Issue Type: Imp

[jira] [Created] (FLINK-2523) Increase interrupt timeout in Task Canceling

2015-08-14 Thread Stephan Ewen (JIRA)
Stephan Ewen created FLINK-2523: --- Summary: Increase interrupt timeout in Task Canceling Key: FLINK-2523 URL: https://issues.apache.org/jira/browse/FLINK-2523 Project: Flink Issue Type: Improvem

Re: Flink Forward webpage down

2015-08-14 Thread Gábor Gévay
It works for me now too. Best regards, Gabor 2015-08-14 16:10 GMT+02:00 Chiwan Park : > Currently, the site looks okay. > > Regards, > Chiwan Park > > >> On Aug 14, 2015, at 6:05 PM, Gábor Gévay wrote: >> >> Hello, >> >> I would like to submit an abstract to Flink Forward, but the webpage >> o

Re: Flink Forward webpage down

2015-08-14 Thread Chiwan Park
Currently, the site looks okay. Regards, Chiwan Park > On Aug 14, 2015, at 6:05 PM, Gábor Gévay wrote: > > Hello, > > I would like to submit an abstract to Flink Forward, but the webpage > of the conference (flink-forward.org) seems to be down. It prints > "Error establishing a database conne

[jira] [Created] (FLINK-2522) Integrate Streaming Api into Flink-scala-shell

2015-08-14 Thread Nikolaas Steenbergen (JIRA)
Nikolaas Steenbergen created FLINK-2522: --- Summary: Integrate Streaming Api into Flink-scala-shell Key: FLINK-2522 URL: https://issues.apache.org/jira/browse/FLINK-2522 Project: Flink Is

[jira] [Created] (FLINK-2521) Add automatic test name logging for tests

2015-08-14 Thread Till Rohrmann (JIRA)
Till Rohrmann created FLINK-2521: Summary: Add automatic test name logging for tests Key: FLINK-2521 URL: https://issues.apache.org/jira/browse/FLINK-2521 Project: Flink Issue Type: Improveme

[jira] [Created] (FLINK-2520) StreamFaultToleranceTestBase does not allow for multiple tests

2015-08-14 Thread Stephan Ewen (JIRA)
Stephan Ewen created FLINK-2520: --- Summary: StreamFaultToleranceTestBase does not allow for multiple tests Key: FLINK-2520 URL: https://issues.apache.org/jira/browse/FLINK-2520 Project: Flink I

Re: [jira](FLINK-2493) Simplify names of example program JARs

2015-08-14 Thread Till Rohrmann
Sounds good to me +1 On Fri, Aug 14, 2015 at 11:06 AM, Stephan Ewen wrote: > Concerning mixed projects: Should be okay even for Eclipse users, because > no Scala code is referenced from Java code (that is the tricky part). > Even for someone without a Scala IDE plugin, they would simply not > in

[jira] [Created] (FLINK-2519) BarrierBuffers get stuck infinitely when some inputs end early

2015-08-14 Thread Stephan Ewen (JIRA)
Stephan Ewen created FLINK-2519: --- Summary: BarrierBuffers get stuck infinitely when some inputs end early Key: FLINK-2519 URL: https://issues.apache.org/jira/browse/FLINK-2519 Project: Flink I

[jira] [Created] (FLINK-2518) Avoid predetermination of ports for network services

2015-08-14 Thread Till Rohrmann (JIRA)
Till Rohrmann created FLINK-2518: Summary: Avoid predetermination of ports for network services Key: FLINK-2518 URL: https://issues.apache.org/jira/browse/FLINK-2518 Project: Flink Issue Type

Re: [jira](FLINK-2493) Simplify names of example program JARs

2015-08-14 Thread Stephan Ewen
Concerning mixed projects: Should be okay even for Eclipse users, because no Scala code is referenced from Java code (that is the tricky part). Even for someone without a Scala IDE plugin, they would simply not interpret the "src/main/scala" directory, which should make this appear like a pure Java

Flink Forward webpage down

2015-08-14 Thread Gábor Gévay
Hello, I would like to submit an abstract to Flink Forward, but the webpage of the conference (flink-forward.org) seems to be down. It prints "Error establishing a database connection" for me. It worked yesterday. Best regards, Gabor

Re: Test about Improve performance of call system.currentTimeMillis()

2015-08-14 Thread Stephan Ewen
Hi! Nice idea. It would be good to have this implemented as a kind of service that components can "acquire". A component that needs time can do something like "Clock clock = ClockService.aquire()", which increments a reference count in the central clock service and starts the thread if it has no

Re: [jira](FLINK-2493) Simplify names of example program JARs

2015-08-14 Thread Till Rohrmann
In case of merging we would have to add a `scala` tag to some of the examples because some of the examples exist in both packages. The drawback of merging both examples modules is that we'll have another mixed Java/Scala project. This might be bothering for the eclipse folks, but we already have th

Re: Test about Improve performance of call system.currentTimeMillis()

2015-08-14 Thread Fabian Hueske
Thank you Fengbin Fang for doing this microbenchmark! The numbers clearly show that your approach is a lot faster. I'm curious if this does also affect the performance of a complete data flow. Looking forward to your results, Fabian 2015-08-13 8:35 GMT+02:00 Fangfengbin : > Hello! > > I have a

Re: [jira](FLINK-2493) Simplify names of example program JARs

2015-08-14 Thread Stephan Ewen
+1 for proposal (2) On Fri, Aug 14, 2015 at 10:28 AM, Fabian Hueske wrote: > Hi Liang Chen, > > thanks for starting this discussion. > > I have no strong preference for one of your proposals. Both are fine with > me. > > What would proposal 2 mean if we add examples for other API languages, for

[jira] [Created] (FLINK-2517) Wrong KafkaSink arguments in streaming guide

2015-08-14 Thread Nezih Yigitbasi (JIRA)
Nezih Yigitbasi created FLINK-2517: -- Summary: Wrong KafkaSink arguments in streaming guide Key: FLINK-2517 URL: https://issues.apache.org/jira/browse/FLINK-2517 Project: Flink Issue Type: Bu

Re: [jira](FLINK-2493) Simplify names of example program JARs

2015-08-14 Thread Fabian Hueske
Hi Liang Chen, thanks for starting this discussion. I have no strong preference for one of your proposals. Both are fine with me. What would proposal 2 mean if we add examples for other API languages, for example if the Python API moves out of staging? I guess it shouldn't be a problem, because