Skip to content
Snippets Groups Projects
Commit c79cdac3 authored by Ramon Nou's avatar Ramon Nou
Browse files

Removed some logging, removed GKFS_HOSTS file

parent 1c1168bf
No related branches found
No related tags found
No related merge requests found
Pipeline #4592 passed
...@@ -42,6 +42,7 @@ elif [ "$1" == "stop" ]; then ...@@ -42,6 +42,7 @@ elif [ "$1" == "stop" ]; then
fi fi
unset SLURM_CPU_BIND SLURM_CPU_BIND_LIST SLURM_CPU_BIND_TYPE SLURM_CPU_BIND_VERBOSE unset SLURM_CPU_BIND SLURM_CPU_BIND_LIST SLURM_CPU_BIND_TYPE SLURM_CPU_BIND_VERBOSE
srun -N $num_nodes -n $num_nodes --overlap --oversubscribe --cpus-per-task=1 --mem-per-cpu=1 --export=ALL /usr/bin/bash -c "pkill -9 gkfs_daemon" srun -N $num_nodes -n $num_nodes --overlap --oversubscribe --cpus-per-task=1 --mem-per-cpu=1 --export=ALL /usr/bin/bash -c "pkill -9 gkfs_daemon"
rm $LIBGKFS_HOSTS_FILE
elif [ "$1" == "expand" ]; then elif [ "$1" == "expand" ]; then
echo "Expand command" echo "Expand command"
elif [ "$1" == "shrink" ]; then elif [ "$1" == "shrink" ]; then
......
...@@ -971,12 +971,10 @@ rpc_server::scheduler_update() { ...@@ -971,12 +971,10 @@ rpc_server::scheduler_update() {
switch(status.state()) { switch(status.state()) {
case cargo::transfer_state::completed: case cargo::transfer_state::completed:
LOGGER_INFO("Completed");
v_ids.push_back(tr_unit.first); v_ids.push_back(tr_unit.first);
continue; continue;
break; break;
case cargo::transfer_state::failed: case cargo::transfer_state::failed:
LOGGER_INFO("Failed");
v_ids.push_back(tr_unit.first); v_ids.push_back(tr_unit.first);
continue; continue;
break; break;
...@@ -999,7 +997,7 @@ rpc_server::scheduler_update() { ...@@ -999,7 +997,7 @@ rpc_server::scheduler_update() {
if(bw == -1) { if(bw == -1) {
continue; continue;
} }
LOGGER_INFO("QoS Measured BW : {} vs QOS : {} ", bw, qos);
if(bw + bw * threshold > qos) { if(bw + bw * threshold > qos) {
// Send decrease / slow signal to cargo // Send decrease / slow signal to cargo
tr_info->transfer().bw_control(+1); tr_info->transfer().bw_control(+1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment