Hi, Is it possible to get the task progress anything between 0 and 1 ? This is the sample code I am using.
for (Map.Entry<TezTaskID, Task> taskEntry : vertex.getTasks().entrySet()) { Task task = taskEntry.getValue(); double taskProgress = task.getReport().getProgress(); LOG.info("Task Progress : " + taskProgress); The value is either 0 or 1. Any kind of help is really appreciated. Regards, Abhishek