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!