Uinsg rhdfs it's possible to read files from HDFS in R. However, my files on HDFS are gzip-compressed. How do I read the plain text content of gzipped files on HDFS into R?
Things I've tried so far:
gzcon(hdfs.file(path))
-> Error in gzcon(...) : 'con' is not a connection
memDecompress(hdfs.read(hdfs.file(path)), type="g")
-> Error in memDecompress(..., type = "g") : internal error -3 in memDecompress(2)
Also tried memDecompress
with type="u"
.