[jira] [Comment Edited] (KAFKA-8147) Add changelog topic configuration to KTable suppress

2021-05-04 Thread Philip Bourke (Jira)


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

Philip Bourke edited comment on KAFKA-8147 at 5/4/21, 10:08 PM:


[~ableegoldman] [KAFKA-12749|https://issues.apache.org/jira/browse/KAFKA-12749] 
created for this. If I can find the time I would pick it up but that may be 
hard to do.


was (Author: philbour):
[~ableegoldman] https://issues.apache.org/jira/browse/KAFKA-12749 created for 
this. If I can find the time I would pick it up but that may be hard to do.

> Add changelog topic configuration to KTable suppress
> 
>
> Key: KAFKA-8147
> URL: https://issues.apache.org/jira/browse/KAFKA-8147
> Project: Kafka
>  Issue Type: Improvement
>  Components: streams
>Affects Versions: 2.1.1
>Reporter: Maarten
>Assignee: highluck
>Priority: Minor
>  Labels: kip
> Fix For: 2.6.0
>
>
> The streams DSL does not provide a way to configure the changelog topic 
> created by KTable.suppress.
> From the perspective of an external user this could be implemented similar to 
> the configuration of aggregate + materialized, i.e.,
> {code:java}
> changelogTopicConfigs = // Configs
> materialized = Materialized.as(..).withLoggingEnabled(changelogTopicConfigs)
> ..
> KGroupedStream.aggregate(..,materialized)
> {code}
> [KIP-446: 
> https://cwiki.apache.org/confluence/display/KAFKA/KIP-446%3A+Add+changelog+topic+configuration+to+KTable+suppress|https://cwiki.apache.org/confluence/display/KAFKA/KIP-446%3A+Add+changelog+topic+configuration+to+KTable+suppress]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (KAFKA-8147) Add changelog topic configuration to KTable suppress

2021-04-26 Thread Philip Bourke (Jira)


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

Philip Bourke edited comment on KAFKA-8147 at 4/26/21, 5:34 PM:


I'm looking to implement this fix but it seems like it only works depending on 
the order of the 
{{BufferConfig}}

If I do this it works -
{code:java}
.suppress(Suppressed.untilTimeLimit(Duration.ofMillis(maxIdleIntervalMs), 
BufferConfig.maxRecords(
 
maxBufferRecords).emitEarlyWhenFull().withLoggingEnabled(changelogConfig)){code}

But not if I set the {{withLoggingEnabled}} before {{emitEarlyWhenFull}}.
Is it expected that the {{BufferConfig}} should be set in a particular order?


was (Author: philbour):
I'm looking to implement this fix but it seems like it only works depending on 
the order of the {{BufferConfig}}
If I do this it works -
.suppress(Suppressed.untilTimeLimit(Duration.ofMillis(maxIdleIntervalMs), 
BufferConfig.maxRecords(

maxBufferRecords).emitEarlyWhenFull().withLoggingEnabled(changelogConfig))
But not if I set the {{withLoggingEnabled }}before {{emitEarlyWhenFull}}.
Is it expected that the {{BufferConfig }}should be set in a particular order?

> Add changelog topic configuration to KTable suppress
> 
>
> Key: KAFKA-8147
> URL: https://issues.apache.org/jira/browse/KAFKA-8147
> Project: Kafka
>  Issue Type: Improvement
>  Components: streams
>Affects Versions: 2.1.1
>Reporter: Maarten
>Assignee: highluck
>Priority: Minor
>  Labels: kip
> Fix For: 2.6.0
>
>
> The streams DSL does not provide a way to configure the changelog topic 
> created by KTable.suppress.
> From the perspective of an external user this could be implemented similar to 
> the configuration of aggregate + materialized, i.e.,
> {code:java}
> changelogTopicConfigs = // Configs
> materialized = Materialized.as(..).withLoggingEnabled(changelogTopicConfigs)
> ..
> KGroupedStream.aggregate(..,materialized)
> {code}
> [KIP-446: 
> https://cwiki.apache.org/confluence/display/KAFKA/KIP-446%3A+Add+changelog+topic+configuration+to+KTable+suppress|https://cwiki.apache.org/confluence/display/KAFKA/KIP-446%3A+Add+changelog+topic+configuration+to+KTable+suppress]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (KAFKA-8147) Add changelog topic configuration to KTable suppress

2019-04-01 Thread Sophie Blee-Goldman (JIRA)


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

Sophie Blee-Goldman edited comment on KAFKA-8147 at 4/1/19 8:30 PM:


[~mjduijn] Just send an email to 
[d...@kafka.apache.org.|mailto:d...@kafka.apache.org.] The thread should show 
up here ([https://www.mail-archive.com/dev@kafka.apache.org/index.html]) once 
you do, so you can go back and add the link to your KIP.

 

 


was (Author: ableegoldman):
[~mjduijn] Just send an email to 
[d...@kafka.apache.org.|mailto:d...@kafka.apache.org.] The thread should show 
up [here|[https://www.mail-archive.com/dev@kafka.apache.org/index.html]] once 
you do, so you can go back and add the link to your KIP

> Add changelog topic configuration to KTable suppress
> 
>
> Key: KAFKA-8147
> URL: https://issues.apache.org/jira/browse/KAFKA-8147
> Project: Kafka
>  Issue Type: Improvement
>  Components: streams
>Affects Versions: 2.1.1
>Reporter: Maarten
>Assignee: Maarten
>Priority: Minor
>  Labels: needs-kip
>
> The streams DSL does not provide a way to configure the changelog topic 
> created by KTable.suppress.
> From the perspective of an external user this could be implemented similar to 
> the configuration of aggregate + materialized, i.e., 
> {code:java}
> changelogTopicConfigs = // Configs
> materialized = Materialized.as(..).withLoggingEnabled(changelogTopicConfigs)
> ..
> KGroupedStream.aggregate(..,materialized)
> {code}



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


[jira] [Comment Edited] (KAFKA-8147) Add changelog topic configuration to KTable suppress

2019-03-23 Thread Bill Bejeck (JIRA)


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

Bill Bejeck edited comment on KAFKA-8147 at 3/23/19 10:25 PM:
--

[~mjduijn]  

I've added you to the contributors list and assigned this ticket to you.  Going 
forward you'll be able to assign yourself to tickets.

 EDIT:

Do you have an account on 
[https://cwiki.apache.org/confluence?|https://cwiki.apache.org/confluence]  I 
looked with the username you use for Jira but couldn't find you.  I'll need 
user name for apache confluence to give you permissions for creating/editing a 
KIP.

Thanks,

Bill


was (Author: bbejeck):
[~mjduijn]  

I've added you to the contributors list and assigned this ticket to you.  Going 
forward you'll be able to assign yourself to tickets.

 

Thanks,

Bill

> Add changelog topic configuration to KTable suppress
> 
>
> Key: KAFKA-8147
> URL: https://issues.apache.org/jira/browse/KAFKA-8147
> Project: Kafka
>  Issue Type: Improvement
>  Components: streams
>Affects Versions: 2.1.1
>Reporter: Maarten
>Assignee: Maarten
>Priority: Minor
>  Labels: needs-kip
>
> The streams DSL does not provide a way to configure the changelog topic 
> created by KTable.suppress.
> From the perspective of an external user this could be implemented similar to 
> the configuration of aggregate + materialized, i.e., 
> {code:java}
> changelogTopicConfigs = // Configs
> materialized = Materialized.as(..).withLoggingEnabled(changelogTopicConfigs)
> ..
> KGroupedStream.aggregate(..,materialized)
> {code}



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