ray.runtime_context.获取运行时上下文#
- ray.runtime_context.get_runtime_context() RuntimeContext [源代码]#
获取当前驱动程序/工作者的运行时上下文。
获得的运行时上下文可以用来获取当前任务和执行者的元数据。
示例
import ray # Get the job id. ray.get_runtime_context().get_job_id() # Get the actor id. ray.get_runtime_context().get_actor_id() # Get the task id. ray.get_runtime_context().get_task_id()