Hi,
is it possible to kill a running query (including all the hadoop jobs
behind)?

I think it's not, because the Hive JDBC Driver doesn't implement .close()
and .cancel() on the (prepared) statement.

This attached code shows the problem.

Bevor the statement gets executed, it will spawn a Thread that tries to
stop the execution of the query after 10 sec.

Are there any other ways to stop the job on the cluster?

I could do it over the Job Client, but for that i need the JobId.

Thanks a lot.


Best Regards,

Christian.
CREATE TABLE IF NOT EXISTS steam (
  col0 string,
  col1 string,
  col2 string,
  col3 string,
  col4 string,
  col5 string
)
ROW FORMAT DELIMITED
   FIELDS TERMINATED BY "'"
STORED AS TEXTFILE
LOCATION "/examples/data/steam/steam-2012.06.01/complete/User_Game.txt"

Reply via email to