Replies: 1 comment
-
已在#1308 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
设置8085为ray端口, 8086为address端口, 8087为listen_add端口, 都是未使用的端口
通过docker部署secretflow时,ray集群已经搭建成功了,调用sf.init() 两个容器中都报如下错误(使用代码贴在后面):
2024-05-28 08:31:12.926 INFO barriers.py:520 [bob] -- [Anonymous_job] Try ping ['alice'] at 193 attemp, up to 3600 attemps.
2024-05-28 08:31:15.929 INFO barriers.py:520 [bob] -- [Anonymous_job] Try ping ['alice'] at 194 attemp, up to 3600 attemps.
(SenderProxyActor pid=276) 2024-05-28 08:31:15.852 ERROR barriers.py:171 [bob] -- [Anonymous_job] Failed to send data to seq_id ping of alice from ping, error: <AioRpcError of RPC that terminated with:
(SenderProxyActor pid=276) status = StatusCode.DEADLINE_EXCEEDED
(SenderProxyActor pid=276) details = "Deadline Exceeded"
(SenderProxyActor pid=276) debug_error_string = "UNKNOWN:Deadline Exceeded {grpc_status:4, created_time:"2024-05-28T08:31:15.851275266+00:00"}"
(SenderProxyActor pid=276) >
(SenderProxyActor pid=276) 2024-05-28 08:31:18.855 ERROR barriers.py:171 [bob] -- [Anonymous_job] Failed to send data to seq_id ping of alice from ping, error: <AioRpcError of RPC that terminated with:
(SenderProxyActor pid=276) status = StatusCode.DEADLINE_EXCEEDED
(SenderProxyActor pid=276) details = "Deadline Exceeded"
(SenderProxyActor pid=276) debug_error_string = "UNKNOWN:Deadline Exceeded {created_time:"2024-05-28T08:31:18.855214362+00:00", grpc_status:4}"
(SenderProxyActor pid=276) >
2024-05-28 08:31:18.935 INFO barriers.py:520 [bob] -- [Anonymous_job] Try ping ['alice'] at 195 attemp, up to 3600 attemps.
(SenderProxyActor pid=276) 2024-05-28 08:31:21.855 ERROR barriers.py:171 [bob] -- [Anonymous_job] Failed to send data to seq_id ping of alice from ping, error: <AioRpcError of RPC that terminated with:
(SenderProxyActor pid=276) status = StatusCode.DEADLINE_EXCEEDED
(SenderProxyActor pid=276) details = "Deadline Exceeded"
(SenderProxyActor pid=276) debug_error_string = "UNKNOWN:Deadline Exceeded {grpc_status:4, created_time:"2024-05-28T08:31:21.855192639+00:00"}"
(SenderProxyActor pid=276) >
2024-05-28 08:31:21.937 INFO barriers.py:520 [bob] -- [Anonymous_job] Try ping ['alice'] at 196 attemp, up to 3600 attemps.
2024-05-28 08:31:24.940 INFO barriers.py:520 [bob] -- [Anonymous_job] Try ping ['alice'] at 197 attemp, up to 3600 attemps.
(SenderProxyActor pid=276) 2024-05-28 08:31:24.864 ERROR barriers.py:171 [bob] -- [Anonymous_job] Failed to send data to seq_id ping of alice from ping, error: <AioRpcError of RPC that terminated with:
(SenderProxyActor pid=276) status = StatusCode.DEADLINE_EXCEEDED
(SenderProxyActor pid=276) details = "Deadline Exceeded"
(SenderProxyActor pid=276) debug_error_string = "UNKNOWN:Deadline Exceeded {grpc_status:4, created_time:"2024-05-28T08:31:24.864255521+00:00"}"
(SenderProxyActor pid=276) >
(SenderProxyActor pid=276) 2024-05-28 08:31:27.866 ERROR barriers.py:171 [bob] -- [Anonymous_job] Failed to send data to seq_id ping of alice from ping, error: <AioRpcError of RPC that terminated with:
(SenderProxyActor pid=276) status = StatusCode.DEADLINE_EXCEEDED
(SenderProxyActor pid=276) details = "Deadline Exceeded"
(SenderProxyActor pid=276) debug_error_string = "UNKNOWN:Deadline Exceeded {created_time:"2024-05-28T08:31:27.866268081+00:00", grpc_status:4}"
(SenderProxyActor pid=276) >
2024-05-28 08:31:27.943 INFO barriers.py:520 [bob] -- [Anonymous_job] Try ping ['alice'] at 198 attemp, up to 3600 attemps.
(SenderProxyActor pid=276) 2024-05-28 08:31:30.867 ERROR barriers.py:171 [bob] -- [Anonymous_job] Failed to send data to seq_id ping of alice from ping, error: <AioRpcError of RPC that terminated with:
(SenderProxyActor pid=276) status = StatusCode.DEADLINE_EXCEEDED
(SenderProxyActor pid=276) details = "Deadline Exceeded"
(SenderProxyActor pid=276) debug_error_string = "UNKNOWN:Deadline Exceeded {grpc_status:4, created_time:"2024-05-28T08:31:30.866275255+00:00"}"
(SenderProxyActor pid=276) >
2024-05-28 08:31:30.949 INFO barriers.py:520 [bob] -- [Anonymous_job] Try ping ['alice'] at 199 attemp, up to 3600 attemps.
(SenderProxyActor pid=276) 2024-05-28 08:31:33.870 ERROR barriers.py:171 [bob] -- [Anonymous_job] Failed to send data to seq_id ping of alice from ping, error: <AioRpcError of RPC that terminated with:
(SenderProxyActor pid=276) status = StatusCode.DEADLINE_EXCEEDED
(SenderProxyActor pid=276) details = "Deadline Exceeded"
(SenderProxyActor pid=276) debug_error_string = "UNKNOWN:Deadline Exceeded {created_time:"2024-05-28T08:31:33.870269282+00:00", grpc_status:4}"
(SenderProxyActor pid=276) >
2024-05-28 08:31:33.953 INFO barriers.py:520 [bob] -- [Anonymous_job] Try ping ['alice'] at 200 attemp, up to 3600 attemps.
代码:
1、环境准备
2、安装secretflow
3、构建ray环境
4、集群配置初始化
两方分别执行如下代码:
Beta Was this translation helpful? Give feedback.
All reactions