[jira] [Created] (FLINK-2342) Add new fit operation and more tests for StandardScaler

2015-07-10 Thread Theodore Vasiloudis (JIRA)
Theodore Vasiloudis created FLINK-2342: -- Summary: Add new fit operation and more tests for StandardScaler Key: FLINK-2342 URL: https://issues.apache.org/jira/browse/FLINK-2342 Project: Flink

Documentation Webpage Rendering Problem

2015-07-10 Thread Matthias J. Sax
Hi, I just encountered, that the documentation web page is not rendered properly. The fist lines of the text, are hidden by the menu. Please see the attached screenshot. It affects all pages in 0.9 and 0.10 documentation. Does anyone know how to fix it (and can do the fix)? -Matthias

Re: Documentation Webpage Rendering Problem

2015-07-10 Thread Vasiliki Kalavri
Hi, I have the same rendering problem as Matthias in Chrome. Looks OK in Safari. I had seen this problem when we first introduced the new website but Ufuk had managed to fix it. I think it had to do with some css not loading properly in Chrome... -Vasia. On 10 July 2015 at 14:12, Matthias J.

Re: Documentation Webpage Rendering Problem

2015-07-10 Thread Chiwan Park
Oh, I misunderstood the problem. In firefox, the problem occurs. [1] Regards, Chiwan Park [1] http://imgur.com/js5nZQ1 On Jul 10, 2015, at 9:24 PM, Vasiliki Kalavri vasilikikala...@gmail.com wrote: Hi, I have the same rendering problem as Matthias in Chrome. Looks OK in Safari. I had

Re: Documentation Webpage Rendering Problem

2015-07-10 Thread Matthias J. Sax
It is good that it is a local problem. However, I cannot follow how it can be related to network or DNS setting. Can you explain in more detail? How can I fix the settings? -Matthias On 07/10/2015 02:06 PM, Chiwan Park wrote: I think that the problem is on your network or DNS setting. In my

Re: Passing around huge hash sets

2015-07-10 Thread Fabian Hueske
Yes, you can decrease the amount of managed memory and/or increase the TM heap size See - taskmanager.memory.size, - taskmanager.memory.fraction, and - taskmanager.heap.mb in https://ci.apache.org/projects/flink/flink-docs-release-0.9/setup/config.html#common-options Cheers, Fabian 2015-07-10

Failing tests

2015-07-10 Thread Matthias J. Sax
Hi, I hit two failing tests recently. The first once (flink-streaming-examples), failed a single time (see https://travis-ci.org/mjsax/flink/jobs/70396872) Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 17.057 sec FAILURE! - in

Passing around huge hash sets

2015-07-10 Thread Andra Lungu
Hey! It appears that my jobs have the same memory issue disguised in different Exceptions. It's expected, I am passing around hash sets of neighbors and for skewed graphs (i.e. with a lot of neighbors) it's bound to fail one way or the other. This time Kryo hates me :( Caused by:

[jira] [Created] (FLINK-2343) Change default garbage collector in streaming environments

2015-07-10 Thread Stephan Ewen (JIRA)
Stephan Ewen created FLINK-2343: --- Summary: Change default garbage collector in streaming environments Key: FLINK-2343 URL: https://issues.apache.org/jira/browse/FLINK-2343 Project: Flink Issue

Re: Passing around huge hash sets

2015-07-10 Thread Stephan Ewen
There is also an inherent limit to this style of passing massive data about neighbors. They are often limited in their scalability as well. At some point you may need to switch to probabilistic data structures. or simply to a different method. On Fri, Jul 10, 2015 at 2:54 PM, Fabian Hueske