Description
I recently asked a question on stackoverflow where mjsax commented to raise a ticket for this.
Requirement:
When we do foreign key join in Kafka streams, it creates 3 state stores (as given on the confluent page) :
The three state stores involved are:
- left-STATE-STORE-0000000000: The left-hand-side KTable store.
- right-STATE-STORE-0000000003: The left-hand-side KTable store.
- myjoin-subscription-store: The subscription store for the join. This is the new data structure discussed above. Regardless of the operation name, this store is always suffixed -subscription-store. Note for your capacity planning that this store will also have a corresponding changelog, called myjoin-subscription-store-changelog.
Can we have an additional option to disable this myjoin-subscription-store-changelog topic creation?