Re: Cannot see optimizer plan in web client

2014-11-11 Thread Stephan Ewen
Yes, I fixed it as a side effect of another issue. Turns out it was a problem with non-escaped characters in the function names, which made the JSON malformed. Greetings, Stephan On Tue, Nov 11, 2014 at 5:54 PM, Vasiliki Kalavri wrote: > Hey, > > it seems you've fixed this. I've just tried an

Re: Cannot see optimizer plan in web client

2014-11-11 Thread Vasiliki Kalavri
Hey, it seems you've fixed this. I've just tried and the plan appears without problem :) Thanks! V. On 3 November 2014 23:19, Vasiliki Kalavri wrote: > Hi, > > thanks for looking into this! > It's not urgent for me, I just wanted to make sure there was nothing wrong > with my code. > If you're

Re: Cannot see optimizer plan in web client

2014-11-03 Thread Vasiliki Kalavri
Hi, thanks for looking into this! It's not urgent for me, I just wanted to make sure there was nothing wrong with my code. If you're busy with other issues, I can look into it myself next week :) Cheers, V. On 3 November 2014 22:02, Stephan Ewen wrote: > Hey! > > here is what I see: > > - I d

Re: Cannot see optimizer plan in web client

2014-11-03 Thread Stephan Ewen
Hey! here is what I see: - I do not get the first preview, which is expected (it it obtained without the program arguments, so the program exits early) - I do not get the error stack trace that you describe when I submit the program and supply two arguments to the program (as required), but I

Re: Cannot see optimizer plan in web client

2014-11-03 Thread Vasiliki Kalavri
I don't get any of the 2 previews :/ On 3 November 2014 12:40, Stephan Ewen wrote: > Hey! > > Just to be sure I understand the problem correctly: > > Do you not get the initial preview (on the page where you upload the > jars), or do you also not get the execution plan preview (after you clicked

Re: Cannot see optimizer plan in web client

2014-11-03 Thread Stephan Ewen
Hey! Just to be sure I understand the problem correctly: Do you not get the initial preview (on the page where you upload the jars), or do you also not get the execution plan preview (after you clicked run), even if you supply arguments? Stephan On Mon, Nov 3, 2014 at 12:29 PM, Vasiliki Kala

Re: Cannot see optimizer plan in web client

2014-11-03 Thread Vasiliki Kalavri
Hi, yes it's reproducible. I get the same behavior with the following dummy program: public class TestOptimizerPlan implements ProgramDescription { @SuppressWarnings("serial") public static void main(String[] args) throws Exception { if (args.length < 2) { System.err.println("Usage: TestOptimize

Re: Cannot see optimizer plan in web client

2014-11-03 Thread Stephan Ewen
Hi! The web Frontend needs to "intercept" the execution plan when the call to "execute()" comes, which is done with a special exception. The error message says it failed, which is typically because that exception was caught. However, in your code I see nothing that should prevent that plan interc

Cannot see optimizer plan in web client

2014-11-02 Thread Vasiliki Kalavri
Hi all, when using the web client to upload and run a jar, the optimizer plan for my program does not appear. I have checked the "Show optimizer plan" box and provided args in the Arguments field. When I continue to submit the job, it runs correctly. There is no problem when using the plan visuali