I have zip files in HDFS.I am going to write a mapreduce program in R. Now R is having command to unzip the zip file.
unzip("filepath")
but here it is not accepting my HDFS file path? I tried like
unzip(hdfs.file("HDFS file path"))
it is throwing error..
invalid path argument..
Is there any way to give HDFS file path to my R commands?