Hi Dilip, There is currently no way of getting this information via the JDBC client. Hive generates the DAG of Map Reduce tasks, which Hadoop then executes. You can see what tasks Hadoop is running via the job tracker. If you run the Hive server in debug mode, then you can track the progress of the map reduce jobs by viewing the output logs. However, this obviously means that you need access to the server, which might not be feasible depending on what you're trying to achieve. Can you describe why you'd like to monitor the jobs?
-Vinithra On Fri, May 14, 2010 at 11:37 AM, Dilip Joseph < [email protected]> wrote: > Hello, > > I am using the Hive JDBC client to execute queries. Is there any way > to track the progress of the various Map Reduce jobs involved in the > query's execution? > > Thanks, > > Dilip >
