Skip to content

Commit

Permalink
[FLINK-18998] No watermark is shown in Flink UI when ProcessingTime i…
Browse files Browse the repository at this point in the history
…s used

Display more informative message stating that Watermarks are only available when using
event time if there are no watermarks to display in the web UI.

This closes apache#14483.
  • Loading branch information
lixmgl authored and tillrohrmann committed Dec 29, 2020
1 parent 679c974 commit a7551f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { LONG_MIN_VALUE } from 'config';
export class HumanizeWatermarkPipe implements PipeTransform {
transform(value: any): any {
if (isNaN(value) || value <= LONG_MIN_VALUE) {
return 'No Watermark';
return 'No Watermark (Watermarks are only available if EventTime is used)';
} else {
return value;
}
Expand Down

0 comments on commit a7551f6

Please sign in to comment.