Automating Starting Services in Apache NiFi and Applying Parameters
Automate all the things! You can call these commands interactively or script all of them with awesome devops tools. Andre and Dan can tell you more about that.
Enable All NiFi Services on the Canvas
By running this three times, I get any stubborn ones or ones that needed something previously running. This could be put into a loop and check the status before trying again.
nifi pg-list
nifi pg-status
nifi pg-get-services
The NiFi CLI has interactive help available and also some good documentation:
https://nifi.apache.org/docs/nifi-docs/html/toolkit-guide.html#nifi_CLI
/opt/demo/nifi-toolkit-1.12.1/bin/cli.sh nifi pg-enable-services -u http://edge2ai-1.dim.local:8080 --processGroupId root
/opt/demo/nifi-toolkit-1.12.1/bin/cli.sh nifi pg-enable-services -u http://edge2ai-1.dim.local:8080 --processGroupId root
/opt/demo/nifi-toolkit-1.12.1/bin/cli.sh nifi pg-enable-services -u http://edge2ai-1.dim.local:8080 --processGroupId root
We could then start a process group if we wanted:
nifi pg-start -u http://edge2ai-1.dim.local:8080 -pgid 2c1860b3-7f21-36f4-a0b8-b415c652fc62
List all process groups
/opt/demo/nifi-toolkit-1.12.1/bin/cli.sh nifi pg-list -u http://edge2ai-1.dim.local:8080
List Parameters
/opt/demo/nifi-toolkit-1.12.1/bin/cli.sh nifi list-param-contexts -u http://edge2ai-1.dim.local:8080 -verbose
Set parameters to set parameter context for a process group, you can loop to do all.
- pgid => parameter group id
- pcid => parameter context id
I need to put this in a shell or python script:
/opt/demo/nifi-toolkit-1.12.1/bin/cli.sh nifi pg-set-param-context -u http://edge2ai-1.dim.local:8080 -verbose -pgid 2c1860b3-7f21-36f4-a0b8-b415c652fc62 -pcid 39f0f296-0177-1000-ffff-ffffdccb6d90
Example
https://github.com/tspannhw/ApacheConAtHome2020/blob/main/scripts/setupnifi.sh
You could also use the NiFi REST API or Dan's awesome Python API (https://nipyapi.readthedocs.io/en/latest/)).
References
- https://www.datainmotion.dev/2020/09/devops-working-with-parameter-contexts.html
- https://www.datainmotion.dev/2019/11/nifi-toolkit-cli-for-nifi-110.html
- https://www.datainmotion.dev/2020/06/no-more-spaghetti-flows.html
- https://www.datainmotion.dev/2020/07/report-on-this-apache-nifi-1114-monitor.html
- https://github.com/tspannhw/EverythingApacheNiFi
- https://www.datainmotion.dev/2020/12/cloudera-data-platform-using-apache.html
- https://www.datainmotion.dev/2020/03/using-nifi-cli-to-restore-nifi-flows.html
- https://www.datainmotion.dev/2020/10/automating-building-migration-backup.html
- https://docs.cloudera.com/HDPDocuments/HDF3/HDF-3.5.2/nifi-toolkit/content/nifi_cli.html
- https://levelup.gitconnected.com/an-overview-of-apache-nifi-and-toolkit-cli-deployments-785978dbce3b
- https://pierrevillard.com/2018/04/09/automate-workflow-deployment-in-apache-nifi-with-the-nifi-registry/
- https://dzone.com/articles/devops-for-apache-nifi-17-and-more