Package org.mlflow.api.proto
Interface Jobs.JobStateOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Jobs.JobState,Jobs.JobState.Builder
- Enclosing class:
- Jobs
public static interface Jobs.JobStateOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionbooleancontainsMetadata(String key) Additional metadata as key-value pairs.Error message if the job failed.com.google.protobuf.ByteStringError message if the job failed.Deprecated.intAdditional metadata as key-value pairs.Additional metadata as key-value pairs.getMetadataOrDefault(String key, String defaultValue) Additional metadata as key-value pairs.getMetadataOrThrow(String key) Additional metadata as key-value pairs.Current status of the job.booleanError message if the job failed.booleanCurrent status of the job.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasStatus
boolean hasStatus()Current status of the job.
optional .mlflow.JobStatus status = 1;- Returns:
- Whether the status field is set.
-
getStatus
Jobs.JobStatus getStatus()Current status of the job.
optional .mlflow.JobStatus status = 1;- Returns:
- The status.
-
hasErrorMessage
boolean hasErrorMessage()Error message if the job failed. Only set when status is JOB_STATUS_FAILED.
optional string error_message = 2;- Returns:
- Whether the errorMessage field is set.
-
getErrorMessage
String getErrorMessage()Error message if the job failed. Only set when status is JOB_STATUS_FAILED.
optional string error_message = 2;- Returns:
- The errorMessage.
-
getErrorMessageBytes
com.google.protobuf.ByteString getErrorMessageBytes()Error message if the job failed. Only set when status is JOB_STATUS_FAILED.
optional string error_message = 2;- Returns:
- The bytes for errorMessage.
-
getMetadataCount
int getMetadataCount()Additional metadata as key-value pairs. Can be used to store job-specific state information.
map<string, string> metadata = 3; -
containsMetadata
Additional metadata as key-value pairs. Can be used to store job-specific state information.
map<string, string> metadata = 3; -
getMetadata
Deprecated.UsegetMetadataMap()instead. -
getMetadataMap
Additional metadata as key-value pairs. Can be used to store job-specific state information.
map<string, string> metadata = 3; -
getMetadataOrDefault
Additional metadata as key-value pairs. Can be used to store job-specific state information.
map<string, string> metadata = 3; -
getMetadataOrThrow
Additional metadata as key-value pairs. Can be used to store job-specific state information.
map<string, string> metadata = 3;
-