File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 44
44
if [ -z " ${RAY_HOME} " ]; then
45
45
RAY_HOME=$( python3 -c " import os, ray; print(os.path.dirname(ray.__file__))" )
46
46
fi
47
+ # set RAY_DRIVER_NODE_IP
48
+ if [ -z " ${RAY_DRIVER_NODE_IP} " ]; then
49
+ RAY_DRIVER_NODE_IP=$( python3 -c " import ray; print(ray.util.get_node_ip_address())" )
50
+ fi
47
51
48
52
49
53
# set log4j versions for spark driver and executors inside ray worker
@@ -115,6 +119,10 @@ added_confs+=("-D$SPARK_LOG4J_CONFIG_FILE_NAME_KEY=$SPARK_LOG4J_CONFIG_FILE_NAME
115
119
added_confs+=(" -Dspark.javaagent=$raydp_agent_jar " )
116
120
added_args+=(" --conf" )
117
121
added_args+=(" spark.ray.log4j.config.file.name=$RAY_LOG4J_CONFIG_FILE_NAME " )
122
+ added_args+=(" --conf" )
123
+ added_args+=(" spark.driver.host=$RAY_DRIVER_NODE_IP " )
124
+ added_args+=(" --conf" )
125
+ added_args+=(" spark.driver.bindAddress=$RAY_DRIVER_NODE_IP " )
118
126
119
127
# Find the java binary
120
128
if [ -n " ${JAVA_HOME} " ]; then
You can’t perform that action at this time.
0 commit comments