I want to search in HDFS and list out the files that contains my search string exactly, and my second requirement is that is there any possible way to search for a range of values in a file HDFS.
let suppose below is my file and it contains the following data
/user/hadoop/test.txt
101,abc
102,def
103,ghi
104,aaa
105,bbb
is there any possible way to search with the range [101-104] so that it returns the files which contains the following data range.
.