Uses of Class
org.apache.druid.indexer.TaskStatus
-
Packages that use TaskStatus Package Description org.apache.druid.indexer -
-
Uses of TaskStatus in org.apache.druid.indexer
Methods in org.apache.druid.indexer that return TaskStatus Modifier and Type Method Description static TaskStatusTaskStatus. failure(String taskId, String errorMsg)All failed task status must have a non-null error message.static TaskStatusTaskStatus. fromCode(String taskId, TaskState code)This method is deprecated for production because it does not handle the error message of failed task status properly.static TaskStatusTaskStatus. running(String taskId)static TaskStatusTaskStatus. success(String taskId)static TaskStatusTaskStatus. success(String taskId, String errorMsg)Deprecated.static TaskStatusTaskStatus. success(String taskId, TaskLocation location)TaskStatusTaskStatus. withDuration(long _duration)TaskStatusTaskStatus. withLocation(TaskLocation location)Method parameters in org.apache.druid.indexer with type arguments of type TaskStatus Modifier and Type Method Description static TaskStatusPlusTaskStatusPlus. fromTaskIdentifierInfo(TaskInfo<TaskIdentifier,TaskStatus> taskIdentifierInfo)Convert a TaskInfo class of TaskIdentifier and TaskStatus to a TaskStatusPlus Applicable only for completed or waiting tasks since a TaskInfo doesn't have the exhaustive info for running tasks
-