| Index | Recent Threads | Unanswered Threads | Who's Active | Guidelines | Search |
| World Community Grid Forums
|
| No member browsing this thread |
|
Thread Status: Active Total posts in this thread: 3
|
|
| Author |
|
|
OldChap
Veteran Cruncher UK Joined: Jun 5, 2009 Post Count: 978 Status: Offline Project Badges:
|
Does Boinc keep a log of completed wu's not yet uploaded?
----------------------------------------I seem to have some zipped files in the same folder as the current work that are locked but not uploading after a boinc upgrade. The upgrade was an oddball due to me wanting to run from a BOINC folder after previously running the standard download. Transferred the files from /var/lib/boinc-client but they are currently not seen although present in BOINC/projects/www.worldcommunitygrid.org. Re-assign ownership perhaps? can that be done in bulk? Linux adept help needed please ![]() |
||
|
|
BobCat13
Senior Cruncher Joined: Oct 29, 2005 Post Count: 295 Status: Offline Project Badges:
|
Does Boinc keep a log of completed wu's not yet uploaded? Starting a while ago, the client creates a job_log_projecturl.txt file for each project with every task that has completed. It doesn't distinguish between those uploaded or not, it just lists all completed tasks. I seem to have some zipped files in the same folder as the current work that are locked but not uploading after a boinc upgrade. If you want to check what each of those files are, then create a copy of the client_state.xml file in another location and open it with a text editor (Don't open the original client_state.xml, especially when the client is running). You can then search the client_state.xml copy for each file name to see if it is a file to be uploaded. Here are a couple examples of files to be uploaded taken from my client_state.xml copy:
<nbytes>977251.000000</nbytes> <max_nbytes>209715200.000000</max_nbytes> <md5_cksum>631276bc2097d8247fa33d85237afde8</md5_cksum> <status>1</status> <gzip_when_done/> <upload_url>https://grid.worldcommunitygrid.org/boinc/wcg...andler</upload_url>
<nbytes>0.000000</nbytes> <max_nbytes>15728640.000000</max_nbytes> <status>0</status> <gzip_when_done/> <upload_url>https://grid.worldcommunitygrid.org/boinc/wcg...andler</upload_url> Note the different status for each. 0 means that the file has not been created due to the task not running yet, whereas 1 means that the task has completed and the file is created and ready to upload. Also, you can tell it is an upload file by the <upload_url> in the file info. The upgrade was an oddball due to me wanting to run from a BOINC folder after previously running the standard download. Transferred the files from /var/lib/boinc-client but they are currently not seen although present in BOINC/projects/www.worldcommunitygrid.org. Re-assign ownership perhaps? can that be done in bulk? Linux adept help needed please This for Ubuntu and derivatives: To change the owner:group of files in bulk, open a terminal and cd to the directory where the data directory is and enter the following command: sudo chown username:username -R * of course substituting the correct infomation where I typed username, i.e. boinc, oldchap, or whatever existing user you want to run the client under. [Edit 1 times, last edit by BobCat13 at Nov 18, 2014 4:13:34 AM] |
||
|
|
OldChap
Veteran Cruncher UK Joined: Jun 5, 2009 Post Count: 978 Status: Offline Project Badges:
|
Wonderful info thanks.
----------------------------------------I see my error too with the position of the recursive in chown. I will investigate further after work ![]() |
||
|
|
|