Re: Kafka Streams, read standby time window store

2023-09-07 Thread Bruno Cadonna
Thanks Igor for the insights! If you feel this should be changed, feel free to open a JIRA ticket. Best, Bruno On 9/6/23 9:07 PM, Igor Maznitsa wrote: Hi Bruno Looks like that I have found error in my code. The error was that I split create of  StoreQueryParameters and my code looked like sn

Re: Kafka Streams, read standby time window store

2023-09-06 Thread Igor Maznitsa
Hi Bruno Looks like that I have found error in my code. The error was that I split create of  StoreQueryParameters and my code looked like snippet below /*var query = StoreQueryParameters.fromNameAndType(TABLE_NAME, queryableStoreType);*/ /*if (useStale) {*/ /*    query.enableStaleStore(); *

Re: Kafka Streams, read standby time window store

2023-09-06 Thread Bruno Cadonna
Hi Igor, Sorry to hear you have issues with querying standbys! I have two questions to clarify the situation: 1. Did you enable querying stale stores with StoreQueryParameters.fromNameAndType(TABLE_NAME, queryableStoreType).enableStaleStores() as described in the blog post? 2. Since you a

Kafka Streams, read standby time window store

2023-09-05 Thread Igor Maznitsa
Hello 1. I am starting two Kafka Streams applications worked in same group with num.standby.replicas=1 2. Application A has active TimeWindow data store and application B has the standby version of the data store Is there any way to read the standby store time window data in bounds of B ap