Azure Functions¶
About
Azure Functions is an event-driven serverless code execution solution that allows you to build robust apps while using less code, and with less infrastructure and lower costs.
An Azure Function is a short-lived, serverless computation that is triggered by external events. The trigger produces an input payload, which is delivered to the Azure Function. The Azure Function then does computation with this payload and subsequently outputs its result to other Azure Functions, computation services, or storage services. See also What is Azure Functions?.
Learn
A common pattern uses an Azure Function to enrich and ingest data into a CrateDB instance by connecting the function to an IoT Hub new‑messages trigger.