<@UNZB4NW3S> .Yes ray error when I run in flyte. t...
# flyte-support
r
@freezing-airport-6809 .Yes ray error when I run in flyte. this is a single node
f
r
I am using @task( task_config=RayJobConfig( head_node_config=HeadNodeConfig(ray_start_params={"block": "True"}), worker_node_config=[ WorkerNodeConfig( group_name="ray-group", replicas=5, min_replicas=2, max_replicas=10 ) ], runtime_env={'env_vars': {'__MODIN_AUTOIMPORT_PANDAS__': '1'},"pip": ["numpy", "modin"]}, ) )
message has been deleted
Is it still resource to be increased?? how should i add it here
h
cc @glamorous-carpet-83516 - ray worker resource configuration
g
you could update the worker’s resource by updating the
limit
and
request
in the
@task
.
Copy code
@task(task_config=RayJobConfig(...), requests=Resources(cpu="10"), limits=Resources(gpu="2"))
159 Views