Continuous state in Apache Beam pipeline
问题 I'm developing a beam pipeline for dataflow runner. I need the below functionality in my use case. Read input events from Kafka topic(s). Each Kafka message value derives [userID, Event] pair. For each userID , I need to maintain a profile and based on the current Event , a possible update to the profile is possible. If the profile is updated: Updated profile is written to output stream. The next Event for that userID in the pipeline should refer to the updated profile. I was thinking of