Hi, I have 2 pubsubs - one that has data coming every 30 seconds and the second one that contains some meta information about the data points. The meta data pubsub is slower than the data pubsub.
I have to use the metadata information to aggregate the input coming in the data pub-sub. I will need a good chunk of the metadata to arrive before I can do the aggregation so, currently, I have a separate pipeline that processes this metadata pubsub and stores it. The data pipeline then uses this stored information to perform the aggregation. What I am wondering is, can I get rid of the metadata pipeline completely and instead use slow side inputs? I am stuck trying to evaluate the pros and cons of this approach because of my limited knowledge about slow side inputs. So, what are some of the things I need to consider if I head down the path of slow side inputs? Thanks, Sowmya
