Hi guys,
I setup Volatile content repo for my NiFi cluster, the other repos are all file-based.
However, It shows me "Content Repository out of space " exception, when I process only 20M dataset.
It seems below settings don't work.
nifi.content.repository.implementation=org.apache.nifi.controller.repository.VolatileContentRepository
nifi.volatile.content.repository.max.size=1 GB
nifi.volatile.content.repository.block.size=32 KB
From below code comment, I found
"
If no Backup Repository has been specified, when the threshold is exceeded, an IOException will be thrown"
https://github.com/apache/nifi/blob/master/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nif...
My questions are:
1. How to setup the Backup Repository for volatile content repository?
2. Is my above setting for "nifi.volatile.content.repository.max.size" correct? It seems still using the default 100MB.
Thanks.