@Raghav Mp
HDFS root scratch directory for Hive jobs, which gets created with write all (733) permission. For each connecting user, an HDFS scratch directory ${hive.exec.scratchdir}/ is created with ${hive.scratch.dir.permission}.
To fix this issue, you can set below property in hive-site.xml, this is used for setting values for the entire Hive configuration
<property>
<name>hive.exec.scratchdir</name>
<value>/tmp/hive</value>
<description>Scratch space for Hive jobs</description>
</property>
For more detail: https://cwiki.apache.org/confluence/display/Hive/AdminManual+Configuration
Please accept the answer you found most useful.