You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@kafka.apache.org by "Srinivas Reddy (JIRA)" <ji...@apache.org> on 2018/11/13 12:04:00 UTC

[jira] [Commented] (KAFKA-7446) Better error message to explain the upper limit of TimeWindow

    [ https://issues.apache.org/jira/browse/KAFKA-7446?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16685102#comment-16685102 ] 

Srinivas Reddy commented on KAFKA-7446:
---------------------------------------

Hi [~jlaskowski], Are you working on this? Should I pick if not? 

> Better error message to explain the upper limit of TimeWindow
> -------------------------------------------------------------
>
>                 Key: KAFKA-7446
>                 URL: https://issues.apache.org/jira/browse/KAFKA-7446
>             Project: Kafka
>          Issue Type: Improvement
>          Components: streams
>    Affects Versions: 2.0.0
>            Reporter: Jacek Laskowski
>            Priority: Trivial
>              Labels: newbie++
>
> The following code throws a {{IllegalArgumentException}}.
> {code:java}
> import org.apache.kafka.streams.kstream.TimeWindows
> import scala.concurrent.duration._
> val timeWindow = TimeWindows
> .of(1.minute.toMillis)
> .advanceBy(2.minutes.toMillis)
> {code}
> The exception is as follows and it's not clear why {{60000}} is the upper limit (not to mention that {{AdvanceMs}} with the uppercase {{A}} did also confuse me).
> {code:java}
> java.lang.IllegalArgumentException: AdvanceMs must lie within interval (0, 60000].
> at org.apache.kafka.streams.kstream.TimeWindows.advanceBy(TimeWindows.java:100)
> ... 44 elided{code}
> I think that the message should be more developer-friendly and explain the boundaries, perhaps with an example (and a link to docs)?



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