Member since
04-11-2016
471
Posts
325
Kudos Received
118
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2129 | 03-09-2018 05:31 PM | |
2694 | 03-07-2018 09:45 AM | |
2592 | 03-07-2018 09:31 AM | |
4466 | 03-03-2018 01:37 PM | |
2511 | 10-17-2017 02:15 PM |
08-01-2016
02:55 PM
Hi @Alexander Flick, Could you share the configuration of your controller services? Are the two controller services running?
... View more
08-01-2016
11:35 AM
Have a look here: https://community.hortonworks.com/articles/9203/how-to-migrate-a-standalone-nifi-into-a-nifi-clust.html It is advised to run the DistributedMapCacheServer on the NCM, then, in DistributedMapCacheClientService, instead of localhost, you can use the IP address of your NCM.
... View more
08-01-2016
11:10 AM
1 Kudo
Hi @Yogesh Sharma, First you need to extract an attribute of your JSON that is considered as an identifier of your JSON content. Let's say you have: {"id":"myId", "name":"foo", ...} You may want to use a EvaluateJsonPath processor to extract the value of "id" into a FlowFile attribute by adding to the processor a property with name = id, and value = $.id Then you can route FlowFiles to your DetectDuplicate processor. For this processor, you need to setup the map cache service. For this, you need to go into the controller services panel and create two controller services: - a DistributedMapCacheServer with the default settings - a DistributedMapCacheClientService with hostname to localhost so that it uses the DistributedMapCacheServer you created. Then you start the two services, and in your DetectDuplicate processor, you can reference the DistributedMapCacheClientService you defined. Hope this helps.
... View more
07-29-2016
09:03 AM
I am not the author of the workflow but I'd say that the ouput port can be used if you want to use your FlowFile in following requests to Salesforce. You don't have to necessarily use it.
... View more
07-28-2016
01:49 PM
Oh... looking at your template, I think I realized I misunderstood you. Your problem is that the answer of the PostHTTP is not getting inside the content of the FlowFile and the consequence is that it won't make through to the HTTP response processor. Correct? If yes, it is because PostHTTP is a legacy processor and the response of the request won't be written to the flow file content. Instead I recommend you using InvokeHTTP which a more recent processor with a lot of options and you will have a relationship for HTTP responses of your POST request. Let me know if it is ok.
... View more
07-28-2016
01:18 PM
If possible, could you share your template, I'll have a quick look at it. Is it the same flow file from one end to another? When putting your file on disk before the response processor does it have the content you are expecting? What are the properties in your response processor?
... View more
07-28-2016
12:48 PM
1 Kudo
Hi @Christopher Amatulli, Once your FlowFile is created when receiving your request, you make it goes your flow and change the content of your flow file with what you want to return to the user. Then you route this FlowFile to the response processor and you set the HTTP return code you want. The response body will be the content of your flow file. Hope this helps.
... View more
07-27-2016
05:32 AM
3 Kudos
Hi @revan wabale, Is the NN configured in HA? If yes, in your Oozie wf, you need to set the name node property to the name service of HDFS instead of one of the NN. This error probably means you point to one NN but this NN is not the active one anymore. Hope this helps.
... View more
07-26-2016
08:17 AM
I'd recommend you having a look to this site : http://regexr.com/ You can enter your regular expression and then click on "Explain" (at the bottom) to have a complete explanation about the regular expression you entered. It also gives you the possibility to test your regular expression with any text you want. Hope this helps.
... View more