hadoop - Delete folders from HDFS in dd-MM-yyyy format for a year -


how delete bunch of directories in hadoop year? folder created daily. name scheme "dd-mm-yyyy". how delete folders of particular year? tried getting list of folders hadoop fs -find / "*1995" unable delete them piping them rm command.

hadoop cli supports both recursive rm (needed delete directories) , wildcards:

hadoop fs -rm -r -f /path/*-1995 

Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -