This little server keeps chanting "I think I can I think I can I think I can..." I'm impressed to see it has made a comeback for the most part!
This little server keeps chanting "I think I can I think I can I think I can..." I'm impressed to see it has made a comeback for the most part!
user credits % of total
----------------------------------------------
Mumps [MM] 530,326 9.9 %
phoenicis 391,143 7.3 %
glennpat 317,620 5.9 %
xii5ku 311,832 5.8 %
crashtech 230,848 4.3 %
HK-Steve 184,315 3.4 %
Woodles 163,917 3.1 %
CoolAtchOk 159,927 3.0 %
Bryan 152,675 2.8 %
boceli 151,536 2.8 %
----------------------------------------------
total of top 100 users 5,361,799 100.0 %
user credits % of total
----------------------------------------------
Mumps [MM] 528,748 13.2 %
xii5ku 291,181 7.3 %
glennpat 236,913 5.9 %
phoenicis 199,956 5.0 %
CoolAtchOk 175,219 4.4 %
cineon_lut [BlackOps] 139,418 3.5 %
Woodles 133,261 3.3 %
crashtech 116,985 2.9 %
HK-Steve 115,269 2.9 %
alnitak2019 107,756 2.7 %
----------------------------------------------
total of top 100 users 4,003,399 100.0 %
I will from now on disable networking 2 minutes before the hour, and re-enable it 10 minutes after the hour, like so:I have an idea.... if we happen to be near our computers, we can all disable networking a few minutes before the top of each hour, then re-enable a few minutes later? That might help get a stats update through?
#!/bin/bash
hosts=(
"hansel"
"gretel"
"hag"
"hag:31421"
"hag:31422"
"hag:31423"
)
password="my_secret_gui_control_password"
while true
do
printf " suspending networking at "
date
for host in ${hosts[*]}
do
boinccmd --host ${host} --passwd ${password} --set_network_mode never
done
sleep 12m
printf " enabling networking at "
date
for host in ${hosts[*]}
do
boinccmd --host ${host} --passwd ${password} --set_network_mode auto
done
sleep 48m
done
Hmm, if I use really good field glasses, I may be able to discern Mumps's elbow.And congrats for being able to rub elbows with the mighty Mumps, Stefan!
I have power meters in front of several hosts (GPU-less Xeons, as well as hosts with now idle GPUs). This project definitely isn't a power virus like, say, PrimeGrid, but power draw isn't remarkably low either. OTOH, none of my hosts go ballistic at projects like PrimeGrid, like many desktop PCs may do without power limits enforced by their BIOS. Maybe that's why the difference I am seeing with ODLK isn't overwhelmingly big.Anyone else setup to confirm low power draw for this project?
My laptop is just purring as well, even though ambient temperature is about 32°C in the afternoon.Before this is all over, I just looked at my UPS LCD Display. With 144 threads on ODLK across 5 computers, the load is only about 510 watts. CPU temps are pretty low as well.
Anyone else setup to confirm low power draw for this project?
#!/bin/bash
hosts=(
"hansel"
"gretel"
"hag"
"hag:31421"
"hag:31422"
"hag:31423"
)
password="my_secret_gui_control_password"
downloading=0
downloaded=0
uploading=0
uploaded=0
total_downloading=0
total_downloaded=0
total_uploading=0
total_uploaded=0
printf " dl'ing/ dl'ed/ uploading/ uploaded\n-----------------------------------\n"
for host in ${hosts[*]}
do
tasks=$(boinccmd --host ${host} --passwd ${password} --get_tasks)
downloading=$(grep "state: downloading" <<< "${tasks}" | wc -l)
downloaded=$(grep "state: downloaded" <<< "${tasks}" | wc -l)
uploading=$(grep "state: uploading" <<< "${tasks}" | wc -l)
uploaded=$(grep "state: uploaded" <<< "${tasks}" | wc -l)
printf "%12s %4d %4d %4d %4d\n" "${host}" $downloading $downloaded $uploading $uploaded
((total_downloading += $downloading))
((total_downloaded += $downloaded))
((total_uploading += $uploading))
((total_uploaded += $uploaded))
done
printf -- "-----------------------------------\n %5d %5d %5d %5d\n\n" \
$total_downloading $total_downloaded $total_uploading $total_uploaded
printf "= %d to do, %d done, %d total on " \
$(($total_downloading + $total_downloaded)) $(($total_uploading + $total_uploaded)) \
$(($total_downloading + $total_downloaded + $total_uploading + $total_uploaded))
date
Oh wait... Updates were still proceding after I last checked. (This most certainly means that the stats of different teams were pulled at very different times.)Incomplete updates!
It's sad that almost 2/3 of my work isn't counted for the sprint.
Sure? Everything which was validated before yesterday 21:00 UTC was pulled into the sprint stats by the FB site. Free-dc pulls stats on a different schedule.It's sad that almost 2/3 of my work isn't counted for the sprint.
I will not participate in another sprint until the format is fixed.
Right now, it's like when a caravan of racing teams pulls into city and, without warning, races through the streets.
I based my assumption on the difference between my own free-dc stats and my personal odlk result. Hopefully I was wrong.Sure? Everything which was validated before yesterday 21:00 UTC was pulled into the sprint stats by the FB site. Free-dc pulls stats on a different schedule.
I will not participate in another sprint until the format is fixed.
Right now, it's like when a caravan of racing teams pulls into city and, without warning, races through the streets.
It's sad that almost 2/3 of my work isn't counted for the sprint.
Though I am merely the 3rd millionaire, after @Rudy Toody (June 21) and @emoga (January 2).