[GitHub] flink issue #4665: [Flink-7611]add metrics to measure the num of data droppe...

2017-10-25 Thread zentol
Github user zentol commented on the issue: https://github.com/apache/flink/pull/4665 merging. ---

[GitHub] flink issue #4665: [Flink-7611]add metrics to measure the num of data droppe...

2017-10-24 Thread Aitozi
Github user Aitozi commented on the issue: https://github.com/apache/flink/pull/4665 Hi @zentol , can you help merge this pr ? Is this be forgetten ---

[GitHub] flink issue #4665: [Flink-7611]add metrics to measure the num of data droppe...

2017-09-28 Thread Aitozi
Github user Aitozi commented on the issue: https://github.com/apache/flink/pull/4665 is there still anything wrong @zentol ---

[GitHub] flink issue #4665: [Flink-7611]add metrics to measure the num of data droppe...

2017-09-25 Thread bowenli86
Github user bowenli86 commented on the issue: https://github.com/apache/flink/pull/4665 LGTM ---

[GitHub] flink issue #4665: [Flink-7611]add metrics to measure the num of data droppe...

2017-09-25 Thread Aitozi
Github user Aitozi commented on the issue: https://github.com/apache/flink/pull/4665 is this ok to be merged in @bowenli86 @zentol @aljoscha ? 😄 ---

[GitHub] flink issue #4665: [Flink-7611]add metrics to measure the num of data droppe...

2017-09-22 Thread bowenli86
Github user bowenli86 commented on the issue: https://github.com/apache/flink/pull/4665 @aljoscha sorry for being late the this CR. I left a couple comments ---

[GitHub] flink issue #4665: [Flink-7611]add metrics to measure the num of data droppe...

2017-09-22 Thread aljoscha
Github user aljoscha commented on the issue: https://github.com/apache/flink/pull/4665 This looks good to merge now. 👍 ---

[GitHub] flink issue #4665: [Flink-7611]add metrics to measure the num of data droppe...

2017-09-19 Thread zentol
Github user zentol commented on the issue: https://github.com/apache/flink/pull/4665 Would be good to rename the metric to `numLateRecordsDropped` to be more consistent with existing metrics. @aljoscha will have to comment on whether the counting is correct or not.

[GitHub] flink issue #4665: [Flink-7611]add metrics to measure the num of data droppe...

2017-09-19 Thread Aitozi
Github user Aitozi commented on the issue: https://github.com/apache/flink/pull/4665 Hello,Is it can be merged in @aljoscha @zentol ? ---

[GitHub] flink issue #4665: [Flink-7611]add metrics to measure the num of data droppe...

2017-09-15 Thread Aitozi
Github user Aitozi commented on the issue: https://github.com/apache/flink/pull/4665 @aljoscha yes, i review the code this day, it will jude each window whether late , so the previous method i use will counts more lost data than the actual situation , i have fix the error and

[GitHub] flink issue #4665: [Flink-7611]add metrics to measure the num of data droppe...

2017-09-15 Thread aljoscha
Github user aljoscha commented on the issue: https://github.com/apache/flink/pull/4665 @Aitozi I meant that the place where you're currently counting dropped elements will not yield a correct count because one element might be in several windows. The place were we side-output late

[GitHub] flink issue #4665: [Flink-7611]add metrics to measure the num of data droppe...

2017-09-14 Thread Aitozi
Github user Aitozi commented on the issue: https://github.com/apache/flink/pull/4665 @aljoscha i agree that the name set to be "numLateElementsDropped", and do you mean that my result should minus the num of element that go to side output which is skipped and lateElement? ---

[GitHub] flink issue #4665: [Flink-7611]add metrics to measure the num of data droppe...

2017-09-14 Thread aljoscha
Github user aljoscha commented on the issue: https://github.com/apache/flink/pull/4665 These are not actually the places where you can count dropped data. I would suggest to add this at the very end of `processElement()` where we also check whether we should side-output late data: