You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# FIXME: check why ray client is not installed from pixi, setup is correct according to https://pixi.sh/latest/reference/project_configuration/#version-specification
30
44
pixi run \
31
-
--environment server \
45
+
--environment pymc \
32
46
--manifest-path pyproject.toml \
33
47
pip3 install "ray[default,client]==2.37.0"
34
48
35
49
36
50
# start separate ray for pymc-server
37
51
# TODO: Launch the head-only command only on the first node in multinode setup
38
52
pixi run \
39
-
--environment server\
53
+
--environment pymc\
40
54
--manifest-path pyproject.toml \
41
55
ray start \
42
56
--head \
@@ -45,6 +59,9 @@ setup: |
45
59
--dashboard-host=0.0.0.0 \
46
60
--dashboard-port=8263 \
47
61
--disable-usage-stats
48
-
62
+
63
+
# this will block
64
+
nohup minio server /data --address 0.0.0.0:50002 > minio.log 2>&1 &
0 commit comments