Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions nifi-docs/src/main/asciidoc/administration-guide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3449,14 +3449,13 @@ for components to persist state. See the <<state_management>> section for more i
|====


=== H2 Settings
=== Database Settings

The H2 Settings section defines the settings for the H2 database, which keeps track of user access and flow controller history.
The Database Settings section defines the settings for the internal database, which tracks flow configuration history.

|====
|*Property*|*Description*
|`nifi.database.directory`*|The location of the H2 database directory. The default value is `./database_repository`.
|`nifi.h2.url.append`|This property specifies additional arguments to add to the connection string for the H2 database. The default value should be used and should not be changed. It is: `;LOCK_TIMEOUT=25000;WRITE_DELAY=0;AUTO_SERVER=FALSE`.
|====

[[repository-encryption-properties]]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
<version>1.24.0-SNAPSHOT</version>
</parent>
<artifactId>nifi-administration</artifactId>
<properties>
<xodus.version>2.0.1</xodus.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.nifi</groupId>
Expand Down Expand Up @@ -83,5 +86,15 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.xodus</groupId>
<artifactId>xodus-openAPI</artifactId>
<version>${xodus.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.xodus</groupId>
<artifactId>xodus-entity-store</artifactId>
<version>${xodus.version}</version>
</dependency>
</dependencies>
</project>

This file was deleted.

Loading