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: 3
[ Jump to Last Post ]
Post new Thread
Author
Previous Thread This topic has been viewed 519 times and has 2 replies Next Thread
adriverhoef
Master Cruncher
The Netherlands
Joined: Apr 3, 2009
Post Count: 2089
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Valid MCM1-task ends up with 0 points

Just noticed a task that seems to have ended successfully and declared Valid, but it was rewarded zero points.

Last night at 00:00 UTC this was its entry:
$ grep -C10 468649052 /var/tmp/wcgresults.2024-03-16T00\:59\:02.2891483.0
<Result>
<AppName>mcm1</AppName>
<ClaimedCredit>73.70043039731178</ClaimedCredit>
<CpuTime>0.9338063888888889</CpuTime>
<ElapsedTime>0.9400577877777778</ElapsedTime>
<ExitStatus>0</ExitStatus>
<GrantedCredit>0.0</GrantedCredit>
<DeviceId>8686354</DeviceId>
<DeviceName>a3-xs4all-nl</DeviceName>
<ModTime>1706928980</ModTime>
<WorkunitId>468649052</WorkunitId>
<ResultId>820372658</ResultId>
<Name>MCM1_0212334_2529_0</Name>
<Outcome>1</Outcome>
<ReceivedTime>2024-02-03T02:56:21</ReceivedTime>
<ReportDeadline>2024-02-07T03:05:53</ReportDeadline>
<SentTime>2024-02-01T03:05:53</SentTime>
<ServerState>5</ServerState>
<ValidateState>0</ValidateState>
<FileDeleteState>0</FileDeleteState>
</Result>

Note that its ValidateState was 0:
$ wcgresults -iV
Validate-
State
Meaning
0 Pending validation
1 Valid
2 Invalid
4 Pending verification
5 Too late

So it was still awaiting to be validated. One hour later it was validated, its ValidateState had changed to 1 and we know what that means (see above):
$ grep -C10 468649052 /var/tmp/wcgresults.2024-03-16T01\:59\:01.2893845.0 
<Result>
<AppName>mcm1</AppName>
<ClaimedCredit>73.70043039731178</ClaimedCredit>
<CpuTime>0.9338063888888889</CpuTime>
<ElapsedTime>0.9400577877777778</ElapsedTime>
<ExitStatus>0</ExitStatus>
<GrantedCredit>0.0</GrantedCredit>
<DeviceId>8686354</DeviceId>
<DeviceName>a3-xs4all-nl</DeviceName>
<ModTime>1710549042</ModTime>
<WorkunitId>468649052</WorkunitId>
<ResultId>820372658</ResultId>
<Name>MCM1_0212334_2529_0</Name>
<Outcome>1</Outcome>
<ReceivedTime>2024-02-03T02:56:21</ReceivedTime>
<ReportDeadline>2024-02-07T03:05:53</ReportDeadline>
<SentTime>2024-02-01T03:05:53</SentTime>
<ServerState>5</ServerState>
<ValidateState>1</ValidateState>
<FileDeleteState>2</FileDeleteState>
</Result>

Let's have a quick look at the changes (differences between 00:00 and 01:00 UTC):
$ grep -C10 468649052 /var/tmp/wcgresults.2024-03-16T00\:59\:02.2891483.0 > /tmp/0059
$ grep -C10 468649052 /var/tmp/wcgresults.2024-03-16T01\:59\:01.2893845.0 > /tmp/0159
$ diff /tmp/0059 /tmp/0159
10c10
< <ModTime>1706928980</ModTime>
---
> <ModTime>1710549042</ModTime>
19,20c19,20
< <ValidateState>0</ValidateState>
< <FileDeleteState>0</FileDeleteState>
---
> <ValidateState>1</ValidateState>
> <FileDeleteState>2</FileDeleteState>

We can translate the ModTimes (as seen above):
$ date -ud@1706928980
Sat 3 Feb 02:56:20 UTC 2024
$ date -ud@1710549042
Sat 16 Mar 00:30:42 UTC 2024

Was it my only workunit from February awaiting validation?
$ grep -B18 -A2 "<ValidateState>0</ValidateState>" /var/tmp/wcgresults.2024-03-16T00\:59\:02.2891483.0 |
grep -B14 -A6 "<ReceivedTime>2024-02-" | tee /tmp/VS0Feb | grep WorkunitId
<WorkunitId>468649052</WorkunitId>
$

Yes. Here is the link to the workunit:
$ wcgstats -HIJfrrr= 468649052
workunit 468649052
App: Mapping Cancer Markers
Workunit: MCM1_0212334_2529
Created: 2024-02-01T02:51:59
Quorum: 2
Replication: 2

MCM1_0212334_2529_0 Fedora Linux Valid 2024-02-01T03:05:53 2024-02-03T02:56:21 0.93/0.94 73.7/0.0
MCM1_0212334_2529_1 Linux Ubuntu Valid 2024-02-01T03:06:50 2024-02-03T18:29:13 1.60/1.60 72.8/73.3
Details: ---------------------------------------------------------------------------------------------------------------------------------------
MCM1_0212334_2529_0  Fedora Linux  Valid  2024-02-01T03:05:53  2024-02-03T02:56:21    0.93/0.94      73.7/0.0
Sent Time: 2024-02-01T03:05:53+0000
Due Time: 2024-02-07T03:05:53+0000
Returned: 2024-02-03T02:56:21+0000
Result-ID: 820372658
MCM1_0212334_2529_1 Linux Ubuntu Valid 2024-02-01T03:06:50 2024-02-03T18:29:13 1.60/1.60 72.8/73.3
Sent Time: 2024-02-01T03:06:50+0000
Due Time: 2024-02-07T03:06:50+0000
Returned: 2024-02-03T18:29:13+0000
Result-ID: 820372659

Note that my wingman was granted (73.7 + 72.8) / 2 credit.

Adri
PS Used only two files generated by wcgresults:
$ wc -c --total=never /var/tmp/wcgresults.2024-03-16T0[01]*
45473757 /var/tmp/wcgresults.2024-03-16T00:59:02.2891483.0
45391555 /var/tmp/wcgresults.2024-03-16T01:59:01.2893845.0

[Mar 16, 2024 8:42:02 AM]   Link   Report threatening or abusive post: please login first  Go to top 
TigerLily
Senior Cruncher
Joined: May 26, 2023
Post Count: 280
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: Valid MCM1-task ends up with 0 points

Hi adriverhoef,

I apologize for not responding to this ahead of the weekend. I passed this on to the tech team when you first posted this. They said they are looking into this issue. I will let you know when I receive any updates.
[Mar 18, 2024 4:38:40 PM]   Link   Report threatening or abusive post: please login first  Go to top 
adriverhoef
Master Cruncher
The Netherlands
Joined: Apr 3, 2009
Post Count: 2089
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: Valid MCM1-task ends up with 0 points

Thank you for responding, TigerLily, and - most of all - for immediately taking action.

Adri
[Mar 18, 2024 7:32:05 PM]   Link   Report threatening or abusive post: please login first  Go to top 
[ Jump to Last Post ]
Post new Thread