You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@kafka.apache.org by "Matthias J. Sax (JIRA)" <ji...@apache.org> on 2019/02/21 19:43:00 UTC

[jira] [Created] (KAFKA-7973) Allow a Punctuator to cancel its own schedule

Matthias J. Sax created KAFKA-7973:
--------------------------------------

             Summary: Allow a Punctuator to cancel its own schedule
                 Key: KAFKA-7973
                 URL: https://issues.apache.org/jira/browse/KAFKA-7973
             Project: Kafka
          Issue Type: Improvement
          Components: streams
            Reporter: Matthias J. Sax


As reported on this question on SO ([https://stackoverflow.com/questions/54803124/cancel-punctuator-on-kafka-streams-after-is-triggered)] if one registers a lot of punctuation one needs to track them manually if they should be cancel at some point, what can be tedious.

It might be a good addition, to allow a `Punctuator` to cancel itself. Something like:
{quote}void punctuate(long timestamp) {
    // do stuff
    if (...) {
        this.cancel();
    }
}{quote}
It's just a sketch of an idea. This ticket implies a public API change and requires to write a KIP: [https://cwiki.apache.org/confluence/display/KAFKA/Kafka+Improvement+Proposals]



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)