mirror of https://github.com/apache/nifi.git
NIFI-9179 Enabled system-tests workflow for selected modules
- Increased system test NiFi heap memory to 512 MB Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #5389.
This commit is contained in:
parent
1374f66f09
commit
9dfcba24cd
|
@ -19,6 +19,13 @@ on:
|
||||||
# Run every day at 00:00
|
# Run every day at 00:00
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * *"
|
- cron: "0 0 * * *"
|
||||||
|
# Run on pull requests for selected modules
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- 'nifi-api/**'
|
||||||
|
- 'nifi-framework-api/**'
|
||||||
|
- 'nifi-nar-bundles/nifi-framework-bundle/**'
|
||||||
|
- 'nifi-system-tests/**'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
DEFAULT_MAVEN_OPTS: >-
|
DEFAULT_MAVEN_OPTS: >-
|
||||||
|
|
|
@ -17,17 +17,12 @@
|
||||||
lib.dir=../nifi-lib-assembly/lib
|
lib.dir=../nifi-lib-assembly/lib
|
||||||
conf.dir=./conf
|
conf.dir=./conf
|
||||||
working.dir=./target/node1
|
working.dir=./target/node1
|
||||||
#java=/Library/Java/JavaVirtualMachines/jdk1.8.0_60.jdk/Contents/Home/bin/java
|
|
||||||
|
|
||||||
# How long to wait after telling NiFi to shutdown before explicitly killing the Process
|
# How long to wait after telling NiFi to shutdown before explicitly killing the Process
|
||||||
graceful.shutdown.seconds=20
|
graceful.shutdown.seconds=20
|
||||||
|
|
||||||
# JVM memory settings
|
# JVM memory settings
|
||||||
java.arg.2= -Xms384m
|
java.arg.2= -Xms512m
|
||||||
java.arg.3=-Xmx384m
|
java.arg.3=-Xmx512m
|
||||||
|
|
||||||
java.arg.14=-Djava.awt.headless=true
|
java.arg.14=-Djava.awt.headless=true
|
||||||
|
|
||||||
#java.arg.debug=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8002
|
|
||||||
|
|
||||||
nifi.bootstrap.sensitive.key=
|
|
|
@ -17,17 +17,12 @@
|
||||||
lib.dir=../nifi-lib-assembly/lib
|
lib.dir=../nifi-lib-assembly/lib
|
||||||
conf.dir=./conf
|
conf.dir=./conf
|
||||||
working.dir=./target/node2
|
working.dir=./target/node2
|
||||||
#java=/Library/Java/JavaVirtualMachines/jdk1.8.0_60.jdk/Contents/Home/bin/java
|
|
||||||
|
|
||||||
# How long to wait after telling NiFi to shutdown before explicitly killing the Process
|
# How long to wait after telling NiFi to shutdown before explicitly killing the Process
|
||||||
graceful.shutdown.seconds=20
|
graceful.shutdown.seconds=20
|
||||||
|
|
||||||
# JVM memory settings
|
# JVM memory settings
|
||||||
java.arg.2= -Xms384m
|
java.arg.2= -Xms512m
|
||||||
java.arg.3=-Xmx384m
|
java.arg.3=-Xmx512m
|
||||||
|
|
||||||
java.arg.14=-Djava.awt.headless=true
|
java.arg.14=-Djava.awt.headless=true
|
||||||
|
|
||||||
#java.arg.debug=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8003
|
|
||||||
|
|
||||||
nifi.bootstrap.sensitive.key=
|
|
|
@ -17,17 +17,12 @@
|
||||||
lib.dir=../nifi-lib-assembly/lib
|
lib.dir=../nifi-lib-assembly/lib
|
||||||
conf.dir=./conf
|
conf.dir=./conf
|
||||||
working.dir=./target/standalone-instance
|
working.dir=./target/standalone-instance
|
||||||
#java=/Library/Java/JavaVirtualMachines/jdk1.8.0_60.jdk/Contents/Home/bin/java
|
|
||||||
|
|
||||||
# How long to wait after telling NiFi to shutdown before explicitly killing the Process
|
# How long to wait after telling NiFi to shutdown before explicitly killing the Process
|
||||||
graceful.shutdown.seconds=20
|
graceful.shutdown.seconds=20
|
||||||
|
|
||||||
# JVM memory settings
|
# JVM memory settings
|
||||||
java.arg.2= -Xms384m
|
java.arg.2= -Xms512m
|
||||||
java.arg.3=-Xmx384m
|
java.arg.3=-Xmx512m
|
||||||
|
|
||||||
java.arg.14=-Djava.awt.headless=true
|
java.arg.14=-Djava.awt.headless=true
|
||||||
|
|
||||||
#java.arg.debug=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8002
|
|
||||||
|
|
||||||
nifi.bootstrap.sensitive.key=
|
|
Loading…
Reference in New Issue