My requirement is to create separate tables for each key in two different data streams and then join them. I have successfully created two separate tables from the data streams in Flink and performed the join using table api. However, I am facing difficulty in creating separate tables for each key.
Is there a way to create individual tables for each key in the data stream?
I have followed tutorial to create tables from data streams, but I'm not sure how to proceed with creating separate tables for each key. Any guidance or suggestions would be greatly appreciated.
Edit: I am also interested in receiving suggestions and learning about best practices for managing multi-tenancy in Flink.