Member since
04-28-2020
8
Posts
0
Kudos Received
0
Solutions
04-30-2022
04:23 PM
I am trying to insert data from Apache NIFI to Mongo DB. Is there any way to Know the Query Execution time, Time taken to insert in to Mongo DB from NIFI? I am using put Mongo Processor.
... View more
Labels:
- Labels:
-
Apache NiFi
04-21-2022
09:53 AM
@san_re What documentation are you following for what you are attempting to do here? You're much better off following a specific set of instructions from the site where you are downloading Mysql and/or NiFi from.
For NiFi, the canonical instructions can be found here:
NiFi System Administrator's Guide
... View more
04-28-2020
05:09 AM
@san_re The configuration of Remote Url in InvokeHTTP should be as follows: /j_security_check?j_username=${j_username}&j_password=${j_password} Notice the credential values are passed to the url with the ?. This is the only change in the processor config. Here is a demo flow: GenerateFlowFile - starts flow for testing UpdateAttribute - sets user, pass,and mime type attributes needed in InvokeHttp InvokeHttp - sends POST You can find this template on my GitHub to inspect the entire flow: https://github.com/steven-dfheinz/NiFi-Templates/blob/master/InvokeHttp_Demo.xml
... View more