Skip to content
Snippets Groups Projects
Commit 20c49beb authored by Václav Bartoš's avatar Václav Bartoš
Browse files

Set up compression of rotated NiFi logs

NiFi logs can take up to 3 GB per node in default configuration. This configures log rotation in a way that old log files are gzipped and therefore much smaller.
parent 5a8fe694
No related branches found
No related tags found
No related merge requests found
...@@ -58,6 +58,15 @@ ...@@ -58,6 +58,15 @@
src: nifi.properties.j2 src: nifi.properties.j2
dest: "{{ ansible_facts.env['NIFI_HOME'] }}/conf/nifi.properties" dest: "{{ ansible_facts.env['NIFI_HOME'] }}/conf/nifi.properties"
- name: Configure compression of NiFi log files
# NiFi log files can consume ~3GB (on each node) in default configuration.
# Add ".gz" to the filename pattern, which enables compression of rolled log files
remote_user: nifi
replace:
path: "{{ ansible_facts.env['NIFI_HOME'] }}/conf/logback.xml"
regexp: '\.log</fileNamePattern>'
replace: '.log.gz</fileNamePattern>'
- name: Copy authorizations.xml - name: Copy authorizations.xml
remote_user: nifi remote_user: nifi
copy: copy:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment