Community Articles

Find and share helpful community-sourced technical articles.
Labels (2)
avatar
Explorer

MiNiFi has http configuration Listener feature which can pull flow file configuration from the remote command control server, validate and apply the new flow configuration. The new file configuration should be a valid flow configuration yaml file.

The way to configure the URL endpoint, pull interval and related security parameters.

in minifi.properties

nifi.configuration.listener.type=http

nifi.configuration.listener.http.url=https://localhost:8080

nifi.configuration.listener.pull.interval=1 sec

if you want to enable client certificate

nifi.https.need.ClientAuth=true

nifi.https.client.certificate=./conf/client.pem

nifi.https.client.private.key=./conf/client.key

nifi.https.client.pass.phrase=./conf/password

nifi.https.client.ca.certificate=./conf/nifi-cert.pem

1,754 Views