I'm trying to do real-time streaming and processing with an azure event hub and azure stream analytics for NSE(National stock exchange) For that first, I need to get the data in real-time and to send the data to the event hub. How to get the get continuous in real-time? How to send data asynchronously to the event hub, If I'm getting data from the multiple sources in real? How to process that asynchronous data with Azure stream analytics?
Asked
Active
Viewed 145 times
-1
-
3What have you tried so far? – Klaus D. Jul 23 '19 at 07:01
1 Answers
0
First of all your question has 10 problems to solve. Solve only one problem at a time.
For that first, I need to get the data in real-time and to send the data to the event hub.
Yes first make a small POC Application which can retrieve data based on your needs.
Forget real-time, just retrieve the data and try to send it to EventHub First.
You can quickstart with python sdk
from here
How to process that asynchronous data with Azure stream analytics?
Azure Stream Analytics is a whole different topic. You can refer its docs here
I have answered this since i can see you are a newbie here and your question will get downvoted. Take it slow. Solve one problem at a time

HariHaran
- 3,642
- 2
- 16
- 33