You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by al...@apache.org on 2016/04/23 20:54:10 UTC

[1/2] nifi git commit: NIFI-1807 Update administration-guide.adoc adding flowfile, provenance, and content repository volatile implementation documentation.

Repository: nifi
Updated Branches:
  refs/heads/master fb7b3fe4b -> eded0de15


NIFI-1807 Update administration-guide.adoc adding flowfile, provenance, and content repository volatile implementation documentation.

This closes #378.

Signed-off-by: Aldrin Piri <al...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/b4309e86
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/b4309e86
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/b4309e86

Branch: refs/heads/master
Commit: b4309e86bd15720ade5530b4f6eb0b1e603b3935
Parents: fb7b3fe
Author: Randy Gelhausen <rg...@gmail.com>
Authored: Fri Apr 22 17:41:29 2016 -0400
Committer: Aldrin Piri <al...@apache.org>
Committed: Sat Apr 23 14:53:27 2016 -0400

----------------------------------------------------------------------
 nifi-docs/src/main/asciidoc/administration-guide.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/b4309e86/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 8d784c6..bd5bf7b 100644
--- a/nifi-docs/src/main/asciidoc/administration-guide.adoc
+++ b/nifi-docs/src/main/asciidoc/administration-guide.adoc
@@ -1163,7 +1163,7 @@ to configure it on a separate drive if available.
 
 |====
 |*Property*|*Description*
-|nifi.flowfile.repository.implementation|The FlowFile Repository implementation. The default value is org.apache.nifi.controller.repository.WriteAheadFlowFileRepository and should not be changed.
+|nifi.flowfile.repository.implementation|The FlowFile Repository implementation. The default value is org.apache.nifi.controller.repository.WriteAheadFlowFileRepository and should only be changed with caution. To store flowfiles 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.VolatileFlowFileRepository.
 |nifi.flowfile.repository.directory*|The location of the FlowFile Repository. The default value is ./flowfile_repository.
 |nifi.flowfile.repository.partitions|The number of partitions. The default value is 256.
 |nifi.flowfile.repository.checkpoint.interval| The FlowFile Repository checkpoint interval. The default value is 2 mins.
@@ -1197,7 +1197,7 @@ 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 not be changed.
+|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. +
@@ -1224,7 +1224,7 @@ The Provenance Repository contains the information related to Data Provenance. T
 
 |====
 |*Property*|*Description*
-|nifi.provenance.repository.implementation|The Provenance Repository implementation. The default value is org.apache.nifi.provenance.PersistentProvenanceRepository and should not be changed.
+|nifi.provenance.repository.implementation|The Provenance Repository implementation. The default value is org.apache.nifi.provenance.PersistentProvenanceRepository and should only be changed with caution. To store provenance events 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.provenance.VolatileProvenanceRepository.
 |====
 
 *Persistent Provenance Repository Properties* +


[2/2] nifi git commit: NIFI-1807 Adding information on volatile content repository configuration settings.

Posted by al...@apache.org.
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/eded0de1
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/eded0de1
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/eded0de1

Branch: refs/heads/master
Commit: eded0de154e2fcb543eda68e510bee06f0779f10
Parents: b4309e8
Author: Aldrin Piri <al...@apache.org>
Authored: Sat Apr 23 14:11:16 2016 -0400
Committer: Aldrin Piri <al...@apache.org>
Committed: Sat Apr 23 14:53:51 2016 -0400

----------------------------------------------------------------------
 .../src/main/asciidoc/administration-guide.adoc      | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/eded0de1/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 bd5bf7b..5b650b4 100644
--- a/nifi-docs/src/main/asciidoc/administration-guide.adoc
+++ b/nifi-docs/src/main/asciidoc/administration-guide.adoc
@@ -1198,6 +1198,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. +
@@ -1218,6 +1225,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.