I am currently using azure eventhub to send/receive data. I want to connect my IoT device to NoSQL database from Azure in a way that JSON message produced from IoT data be stored in NoSQL database(maybe cosmosDB).
I was trying to using function app (classic) to process data stream, but it seems not working.
So, the pipeline maybe need to be something like this:
IoT -> Event hub -> CosmosDB(MongoDB?) -> Azure databricks
I need to establish the first three steps and I preferred to use python language. Can you guys recommend any tools for this?
A short example code would be really appreciated.