Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/4183#discussion_r124298671 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/api/queryConfig.scala --- @@ -92,6 +100,27 @@ class StreamQueryConfig private[table] extends QueryConfig { this } + /** + * Specifies a deferred computation time for deferred computation, i.e., fires the + * [[org.apache.flink.streaming.api.windowing.windows.TimeWindow]] on the time which not + * smaller than (window.maxTimestamp + deferredComputationTime). For example, instead of + * computing a tumbling window of 1 hour at each full hour, we can add a deferred computation + * interval of 15 minute to compute the result quarter past each full hour. + */ + def withDeferredComputationTime(deferredComputationTime: Time): StreamQueryConfig = { --- End diff -- rename to `withFirstResultTimeOffset`?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---