Re: Custom Kafka Streams State Restore Logic

2023-01-23 Thread Upesh Desai
and is performant enough thus far! Thanks for your help. Cheers, Upesh Upesh Desai | Senior Software Developer | ude...@itrsgroup.com www.itrsgroup.com From: Matthias J. Sax Date: Monday, January 23, 2023 at 8:05 PM To: users@kafka.apache.org Subject: Re: Custom Kafka Streams State Restore Logic

Re: Custom Kafka Streams State Restore Logic

2023-01-23 Thread Matthias J. Sax
ache.org *Subject: *Re: Custom Kafka Streams State Restore Logic Guess it depends what you actually want to achieve? Also note: `InMemoryWindowStore` is an internal class, and thus might change at any point, and it was never designed to be extended... -Matthias On 1/13/23 2:55 PM, Upesh Desai wro

Re: Custom Kafka Streams State Restore Logic

2023-01-18 Thread Upesh Desai
Kafka Streams State Restore Logic Guess it depends what you actually want to achieve? Also note: `InMemoryWindowStore` is an internal class, and thus might change at any point, and it was never designed to be extended... -Matthias On 1/13/23 2:55 PM, Upesh Desai wrote: > Hello all, >

Re: Custom Kafka Streams State Restore Logic

2023-01-17 Thread Matthias J. Sax
Guess it depends what you actually want to achieve? Also note: `InMemoryWindowStore` is an internal class, and thus might change at any point, and it was never designed to be extended... -Matthias On 1/13/23 2:55 PM, Upesh Desai wrote: Hello all, I am currently working on creating a new

Custom Kafka Streams State Restore Logic

2023-01-13 Thread Upesh Desai
Hello all, I am currently working on creating a new InMemoryWindowStore, by extending the default in memory window store. One of the roadblocks I’ve run into is finding a way to add some custom logic when the state store is being restored from the changelog. I know that this is possible if I