While creating a NiFi flow I'm realizing the versions of the components changing.
I understand that the version changes each time the component updates - but what is considered an update of a component?
For example, what causes an update in a connection's version?
I'm trying to find some pattern but with not much luck.
Thanks in advance!
The official documentation states that you can have multiple versions of your flow at the same time:
You can opt-out of versioning all together:
Methods of disable the versioning:
NiFi UI: To change the version of a flow, right-click on the versioned process group and select
Version→Change version(link).Rest API: Send an http
DELETErequest to/versions/process-groups/{id}with the appropriateID.You can also use Toolkit CLI to view available versions, by executing
./bin/cli.sh registry diff-flow-versions(link).