Member since
07-30-2019
920
Posts
195
Kudos Received
91
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1036 | 10-05-2021 01:53 PM | |
14461 | 09-23-2019 06:03 AM | |
5601 | 05-04-2019 08:42 PM | |
1142 | 06-11-2018 12:45 PM | |
10446 | 06-04-2018 01:11 PM |
04-12-2017
01:48 PM
@Ray Deng What value is in the property nifi.security.user.login.identity.provider
... View more
04-12-2017
01:34 PM
@Ray Deng What version of IE are you using and do you have another browser you are able to try?
... View more
04-12-2017
01:27 PM
@subash sharma The Rest API documentation will be found at the URL: https://nifi-host:port/nifi-docs/rest-api Just replace the the nifi-host and port values with your information.
... View more
04-12-2017
01:12 PM
@Ray Deng That warning is normal, not the issue. If there is nothing else in the user log, that means you are not even getting to NiFi. Is port 7071 open? What URL are you using? The same on that is in the app log? https://spark-nn01.local:7071/nifi? Can the system you are launching IE from resolve the hostname to an IP address? Did you generate a user certificate to load into the IE browser?
... View more
04-12-2017
12:18 PM
1 Kudo
@Emmanouil Petsanis
The DuplicateFlowFile processor will do what you need. FYI, the duplicated flow files will have identical file names as well the other attributes.
... View more
04-12-2017
01:24 AM
2 Kudos
@subash sharma Here is the command you need, just fill in your appropriate values: curl 'https://nifi-host:port/nifi-api/access/token' -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' --data 'username=ldap-username&password=ldap-password' --compressed —insecure And there you go, this will return the token you need. The subsequent curl commands will need the token returned as part of the command: -H 'Authorization: Bearer token-returned'
... View more
04-11-2017
07:35 PM
1 Kudo
@Ray Deng Did you generate a user certificate to load into the IE browser? Look in the nifi-user.log file and look for any errors.
... View more
04-11-2017
06:41 PM
2 Kudos
@subash sharma Here is the format of the command you need to get a token: curl 'https://nifi-host:port/nifi-api/access/token' -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' --data 'username=ldap-username&password=ldap-password' --compressed —insecure Then add the following to all of your subsequent curl commands -H 'Authorization: Bearer token-returned’
... View more
04-11-2017
12:52 PM
1 Kudo
@Peter Murray That is one way to configure it. The batching of 50 flow files is how the MonitorActivity processor works, no matter what Scheduling Strategy is implemented. I would change the Scheduling Strategy to Timer driven, and have it run once a minute, with the Threshold Duration to 24 hours, as you suggested.
... View more
04-10-2017
08:23 PM
2 Kudos
@Peter Murray You can use the MonitorActivity processor in the connection out of the ListDatabaseTables processor, and set the interval on how long to wait for a flow file, if no flow file is generated in the configured time period, then the processor will generate a lack of activity flow file and that can be connected to a PutEmail processor. When a flow file does arrive, you can use the processor to notify you of that also. The flow file out of the ListDatabaseTables processor will go out the success relationship and can be connected to the next processor in your normal flow. A simple example below:
... View more