I am working on a StreamInsight application using StreamInsight 2.1.
The input adapter will be a live stock data stream with thousands of events per second. I want to run multiple independent queries using the same data stream and be able to add more queries while the stream is running, picking up at the current location in the stream.
Whenever I write a query, though, it creates a brand new Input Adapter. So, I end up with 25 input adapters all loading and pushing the same data.
Am I just thinking about this wrong? Is an Input Adapter independent to each query?
Is the only solution to put the live stock data behind the Input Adapter and have each Input Adapter streaming that data again?
Any advice would be great, good documentation on StreamInsight is tough to find.