Skip to content

Commit

Permalink
Ouput logs all logs to console
Browse files Browse the repository at this point in the history
  • Loading branch information
gibchikafa committed Dec 11, 2024
1 parent 2718123 commit ff0da87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/start-coordinator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ else
GC_ARGS=$GC_LOG_ARGS_NEW
fi

$RUNNER $ARGS $JVM_ARGS $GC_ARGS -cp $CLASSPATH $MAIN_CLASS --conf "$COORDINATOR_CONF_FILE" $@ &
$RUNNER $ARGS $JVM_ARGS $GC_ARGS -cp $CLASSPATH $MAIN_CLASS --conf "$COORDINATOR_CONF_FILE" $@ 2>&1 &

get_pid_file_name coordinator
echo $! >${RSS_PID_DIR}/${pid_file}
2 changes: 1 addition & 1 deletion bin/start-dashboard.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ else
exit 1
fi

$RUNNER $ARGS $JVM_ARGS $JAVA11_EXTRA_ARGS -cp $CLASSPATH $MAIN_CLASS --conf "$DASHBOARD_CONF_FILE" $@ &
$RUNNER $ARGS $JVM_ARGS $JAVA11_EXTRA_ARGS -cp $CLASSPATH $MAIN_CLASS --conf "$DASHBOARD_CONF_FILE" $@ 2>&1 &

get_pid_file_name dashboard
echo $! >${RSS_PID_DIR}/${pid_file}
2 changes: 1 addition & 1 deletion bin/start-shuffle-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ else
GC_ARGS=$GC_LOG_ARGS_NEW
fi

$RUNNER $ARGS $JVM_ARGS $GC_ARGS $JAVA_LIB_PATH -cp $CLASSPATH $MAIN_CLASS --conf "$SHUFFLE_SERVER_CONF_FILE" $@ &
$RUNNER $ARGS $JVM_ARGS $GC_ARGS $JAVA_LIB_PATH -cp $CLASSPATH $MAIN_CLASS --conf "$SHUFFLE_SERVER_CONF_FILE" $@ 2>&1 &

get_pid_file_name shuffle-server
echo $! >${RSS_PID_DIR}/${pid_file}

0 comments on commit ff0da87

Please sign in to comment.