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

Is there a better way to structure post methods in Class Based Views -

Python Tornado package error when running server -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -