Github user kevdoran commented on a diff in the pull request:
https://github.com/apache/nifi-registry/pull/121#discussion_r192790706
--- Diff: nifi-registry-docs/src/main/asciidoc/administration-guide.adoc ---
@@ -867,12 +867,32 @@ content of the flows saved to the registry. For
further details on persistence p
These properties define the settings for the Registry database, which
keeps track of metadata about buckets and all items stored in buckets.
+The 0.1.0 release leveraged an embedded H2 database that was configured
via the following properties:
+
|====
|*Property*|*Description*
|nifi.registry.db.directory|The location of the Registry database
directory. The default value is `./database`.
|nifi.registry.db.url.append|This property specifies additional arguments
to add to the connection string for the Registry database. The default value
should be used and should not be changed. It is:
`;LOCK_TIMEOUT=25000;WRITE_DELAY=0;AUTO_SERVER=FALSE`.
|====
+The 0.2.0 release introduced a more flexible approach which allows
leveraging an external database. This new approach
+is configured via the following properties:
--- End diff --
Good writeup. Clear and concise.
---