All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ray.api.runtimecontext.RuntimeContext Maven / Gradle / Ivy

There is a newer version: 2.36.0
Show newest version
package io.ray.api.runtimecontext;

import io.ray.api.BaseActorHandle;
import io.ray.api.id.ActorId;
import io.ray.api.id.JobId;
import io.ray.api.id.TaskId;
import java.util.List;

/** A class used for getting information of Ray runtime. */
public interface RuntimeContext {

  /** Get the current Job ID. */
  JobId getCurrentJobId();

  /** Get current task ID. */
  TaskId getCurrentTaskId();

  /**
   * Get the current actor ID.
   *
   * 

Note, this can only be called in actors. */ ActorId getCurrentActorId(); /** Returns true if the current actor was restarted, otherwise false. */ boolean wasCurrentActorRestarted(); /** * Returns true if Ray is running in single-process mode, false if Ray is running in cluster mode. */ boolean isSingleProcess(); /** Get all node information in Ray cluster. */ List getAllNodeInfo(); /** * Get the handle to the current actor itself. Note that this method must be invoked in an actor. */ T getCurrentActorHandle(); /** Get available GPU(deviceIds) for this worker. */ List getGpuIds(); /** Get the namespace of this job. */ String getNamespace(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy