NIFI-1807 Adding information on volatile content repository configuration settings.
Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/794cbd9f Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/794cbd9f Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/794cbd9f Branch: refs/heads/0.x Commit: 794cbd9fa894e740adad0130425e52c67e851a78 Parents: 7f6693c Author: Aldrin Piri <[email protected]> Authored: Sat Apr 23 14:11:16 2016 -0400 Committer: Aldrin Piri <[email protected]> Committed: Sat Apr 23 14:54:45 2016 -0400 ---------------------------------------------------------------------- .../src/main/asciidoc/administration-guide.adoc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/794cbd9f/nifi-docs/src/main/asciidoc/administration-guide.adoc ---------------------------------------------------------------------- diff --git a/nifi-docs/src/main/asciidoc/administration-guide.adoc b/nifi-docs/src/main/asciidoc/administration-guide.adoc index 33b24b2..23a6f76 100644 --- a/nifi-docs/src/main/asciidoc/administration-guide.adoc +++ b/nifi-docs/src/main/asciidoc/administration-guide.adoc @@ -1322,6 +1322,13 @@ FlowFile Repository, if also on that disk, could become corrupt. To avoid this s |==== |*Property*|*Description* |nifi.content.repository.implementation|The Content Repository implementation. The default value is org.apache.nifi.controller.repository.FileSystemRepository and should only be changed with caution. To store flowfile content in memory instead of on disk (at the risk of data loss in the event of power/machine failure), set this property to org.apache.nifi.controller.repository.VolatileContentRepository. +|==== + +*File System Content Repository Properties* + + +|==== +|*Property*|*Description* +|nifi.content.repository.implementation|The Content Repository implementation. The default value is org.apache.nifi.controller.repository.FileSystemRepository and should only be changed with caution. To store flowfile content in memory instead of on disk (at the risk of data loss in the event of power/machine failure), set this property to org.apache.nifi.controller.repository.VolatileContentRepository. |nifi.content.claim.max.appendable.size|The maximum size for a content claim. The default value is 10 MB. |nifi.content.claim.max.flow.files|The maximum number of FlowFiles to assign to one content claim. The default value is 100. |nifi.content.repository.directory.default*|The location of the Content Repository. The default value is ./content_repository. + @@ -1342,6 +1349,14 @@ this property specifies the maximum amount of time to keep the archived data. It |nifi.content.viewer.url|The URL for a web-based content viewer if one is available. It is blank by default. |==== +*Volatile Content Repository Properties* + + +|==== +|*Property*|*Description* +|nifi.volatile.content.repository.max.size|The Content Repository maximum size in memory. The default value is 100MB. +|nifi.volatile.content.repository.block.size|The Content Repository block size. The default value is 32KB. +|==== + *Provenance Repository* + The Provenance Repository contains the information related to Data Provenance. The next three sections are for Provenance Repository properties.
