205 rivejä
7.0 KiB
Python
205 rivejä
7.0 KiB
Python
import subprocess
|
|
import time
|
|
import os
|
|
|
|
def get_net_iface(ip_prefix="192.168.100"):
|
|
"""
|
|
Auto-detects the interface that serves the cluster network.
|
|
Assumes standard 192.168.100.x setup from start_vllm_cluster.py
|
|
"""
|
|
try:
|
|
# ip -o addr show | grep 192.168.100
|
|
cmd = f"ip -o addr show | grep {ip_prefix}"
|
|
res = subprocess.check_output(cmd, shell=True, text=True).strip()
|
|
# Output format: 2: eth0 inet 192.168.100.1/24 ...
|
|
parts = res.split()
|
|
if len(parts) >= 2:
|
|
return parts[1] # Interface name
|
|
except:
|
|
pass
|
|
return "eth0" # Fallback
|
|
|
|
def get_local_ip(iface):
|
|
try:
|
|
cmd = f"ip -o -4 addr show {iface} | awk '{{print $4}}' | cut -d/ -f1"
|
|
return subprocess.check_output(cmd, shell=True, text=True).strip()
|
|
except:
|
|
return "127.0.0.1"
|
|
|
|
def get_subnet_from_ip(ip):
|
|
"""Accurately gets the /24 subnet string for the given IP."""
|
|
parts = ip.split('.')
|
|
return f"{parts[0]}.{parts[1]}.{parts[2]}.0/24"
|
|
|
|
def stop_cluster(nodes=None):
|
|
"""
|
|
Stops Ray on the given nodes (list of IPs).
|
|
If nodes is None, does nothing (caller should identify nodes first if needed,
|
|
but typically for a clean start we might just rely on 'ray stop' on each setup).
|
|
Actually, to be safe, we can try to stop local ray.
|
|
"""
|
|
subprocess.run(["ray", "stop", "--force"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
|
|
|
def setup_worker_node(worker_ip, head_ip):
|
|
subnet = get_subnet_from_ip(worker_ip)
|
|
|
|
# Script to run on worker
|
|
script = f"""
|
|
source /etc/profile
|
|
# Silece the kill command
|
|
ray stop --force > /dev/null 2>&1 || true
|
|
export RAY_DISABLE_METRICS=1
|
|
export RAY_EXPERIMENTAL_NOSET_ROCR_VISIBLE_DEVICES=1
|
|
export RAY_memory_monitor_refresh_ms=0
|
|
export VLLM_HOST_IP={worker_ip}
|
|
export RDMA_IFACE=$(ip -o addr show to {subnet} | awk '{{print $2}}' | head -n1)
|
|
export NCCL_SOCKET_IFNAME=$RDMA_IFACE
|
|
export GLOO_SOCKET_IFNAME=$RDMA_IFACE
|
|
# Stability for RDMA
|
|
export NCCL_IB_TIMEOUT=23
|
|
export NCCL_IB_RETRY_CNT=7
|
|
echo "Starting Ray Worker on {worker_ip} connecting to {head_ip}..."
|
|
ray start --address='{head_ip}:6379' --num-gpus=1 --num-cpus=8 --disable-usage-stats
|
|
"""
|
|
|
|
print(f"Setting up Worker Node ({worker_ip})...")
|
|
|
|
# Use bash -s to read script from stdin
|
|
# Command: ssh user@host "toolbox run -c vllm -- bash -s"
|
|
ssh_cmd = [
|
|
"ssh", "-o", "StrictHostKeyChecking=no", worker_ip,
|
|
"toolbox run -c vllm -- bash -s"
|
|
]
|
|
|
|
try:
|
|
subprocess.run(ssh_cmd, input=script.encode(), check=True)
|
|
return True
|
|
except subprocess.CalledProcessError as e:
|
|
print(f"Failed to setup worker: {e}")
|
|
return False
|
|
|
|
def setup_head_node(head_ip):
|
|
subnet = get_subnet_from_ip(head_ip)
|
|
|
|
print(f"Setting up Head Node ({head_ip})...")
|
|
|
|
script = f"""
|
|
# Silence the kill command
|
|
ray stop --force > /dev/null 2>&1 || true
|
|
export RAY_DISABLE_METRICS=1
|
|
export RAY_EXPERIMENTAL_NOSET_ROCR_VISIBLE_DEVICES=1
|
|
export RAY_memory_monitor_refresh_ms=0
|
|
export VLLM_HOST_IP={head_ip}
|
|
export RDMA_IFACE=$(ip -o addr show to {subnet} | awk '{{print $2}}' | head -n1)
|
|
export NCCL_SOCKET_IFNAME=$RDMA_IFACE
|
|
export GLOO_SOCKET_IFNAME=$RDMA_IFACE
|
|
# Stability for RDMA
|
|
export NCCL_IB_TIMEOUT=23
|
|
export NCCL_IB_RETRY_CNT=7
|
|
echo "Starting Ray Head on {head_ip}..."
|
|
ray start --head --port=6379 --node-ip-address={head_ip} --num-gpus=1 --num-cpus=8 --disable-usage-stats
|
|
"""
|
|
|
|
try:
|
|
# Run locally
|
|
subprocess.run(["bash", "-s"], input=script.encode(), check=True)
|
|
return True
|
|
except subprocess.CalledProcessError as e:
|
|
print(f"Failed to setup head: {e}")
|
|
return False
|
|
|
|
def get_ray_nodes():
|
|
"""Returns a list of active Ray node IPs."""
|
|
try:
|
|
res = subprocess.run(["ray", "status"], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|
|
if res.returncode != 0:
|
|
return []
|
|
|
|
nodes = []
|
|
in_active_section = False
|
|
import re
|
|
for line in res.stdout.splitlines():
|
|
if "Active:" in line:
|
|
in_active_section = True
|
|
continue
|
|
if "Pending:" in line or "Recent failures:" in line:
|
|
in_active_section = False
|
|
|
|
if in_active_section:
|
|
match = re.search(r"node_(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})", line)
|
|
if match:
|
|
nodes.append(match.group(1))
|
|
|
|
return nodes
|
|
except:
|
|
return []
|
|
|
|
def check_ray_status():
|
|
"""Returns (active_nodes, total_gpus) parsing 'ray status' output roughly."""
|
|
nodes = get_ray_nodes()
|
|
# Assume 1 GPU per node for now as per strix halo setup
|
|
return len(nodes), len(nodes)
|
|
|
|
def wait_for_cluster(expected_nodes=2, timeout=60):
|
|
print(f"Waiting for Ray cluster to initialize (expecting {expected_nodes} nodes)...")
|
|
for i in range(timeout):
|
|
nodes, gpus = check_ray_status()
|
|
if i % 5 == 0:
|
|
print(f"Check {i}/{timeout}: Active Nodes={nodes}")
|
|
if nodes >= expected_nodes:
|
|
print("Cluster is Ready!")
|
|
time.sleep(2)
|
|
return True
|
|
time.sleep(1)
|
|
|
|
print("Timeout waiting for cluster.")
|
|
return False
|
|
|
|
def nuke_vllm_cache_on_node(ip, is_local=False):
|
|
"""Clears vLLM cache on a specific node."""
|
|
cmd_str = f"Locally" if is_local else f"on {ip}"
|
|
print(f"Clearing vLLM cache {cmd_str}...", end="", flush=True)
|
|
|
|
try:
|
|
if is_local:
|
|
from pathlib import Path
|
|
cache = Path.home() / ".cache" / "vllm"
|
|
if cache.exists():
|
|
subprocess.run(["rm", "-rf", str(cache)], check=True)
|
|
cache.mkdir(parents=True, exist_ok=True)
|
|
else:
|
|
# Remote SSH
|
|
ssh_cmd = [
|
|
"ssh", "-o", "StrictHostKeyChecking=no", ip,
|
|
"rm -rf ~/.cache/vllm && mkdir -p ~/.cache/vllm"
|
|
]
|
|
subprocess.run(ssh_cmd, check=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
|
|
|
print(" Done.")
|
|
except Exception as e:
|
|
print(f" Failed ({e}).")
|
|
|
|
def nuke_vllm_cache_cluster():
|
|
"""Clears vLLM cache on ALL cluster nodes."""
|
|
nodes = get_ray_nodes()
|
|
# Assuming we are running on Head, which is one of the nodes.
|
|
# We need to detect which IP is "local"
|
|
# Or just run 'ray stop' first?
|
|
# The requirement is often to clear cache BEFORE start or between runs.
|
|
# If ray is down, 'get_ray_nodes' returns empty.
|
|
# So this is best used when cluster is UP.
|
|
|
|
rdma_iface = get_net_iface()
|
|
local_ip = get_local_ip(rdma_iface)
|
|
|
|
if not nodes:
|
|
# Fallback to just local?
|
|
nuke_vllm_cache_on_node(local_ip, is_local=True)
|
|
return
|
|
|
|
for node_ip in nodes:
|
|
is_local = (node_ip == local_ip) or (node_ip == "127.0.0.1")
|
|
nuke_vllm_cache_on_node(node_ip, is_local)
|
|
|
|
time.sleep(2)
|