Package org.mlflow.api.proto
Interface Service.RunInfoOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.RunInfo,Service.RunInfo.Builder
- Enclosing class:
- Service
public static interface Service.RunInfoOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and Type Method Description java.lang.StringgetArtifactUri()URI of the directory where artifacts should be uploaded.com.google.protobuf.ByteStringgetArtifactUriBytes()URI of the directory where artifacts should be uploaded.longgetEndTime()Unix timestamp of when the run ended in milliseconds.java.lang.StringgetExperimentId()The experiment ID.com.google.protobuf.ByteStringgetExperimentIdBytes()The experiment ID.java.lang.StringgetLifecycleStage()Current life cycle stage of the experiment : OneOf("active", "deleted")com.google.protobuf.ByteStringgetLifecycleStageBytes()Current life cycle stage of the experiment : OneOf("active", "deleted")java.lang.StringgetRunId()Unique identifier for the run.com.google.protobuf.ByteStringgetRunIdBytes()Unique identifier for the run.java.lang.StringgetRunUuid()[Deprecated, use run_id instead] Unique identifier for the run.com.google.protobuf.ByteStringgetRunUuidBytes()[Deprecated, use run_id instead] Unique identifier for the run.longgetStartTime()Unix timestamp of when the run started in milliseconds.Service.RunStatusgetStatus()Current status of the run.java.lang.StringgetUserId()User who initiated the run.com.google.protobuf.ByteStringgetUserIdBytes()User who initiated the run.booleanhasArtifactUri()URI of the directory where artifacts should be uploaded.booleanhasEndTime()Unix timestamp of when the run ended in milliseconds.booleanhasExperimentId()The experiment ID.booleanhasLifecycleStage()Current life cycle stage of the experiment : OneOf("active", "deleted")booleanhasRunId()Unique identifier for the run.booleanhasRunUuid()[Deprecated, use run_id instead] Unique identifier for the run.booleanhasStartTime()Unix timestamp of when the run started in milliseconds.booleanhasStatus()Current status of the run.booleanhasUserId()User who initiated the run.Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasRunId
boolean hasRunId()Unique identifier for the run.
optional string run_id = 15; -
getRunId
java.lang.String getRunId()Unique identifier for the run.
optional string run_id = 15; -
getRunIdBytes
com.google.protobuf.ByteString getRunIdBytes()Unique identifier for the run.
optional string run_id = 15; -
hasRunUuid
boolean hasRunUuid()[Deprecated, use run_id instead] Unique identifier for the run. This field will be removed in a future MLflow version.
optional string run_uuid = 1; -
getRunUuid
java.lang.String getRunUuid()[Deprecated, use run_id instead] Unique identifier for the run. This field will be removed in a future MLflow version.
optional string run_uuid = 1; -
getRunUuidBytes
com.google.protobuf.ByteString getRunUuidBytes()[Deprecated, use run_id instead] Unique identifier for the run. This field will be removed in a future MLflow version.
optional string run_uuid = 1; -
hasExperimentId
boolean hasExperimentId()The experiment ID.
optional string experiment_id = 2; -
getExperimentId
java.lang.String getExperimentId()The experiment ID.
optional string experiment_id = 2; -
getExperimentIdBytes
com.google.protobuf.ByteString getExperimentIdBytes()The experiment ID.
optional string experiment_id = 2; -
hasUserId
boolean hasUserId()User who initiated the run. This field is deprecated as of MLflow 1.0, and will be removed in a future MLflow release. Use 'mlflow.user' tag instead.
optional string user_id = 6; -
getUserId
java.lang.String getUserId()User who initiated the run. This field is deprecated as of MLflow 1.0, and will be removed in a future MLflow release. Use 'mlflow.user' tag instead.
optional string user_id = 6; -
getUserIdBytes
com.google.protobuf.ByteString getUserIdBytes()User who initiated the run. This field is deprecated as of MLflow 1.0, and will be removed in a future MLflow release. Use 'mlflow.user' tag instead.
optional string user_id = 6; -
hasStatus
boolean hasStatus()Current status of the run.
optional .mlflow.RunStatus status = 7; -
getStatus
Service.RunStatus getStatus()Current status of the run.
optional .mlflow.RunStatus status = 7; -
hasStartTime
boolean hasStartTime()Unix timestamp of when the run started in milliseconds.
optional int64 start_time = 8; -
getStartTime
long getStartTime()Unix timestamp of when the run started in milliseconds.
optional int64 start_time = 8; -
hasEndTime
boolean hasEndTime()Unix timestamp of when the run ended in milliseconds.
optional int64 end_time = 9; -
getEndTime
long getEndTime()Unix timestamp of when the run ended in milliseconds.
optional int64 end_time = 9; -
hasArtifactUri
boolean hasArtifactUri()URI of the directory where artifacts should be uploaded. This can be a local path (starting with "/"), or a distributed file system (DFS) path, like ``s3://bucket/directory`` or ``dbfs:/my/directory``. If not set, the local ``./mlruns`` directory is chosen.
optional string artifact_uri = 13; -
getArtifactUri
java.lang.String getArtifactUri()URI of the directory where artifacts should be uploaded. This can be a local path (starting with "/"), or a distributed file system (DFS) path, like ``s3://bucket/directory`` or ``dbfs:/my/directory``. If not set, the local ``./mlruns`` directory is chosen.
optional string artifact_uri = 13; -
getArtifactUriBytes
com.google.protobuf.ByteString getArtifactUriBytes()URI of the directory where artifacts should be uploaded. This can be a local path (starting with "/"), or a distributed file system (DFS) path, like ``s3://bucket/directory`` or ``dbfs:/my/directory``. If not set, the local ``./mlruns`` directory is chosen.
optional string artifact_uri = 13; -
hasLifecycleStage
boolean hasLifecycleStage()Current life cycle stage of the experiment : OneOf("active", "deleted")optional string lifecycle_stage = 14; -
getLifecycleStage
java.lang.String getLifecycleStage()Current life cycle stage of the experiment : OneOf("active", "deleted")optional string lifecycle_stage = 14; -
getLifecycleStageBytes
com.google.protobuf.ByteString getLifecycleStageBytes()Current life cycle stage of the experiment : OneOf("active", "deleted")optional string lifecycle_stage = 14;
-