Hey,
You can use this command to see polling the Oozie server for an Oozie job:
$ oozie job -poll <job_id> -interval 10 -timeout 60 -verbose
This command allows polling the Oozie server for an Oozie job until it reaches a completed status like (SUCCEEDED, KILLED).
The -poll argument takes a valid Workflow Job ID, Coordinator Job ID, Coordinator Action ID, or Bundle Job ID.
- verbose will cause the job status to be printed at each poll; otherwise, there will be no output
- interval allows specifying the polling interval in minutes (default is 5)
- timeout allows specifying the timeout in minutes (default is 30 minutes); negative values indicate no timeout