Reputation: 567
Is it possible to view the changes made to a process group for each version stored in a Nifi registry?
Right-clicking on a versioned process group in Nifi only gives you the option to change version
or stop version control
, and the Change Version
dialog window does not give commit information aside from the version, date and comment.
I would like to be able to view each change after a new version has been committed, much like it appears in the Show local changes
list before the version is committed. Is this possible?
Upvotes: 1
Views: 1513
Reputation: 18630
Currently there isn't a good way to do this from the NiFi side, but it is definitely something we should support in the future.
There is a REST end-point in registry that may give you what you are interested in...
GET /buckets/{bucketId}/flows/{flowId}/diff/{versionA}/{versionB}
https://nifi.apache.org/docs/nifi-registry-docs/rest-api/index.html
Upvotes: 3