Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created 07-21-2016 10:26 AM
Hello
I am trying to use the PutHDFS processor to push files into my hadoop cluster. I have a folder called CF in the root of my HDFS to which i want to push these files through the nifi processor.
What should i put in the Directory property of the nifi processor? I was advised i should put the fully qualified path of my folder. If the CF folder is in the root of HDFS, what would my fully qualified path be?
Thanks
Created 07-21-2016 11:56 AM
Hi @Ahmad Debbas,
I am not sure the fully qualified path is needed, you could try with /CF.
Otherwise, a full path would be something like <fs.defaultFS>/CF where <fs.defaultFS> is a property you have in your core-site configuration file (which is needed by the processor).
Also take care of the rights: the user running NiFi must have write access into your folder.
Hope this helps.
Created 07-21-2016 11:56 AM
Hi @Ahmad Debbas,
I am not sure the fully qualified path is needed, you could try with /CF.
Otherwise, a full path would be something like <fs.defaultFS>/CF where <fs.defaultFS> is a property you have in your core-site configuration file (which is needed by the processor).
Also take care of the rights: the user running NiFi must have write access into your folder.
Hope this helps.
Created 07-21-2016 12:14 PM
thank you it worked!