Maybe we can create a single
PlanExecutor
for theLocalEnvironment
which is used when callingexecute
. This of course entails that we don’t callstop
on theLocalCluster
. For cases where the program exits after calling execute, this should be fine because all resources will then be released anyway. It might matter for the test execution where maven reuses the JVMs and where theLocalFlinkMiniCluster
won’t be garbage collected right away. You could try it out and see what happens.Cheers,
TillOn Wed, Sep 2, 2015 at 6:03 PM, Till Rohrmann <[hidden email]> wrote:Oh sorry, then I got the wrong context. I somehow thought it was about test cases because I read `MultipleProgramTestBase` etc. Sorry my bad.On Wed, Sep 2, 2015 at 6:00 PM, Sachin Goel <[hidden email]> wrote:I was under the impression that the @AfterClass annotation can only be used in test classes.Even so, the idea is that a user program running in the IDE should not be starting up the cluster several times [my primary concern is the addition of the persist operator], and we certainly cannot ask the user to terminate the cluster after execution, while in local mode.-- Sachin GoelComputer Science, IIT Delhim. <a href="tel:%2B91-9871457685" value="+919871457685" target="_blank">+91-9871457685On Wed, Sep 2, 2015 at 9:19 PM, Till Rohrmann <[hidden email]> wrote:Why is it not possible to shut down the local cluster? Can’t you shut it down in the
@AfterClass
method?On Wed, Sep 2, 2015 at 4:56 PM, Sachin Goel <[hidden email]> wrote:Yes. That will work too. However, then it isn't possible to shut down the local cluster. [Is it necessary to do so or does it shut down automatically when the program exists? I'm not entirely sure.]-- Sachin GoelComputer Science, IIT Delhim. <a href="tel:%2B91-9871457685" value="+919871457685" target="_blank">+91-9871457685On Wed, Sep 2, 2015 at 7:59 PM, Stephan Ewen <[hidden email]> wrote:Have a look at some other tests, like the checkpointing tests. They start one cluster manually and keep it running. They connect against it using the remote environment ("localhost", miniCluster.getJobManagerRpcPort()).That works nicely...On Wed, Sep 2, 2015 at 4:23 PM, Sachin Goel <[hidden email]> wrote:Hi allWhile using LocalEnvironment, in case the program triggers execution several times, the {{LocalFlinkMiniCluster}} is started as many times. This can consume a lot of time in setting up and tearing down the cluster. Further, this hinders with a new functionality I'm working on based on persisted results.One potential solution could be to follow the methodology in `MultipleProgramsTestBase`. The user code then would have to reside in a fixed function name, instead of the main method. Or is that too cumbersome?RegardsSachin-- Sachin GoelComputer Science, IIT Delhim. <a href="tel:%2B91-9871457685" value="+919871457685" target="_blank">+91-9871457685
Free forum by Nabble | Edit this page |