So, I need something on @Azure that allows me to
track "jobs", something that can be schedule, picked up by a runner, and marked
as complete.
On AWS I can use IoT Jobs for that, but on Azure I didn't find something
similar.
A static archive of Markus Tacker's tweets. Follow me on Mastodon: @[email protected].
So, I need something on @Azure that allows me to
track "jobs", something that can be schedule, picked up by a runner, and marked
as complete.
On AWS I can use IoT Jobs for that, but on Azure I didn't find something
similar.
@Azure It's not a simple queue, like
https://docs.microsoft.com/en-us/azure/storage/queues/storage-queues-introduction,
job information should be persisted indefinitely ... messages in a queue will be
removed.
I could obviously combine Queue with persistent storage...
@Azure Hm ... since GitHub is a Microsoft product,
and I need this for a firmware CI task on real devices, I could set this up
using GitHub actions with a self-hosted runner.