olehborysevych commented on code in PR #29507: URL: https://github.com/apache/beam/pull/29507#discussion_r1411118218
########## learning/prompts/documentation-lookup/09_basic_triggers.md: ########## @@ -0,0 +1,30 @@ +Prompt: +What are Triggers in Apache Beam? +Response: + +Beam uses triggers to determine when to emit the aggregated results of each [window](https://beam.apache.org/documentation/programming-guide/#windowing) (referred to as a pane) + +Triggers provide two additional capabilities compared to [outputting at the end of a window](https://beam.apache.org/documentation/programming-guide/#default-trigger): allow early results to be output before the end of the window or allow late data to be handled after the end of the window + +This allows you to control the flow of your data and balance between completenes, latency and cost. Review Comment: Done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
