https://flyte.org logo
#ray-integration
Title
# ray-integration
k

karthikraj

11/17/2022, 5:30 AM
Hi Team, We are trying to run the flyte workflow for ML training using xgboost classifier but we are getting below error. Could you please help.
Copy code
Placement group creation timed out. Make sure your cluster either has enough resources or use an autoscaling cluster. Current resources available: {'CPU': 1.0, 'object_store_memory': 217143276.0, 'memory': 434412750.0, 'node:10.69.53.118': 0.98}, resources requested by the placement group: [{'CPU': 1.0}, {'CPU': 1.0}]
s

Samhita Alla

11/17/2022, 5:55 AM
Have you checked
ray status
?
k

Kevin Su

11/18/2022, 12:43 AM
Have you tried to increase task resource?
Copy code
@task(task_config=ray_cfg, request=Resources(mem="2000Mi", cpu="1"))
2 Views