Index  | Recent Threads  | Unanswered Threads  | Who's Active  | Guidelines  | Search
 

Quick Go ยป
No member browsing this thread
Thread Status: Active
Total posts in this thread: 3771
Posts: 3771   Pages: 378   [ Previous Page | 36 37 38 39 40 41 42 43 44 45 | Next Page ]
[ Jump to Last Post ]
Post new Thread
Author
Previous Thread This topic has been viewed 408516 times and has 3770 replies Next Thread
HK-Steve
Senior Cruncher
Switzerland
Joined: Jul 3, 2015
Post Count: 227
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: What's the highest iteration you have received?

same 4398
----------------------------------------

[Jul 10, 2020 6:34:41 AM]   Link   Report threatening or abusive post: please login first  Go to top 
daka
Advanced Cruncher
Sweden
Joined: Apr 4, 2017
Post Count: 92
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: What's the highest iteration you have received?

4401
----------------------------------------
2 x i5-5300U @ 2.7GHz (2 x 2c4t, 40W power usage total)
46 x i5-5200U @ 2.5GHz (46 x 2c4t, 920W power usage total)
Not running currently:
96 x i5-7200U @ 3.1GHz (96 x 2c4t, 2400W power usage total)

[Jul 10, 2020 6:55:55 AM]   Link   Report threatening or abusive post: please login first  Go to top 
HK-Steve
Senior Cruncher
Switzerland
Joined: Jul 3, 2015
Post Count: 227
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: What's the highest iteration you have received?

4401
----------------------------------------

[Jul 10, 2020 6:59:59 AM]   Link   Report threatening or abusive post: please login first  Go to top 
daka
Advanced Cruncher
Sweden
Joined: Apr 4, 2017
Post Count: 92
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: What's the highest iteration you have received?

4405
----------------------------------------
2 x i5-5300U @ 2.7GHz (2 x 2c4t, 40W power usage total)
46 x i5-5200U @ 2.5GHz (46 x 2c4t, 920W power usage total)
Not running currently:
96 x i5-7200U @ 3.1GHz (96 x 2c4t, 2400W power usage total)

[Jul 10, 2020 7:07:50 AM]   Link   Report threatening or abusive post: please login first  Go to top 
Mike.Gibson
Ace Cruncher
England
Joined: Aug 23, 2007
Post Count: 12435
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: What's the highest iteration you have received?

4424
[Jul 10, 2020 8:37:19 AM]   Link   Report threatening or abusive post: please login first  Go to top 
BladeD
Ace Cruncher
USA
Joined: Nov 17, 2004
Post Count: 28976
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: What's the highest iteration you have received?

4086
4161
4201
4232
4306
4372
4388

4426
----------------------------------------
----------------------------------------
[Edit 1 times, last edit by BladeD at Jul 10, 2020 2:54:52 PM]
[Jul 10, 2020 10:04:24 AM]   Link   Report threatening or abusive post: please login first  Go to top 
daka
Advanced Cruncher
Sweden
Joined: Apr 4, 2017
Post Count: 92
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: What's the highest iteration you have received?

4426

Lowest in my queue is 3552, so almost a range of 1000 batches active.

Highest done:           0004397
Highest running: 0004398
Highest in queue: 0004426

Lowest done: 0000002
Lowest running: 0003552
Lowest in queue: 0003552

Tasks running: 572
Tasks ready to report: 95
Tasks in queue: 1621
Tasks total: 2288

----------------------------------------
2 x i5-5300U @ 2.7GHz (2 x 2c4t, 40W power usage total)
46 x i5-5200U @ 2.5GHz (46 x 2c4t, 920W power usage total)
Not running currently:
96 x i5-7200U @ 3.1GHz (96 x 2c4t, 2400W power usage total)

[Jul 10, 2020 10:27:46 AM]   Link   Report threatening or abusive post: please login first  Go to top 
HK-Steve
Senior Cruncher
Switzerland
Joined: Jul 3, 2015
Post Count: 227
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: What's the highest iteration you have received?

4436
----------------------------------------

[Jul 10, 2020 1:08:43 PM]   Link   Report threatening or abusive post: please login first  Go to top 
HK-Steve
Senior Cruncher
Switzerland
Joined: Jul 3, 2015
Post Count: 227
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: What's the highest iteration you have received?

daka how did you find the lowest task done?
----------------------------------------

[Jul 10, 2020 1:10:59 PM]   Link   Report threatening or abusive post: please login first  Go to top 
daka
Advanced Cruncher
Sweden
Joined: Apr 4, 2017
Post Count: 92
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: What's the highest iteration you have received?

daka how did you find the lowest task done?

I have a (horrible) script that checks the job log, the task states and the client state files.
Since all my clients are PXE-booted with NFS root filesystem I can just run it on the server hosting the NFS roots to get statistics for all clients.

The (horrible) script:
#!/bin/sh
BASEDIR=/srv/nfs/*/var/lib/boinc-client

echo -n "Highest done:\t\t"
grep -a OPN1 $BASEDIR/job_log_www.worldcommunitygrid.org.txt | grep -v "BETA" | cut -f9 -d" " | cut -f2 -d"_" | sort | tail -1
echo -n "Highest running:\t"
grep -a result_name $BASEDIR/slots/*/boinc_task_state.xml | grep OPN1 | grep -v "BETA" | cut -f2 -d">" | cut -f2 -d"_" | sort | tail -1
echo -n "Highest in queue:\t"
grep -a wu_name $BASEDIR/client_state.xml | grep OPN1 | grep -v 'BETA' | cut -f2 -d">" | cut -f2 -d"_" | sort | tail -1

echo -n "\nLowest done:\t\t"
grep -a OPN1 $BASEDIR/job_log_www.worldcommunitygrid.org.txt | grep -v "BETA" | cut -f9 -d" " | cut -f2 -d"_" | sort | head -1
echo -n "Lowest running:\t\t"
grep -a result_name $BASEDIR/slots/*/boinc_task_state.xml | grep OPN1 | grep -v "BETA" | cut -f2 -d">" | cut -f2 -d"_" | sort | head -1
echo -n "Lowest in queue:\t"
grep -a wu_name $BASEDIR/client_state.xml | grep OPN1 | grep -v 'BETA' | cut -f2 -d">" | cut -f2 -d"_" | sort | head -1

RUNNING=$(grep -a result_name $BASEDIR/slots/*/boinc_task_state.xml | wc -l)
READY=$(grep -a ready_to_report $BASEDIR/client_state.xml | wc -l)
TOTAL=$(grep -a wu_name $BASEDIR/client_state.xml | wc -l)
QUEUE=$(($TOTAL - $RUNNING - $READY))
echo "\nTasks running:\t\t$RUNNING"
echo "Tasks ready to report:\t$READY"
echo "Tasks in queue:\t\t$QUEUE"
echo "Tasks total:\t\t$TOTAL"


It gives output like:
Highest done:           0004398
Highest running: 0004416
Highest in queue: 0004436

Lowest done: 0000002
Lowest running: 0003602
Lowest in queue: 0003595

Tasks running: 571
Tasks ready to report: 137
Tasks in queue: 1580
Tasks total: 2288

The lowest done part basically checks the job_log_www.worldcommunitygrid.org.txt-file for any lines with OPN1 in it, but not BETA, cuts to the batch part of the work unit name, sorts it, and outputs the first entry.
----------------------------------------
2 x i5-5300U @ 2.7GHz (2 x 2c4t, 40W power usage total)
46 x i5-5200U @ 2.5GHz (46 x 2c4t, 920W power usage total)
Not running currently:
96 x i5-7200U @ 3.1GHz (96 x 2c4t, 2400W power usage total)

----------------------------------------
[Edit 1 times, last edit by daka at Jul 10, 2020 2:36:02 PM]
[Jul 10, 2020 2:28:14 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Posts: 3771   Pages: 378   [ Previous Page | 36 37 38 39 40 41 42 43 44 45 | Next Page ]
[ Jump to Last Post ]
Post new Thread