QBoard » Supporting Tech Stack » IOT » Where I can parse IoT data in Azure so I can afterwards save it

Where I can parse IoT data in Azure so I can afterwards save it

  •  
     

    I'm working on some IoT integrations and I am wondering where in the Azure I can parse my IoT data (JSON data).

    My earlier workflow was this; sensor pushes data -> iot hub -> stream analytics jobs -> sql database. Stream analytics job works fine but I have heard that it is not "right" way to parse data in Azure. So what is the right and best way to do that. I need to save it to SQL database.

      June 11, 2019 4:39 PM IST
    0
  • Stream Analytics is a very good fit for this job. If you need more customizable options, Spark Streaming on Azure Databricks is also an alternative - but it includes much more coding and management for you
      June 14, 2019 12:17 PM IST
    0
  • Stream Analytics jobs are perfect for setting up real time analytics on your data.

    As an alternative, you can also use databricks and Structured Streaming.

    If you do not have a real time requirement, consider using Azure Functions (Processing data from IoT Hub with Azure Functions). If you were using Event Hubs, you could use Event Hubs Capture to move your data in to a storage account and then process further using Azure Data Factory, databricks, or any other technology that can connect to the storage account.
      June 11, 2019 4:41 PM IST
    0