1) Message boards : Number crunching : Server Thread (Message 5651)
Posted 31 May 2022 by frankhagen
Post:
about nothing compared to the havoc we had.
2) Message boards : Number crunching : Server Thread (Message 5647)
Posted 31 May 2022 by frankhagen
Post:
To zip multiple files in a "mix & match" fashion, you can use the boinc_filelist function provided. Basically, it's a crude pattern matching of files in a directory, but it has been useful for us on the CPDN project. Just create a ZipFileList instance, and then pass this into boinc_filelist as follows:

bool boinc_filelist(
const std::string directory,
const std::string pattern,
ZipFileList* pList,
const unsigned char ucSort = SORT_NAME | SORT_DESCENDING,
const bool bClear = true
);


int do_gzip(const char* strGZ, const char* strInput) {
// take an input file (strInput) and turn it into a compressed file (strGZ)
// get rid of the input file after
FILE* fIn = boinc_fopen(strInput, "rb");
if (!fIn) return 1; //error
gzFile fOut = gzopen(strGZ, "wb");
if (!fOut) return 1; //error
fseek(fIn, 0, SEEK_SET); // go to the top of the files
gzseek(fOut, 0, SEEK_SET);
unsigned char buf[1024];
long lRead = 0, lWrite = 0;
while (!feof(fIn)) { // read 1KB at a time until end of file
memset(buf, 0x00, 1024);
lRead = 0;
lRead = (long) fread(buf, 1, 1024, fIn);
lWrite = (long) gzwrite(fOut, buf, lRead);
if (lRead != lWrite) break;
}
gzclose(fOut);
fclose(fIn);
if (lRead != lWrite) return 1; //error -- read bytes != written bytes
// if we made it here, it compressed OK, can erase strInput and leave
boinc_delete_file(strInput);
return 0;
3) Message boards : Number crunching : Server Thread (Message 5645)
Posted 30 May 2022 by frankhagen
Post:
Zipping the files together would reduce the network overhead, and wouldn't cost a lot of spare cash :). Could that be done with reasonable ease?



yes - implemented since boinc 5.8


https://boinc.berkeley.edu/trac/wiki/JobTemplates

<gzip_when_done/>
use this to compress the output file before uploading, see FileCompression
4) Message boards : Number crunching : Server Thread (Message 5639)
Posted 25 May 2022 by frankhagen
Post:
about time to hire a nanny for this kindergarten!
5) Message boards : Number crunching : Server Thread (Message 5607)
Posted 21 May 2022 by frankhagen
Post:
[
LOL[/quote]Honey.... Why is the house so warm?[/quote]

get creative!

"you are such a hot girl"
6) Message boards : Number crunching : Server Thread (Message 5454)
Posted 16 May 2022 by frankhagen
Post:
FUBAR!

and the congrats go to

sILLYgERMANY.
7) Message boards : Number crunching : Server Thread (Message 5423)
Posted 14 May 2022 by frankhagen
Post:
and another unhappy camper has moved on.

that is exactly what happens everytime - a short time of loads of results and afterwards partitipation of regular participants will plumet.

but it is the decision of project-owners - they get what they called for.
8) Message boards : Number crunching : Server Thread (Message 5419)
Posted 14 May 2022 by frankhagen
Post:
Einstein unreachable now.


and another one bites the dust...

SG should be banned for creating this havoc each and every year - but thats just my 5 cents.
9) Message boards : Number crunching : Server Thread (Message 5356)
Posted 9 May 2022 by frankhagen
Post:
situatin is persistent.

about time to kickstart the server!
10) Message boards : Number crunching : Pi Power-Up (Message 5044)
Posted 14 Jan 2022 by frankhagen
Post:
hi,

this good advice!

me myself being a veteran with digital devices and not using any pi's gives 5 stars for this.

HELPFULL at least for the unexperienced around..

gruss, fs.
11) Message boards : News : Network maintenance. (Message 4792)
Posted 4 Sep 2021 by frankhagen
Post:
about time to restart the deamons!
12) Message boards : Number crunching : Block ip for bunkering? (Message 4202)
Posted 7 May 2020 by frankhagen
Post:
them silly fraggles once again.

:(
13) Message boards : Number crunching : Android 9 (Message 3870)
Posted 3 Nov 2019 by frankhagen
Post:
Hmm, it looks like it is manager problem, or Android API...


or server-side simply not handing out work to 64 bit arm devices running android?
14) Message boards : Number crunching : Android 9 (Message 3610)
Posted 29 Jul 2019 by frankhagen
Post:
any news?
15) Message boards : Number crunching : Android 9 (Message 3568)
Posted 21 Jul 2019 by frankhagen
Post:
got a new device which does not receive tasks:
CPU type ARM AArch64 Processor rev 4 (aarch64) [Impl 0x51 Arch 8 Variant 0xa Part 0x801 Rev 4]
Operating System Android 4.4.153-perf+ (Android 9)


any suggestions?
16) Message boards : News : Problems sorted :) (Message 3314)
Posted 6 Feb 2019 by frankhagen
Post:
i am missing work for android.. :|
17) Message boards : News : Server site maintenance break between 11th and 13th January (Message 3201)
Posted 8 Jan 2019 by frankhagen
Post:
maybe about time to raise max tasks in progress to keep things runnig!
18) Message boards : Number crunching : Totally false server report/status (Message 2822)
Posted 20 Apr 2018 by frankhagen
Post:
here we go again: Rückstand des Transitioners (Stunden) 6.97
19) Message boards : News : BHDB application (Message 2813)
Posted 15 Apr 2018 by frankhagen
Post:
Why to produce work if the server is unable to validate it ???
This way of doing is typical to make a bottleneck effect !


probably he is working on a thesis for his master of desaster degree.

SNAFU - FUBAR - TARFUN...
20) Message boards : News : BHDB application (Message 2805)
Posted 15 Apr 2018 by frankhagen
Post:
So 15 Apr 2018 08:23:13 CEST | Universe@Home | Reporting 20 completed tasks
So 15 Apr 2018 08:23:13 CEST | Universe@Home | Not requesting tasks: some task is suspended via Manager
So 15 Apr 2018 08:23:15 CEST | Universe@Home | Scheduler request completed
So 15 Apr 2018 08:23:15 CEST | Universe@Home | Project is temporarily shut down for maintenance


HMPF!!


Next 20




Copyright © 2024 Copernicus Astronomical Centre of the Polish Academy of Sciences
Project server and website managed by Krzysztof 'krzyszp' Piszczek