Hi I have a kafka streams application, that uses a couple of stateful (i.e. using key value stores) custom transformer implementations.
I'm aware that the scheduling of the punctuate method is based on stream time. However, for my use case, this is not what I want, I need wallclock scheduling. My question is, what is the recommended way to achieve this, until KIP138 provides first class support for wallclock punctuate? At the moment, I schedule a task to run using ScheduledExecutorService. However, I'm uncertain whether it is safe to access and modify a KeyValueStore from a non kafka streams thread. Is this a safe approach, or will there be problems? Thanks Eli