Home > Mobile >  When Azure IoT Hub can be preferred over Iot Central?
When Azure IoT Hub can be preferred over Iot Central?

Time:09-26

I am not understanding when Azure IoT Hub can be preferred over Azure IoT Central. From the readings done so far, IoT central seems better over all the aspects. Anybody can explain me where are the situations where IoT hub is better than IoT Central?

Thanks

CodePudding user response:

There is no definitive answer to that question, neither are "better", but most of the times one will fit your use case more than the other.

If you want a complete, managed way of connecting devices to the cloud and create dashboards (within the product's limits), a Software as a Service solution like Azure IoT Central can be a match. Think about the requirements of the project you're looking to do, and if it's all supported by IoT Central, go for it! If there are some features you can build by leveraging data export from IoT Central, it might still be a great fit.

If you want to build bi-directional communication and device registration for IoT devices into your own cloud platform, IoT Hub comes into play. Maybe you need better control of the data, or maybe the data insights you need aren't supported by IoT Central. There are a lot of cases where it might not be the best choice. IoT Hub gives you a lot more flexibility that you can use to create almost any IoT scenario.

CodePudding user response:

Both are not directly comparable, there are specific advantages of IoT Central which you may need to consider.

IoT Hub is a PaaS service which can be used with other services to create an IoT solution while IoT Central is IoT Application platform which can be used as-is or extended via companion application. Even addressing basic functionality in IoT Central you will need over dozen other services and you own responsibility to design, manage and administer the orchestration yourself.

IoT Central internally uses multiple IoT Hubs (HA/DR) and bunch of services to bring the functionality that you see in the application. This includes App Service to host the UX, Rules Engine, Fast Storage, API layer, Data Export, RBAC, in-app Multi-tenancy , etc. etc. The key advantages you get -

  1. Full featured IoT solution with high availability, security, scalability that is available in < 10 secs under 99.9% SLA
  2. Simplification, easy to connect any device or simulate basic capabilities using the built-in plug-n-play support. Just select any device from the pnp catalog and try it out even before purchasing the devices.
  3. Create user or app level dashboards with device specific views. Device specific view can be auto-generated with PnP devices.
  4. Rule creation, alerting and integration with other applications via Logic Apps, Functions
  1. Data Export functionality to Event Hub, Service Bus, Blob Storage or Web hooks
  2. Rich Job's interface allowing updating device configurations or firmware
  3. RBAC in combination with Organizations allow giving specific permissions to user.
  4. The big advantage is all this is available with a very simpler per device per month pricing that starts as low as 8 cents per device per month ($2 a year) additional messages https://azure.microsoft.com/en-us/pricing/details/iot-central/

In general unless you already have UX, Storage, Rules engine, etc. elements required for IoT Solution and need to add IoT Hub to ingest and manage IoT devices it will make more sense to start with IoT Central and build with it. It will save time, efforts and you can focus on specific differentiation than build the underlying plumbing and owning the management and sustenance. It is difficult to come to that price point given the high cost of cloud engineers required to support and maintain it.

  • Related