Follow these steps to deploy a Cloudera DataFlow Functions using the
Azure CLI.
Your NiFi flow definition is stored in the Cloudera DataFlow
Catalog and you have the CRN corresponding to the flow version you want to execute as a
function
You have created a Machine User with the proper role and you have its Access
Key and Private Key credentials
You have installed and configured the Azure CLI on your local machine
These steps provide an example for deploying a Function App
that listens for HTTPS requests with a publicly exposed endpoint. Cloudera recommends going
through the documented steps in the Azure Console UI to generate the appropriate templates and
use those templates for CLI-based deployments.
Create a Resource Group that you will use for the Function App. You can skip this step
if you want to reuse an existing Resource Group.
az group create -l francecentral -n MyDFFResourceGroup
az deployment group create --resource-group MyDFFResourceGroup \
--template-file <path to template.json> \
--parameters \
subscriptionId=<existing subscription ID to use> \
name=<name of your FunctionApp> \
location=<region where to deploy your Function App> \
hostingPlanName=<name of the plan to be created> \
resourceGroup=<name of the resource group previously created> \
storageAccountName=<name of the storage account to be created> \
FLOW_CRN=... \
DF_ACCESS_KEY=... \
DF_PRIVATE_KEY=...
If you have additional parameters, you can add those in the
appSettings section of the template.json
file.
Your function is now ready to be used with HTTPS triggers. See the documentation for more
details. If another type of trigger is required, you need to create an Event Grid
subscription as explained in Azure Function triggers.