I'm new in the area, so sorry if this is a stupid question, but i have a sqoop command in one of my projects that i suspect is writing a .jar file inside /tmp. It should not write into /tmp.
this is the command:
time sqoop import \
-D mapreduce.job.classloader="${<env_var>}" \
-D mapreduce.job.queuename="${<env_var>}" \
-D mapreduce.job.name="${<env_var>}" \
-D tez.queue.name="${<env_var>}" \
-D org.apache.sqoop.splitter.allow_text_splitter=true \
--driver ${<env_var>} \
--connect ${<env_var>} \
--username ${<env_var>} \
--password-file ${<env_var>} \
--query ${<env_var>}
--split-by ${<env_var>} \
--num-mappers ${<env_var>} \
--target-dir ${<env_var>} \
${DELETE_TARGET_DIR} \
--fields-terminated-by ${<env_var>}
I also found in the log the following message: orm.CompilationManager: Wiriting jar file: <file_path>
What is this orm.CompilationManager?