@Satish Anjaneyappa
I think when you are running the hive query it's generating some temporary files in HDFS.
Can you check the remaining space in hdfs
$ hdfs dfsadmin -report
When you delete files in hadoop it drops the files to the /.Trash but does not remove them. If you are sure of the files you want to delete its always a good idea to use -skipTrash option
$ hdfs dfs -rm -skipTrash /path/to/file
This will skip the trash
However, if you do not add the -skipTrash flag, files are stored in a trash folder, which by default is:
/user/hdfs/.Trash
Empty the HDFS Trash by running
$ hdfs dfs -expunge
HTH