我可以访问节点集群,而我的理解是,一旦我在具有相同Redis地址的每个节点上开始ray,头节点就可以访问所有节点的所有资源。
主脚本:
export LC_ALL=en_US.utf-8
export LANG=en_US.utf-8 # required for using python 3 with click
source activate rllab3
redis_address="$(hostname --ip-address)"
echo $redis_address
redis_address="$redis_address:59465"
~/.conda/envs/rllab3/bin/ray start --head --redis-port=59465
for host in $(srun hostname | grep -v $(hostname)); do
ssh $host setup_node.sh $redis_address
done
python test_multi_node.py $redis_address
setup_node.sh
是
export LC_ALL=en_US.utf-8
export LANG=en_US.utf-8
source activate rllab3
echo "redis address is $1"
~/.conda/envs/rllab3/bin/ray start --redis-address=$1
和
test_multi_node.py
是
import ray
import time
import argparse
parser = argparse.ArgumentParser(description = "ray multinode test")
parser.add_argument("redis_address", type=str, help="ip:port")
args = parser.parse_args()
print("in python script redis addres is:", args.redis_address)
ray.init(redis_address=args.redis_address)
print("resources:", ray.services.check_and_update_resources(None, None, None))
@ray.remote
def f():
time.sleep(0.01)
return ray.services.get_node_ip_address()
# Get a list of the IP addresses of the nodes that have joined the cluster.
print(set(ray.get([f.remote() for _ in range(10000)])))
Ray似乎可以在所有节点上成功启动,并且python脚本会打印出与我拥有的节点一样多的IP地址(它们是正确的)。但是,在打印资源时,它只有一个节点的资源。
如何使ray能够访问所有节点的所有资源?我必须有一个基本的误解,因为我认为在其他节点上设置ray的目的是使它可以访问其所有资源。
根据to this射线应该自动检测新节点上的资源,所以我不知道这里发生了什么。
答案 0 :(得分:1)
方法ray.services.check_and_update_resources
是内部方法,不打算公开。您可以使用ray.global_state.cluster_resources()
和ray.global_state.client_table()
来检查群集资源。
答案 1 :(得分:0)
在较新版本的Ray(此处测试为0.8.2+)上,我们可以尝试:
检查群集状态 https://ray.readthedocs.io/en/latest/package-ref.html#inspect-the-cluster-state单个计算机系统的示例输出:
print(ray.nodes())
"""[{'NodeID': <ID>, 'Alive': True, 'NodeManagerAddress': <IP>,
'NodeManagerHostname': <HOSTNAME>, 'NodeManagerPort': <PORT>,
'ObjectManagerPort': 32799, 'ObjectStoreSocketName':
'/tmp/ray/session_2020-03-25_00-42-55_127146_1246/sockets/plasma_store',
'RayletSocketName':
'/tmp/ray/session_2020-03-25_00-42-55_127146_1246/sockets/raylet',
'Resources': {'node:<IP>': 1.0, 'GPU': 1.0, 'CPU': 8.0, 'memory':
160.0, 'object_store_memory': 55.0}, 'alive': True}]"""
资源信息 https://ray.readthedocs.io/en/latest/advanced.html 如其他解决方案中所述,诸如cluster_resources或available_resources之类的项可以专门获取资源信息:
print(ray.cluster_resources())
# {'node:<IP>': 1.0, 'GPU': 1.0, 'CPU': 8.0, 'memory': 160.0, 'object_store_memory': 55.0}