| Author |
Message |
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Hi all
I tried to parse the PRPNet-User-Stats-html-pages with saxxon to import them in a database to generate some stats for a port (yes SGS ;) ). But I waste my time - one error leads to an other. :(
What can help: same tables in xml!
Perhaps this is or may will be made possible ...
Anyone who tried it before ???
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Lexs Volunteer developer
 Send message
Joined: 16 Mar 08 Posts: 61 ID: 20289 Credit: 49,033,000 RAC: 0
               
|
|
The table generation is a bit of a mess on the stats pages, so saxon might bail out because of that.
(<td> tags are never closed)
You could clean this up before giving the output to saxon:
cat user_stats.html |sed "s/<\/tr>/<\/td><\/tr>/g"|sed "s/<td /<\/td><td /g"|sed "s/User ID<td>Total Score<td>Tests Performed<td>PRPs Found<td>Primes Found/User ID<\/td><td>Total Score<\/td><td>Tests Performed<\/td><td>PRPs Found<\/td><td>Primes Found<\/td>/"
or
f you prefer CSV format to go on further you could use:
fgrep "<tr>" user_stats.html|egrep -v "Tests Performed"|sed "s/<td align=right>/;/g"|sed "s/<tr><td>//g"|sed "s/<\/tr>//g
Thus resulting in a very clean list for further operations.
____________
|
|
|
John Honorary cruncher
 Send message
Joined: 21 Feb 06 Posts: 2875 ID: 2449 Credit: 2,681,934 RAC: 0
                 
|
|
You might want to wait until PRPNet 3.0.0+ is released as it uses MySQL. I think there will be more flexibility for the stats tables at that time.
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
thx to Lexs and John
your idea, Lexs, gave me a hint to the "tidy"-project. With this open-source-software it is possible to wellform html into xhtml. So I had not to script by myself if I using this nice tool ...
and John, i can not wait ;) lets have a try and then look forward ...
any result I will post here!
thx again
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1221 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
Hi all
I tried to parse the PRPNet-User-Stats-html-pages with saxxon to import them in a database to generate some stats for a port (yes SGS ;) ). But I waste my time - one error leads to an other. :(
What can help: same tables in xml!
Perhaps this is or may will be made possible ...
Anyone who tried it before ???
Obviously HTML is fairly forgiving WRT missing end-tags.
What kind of stats do you need? Are the stats you need available on one of the stats pages? How do you intend to use the stats?
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
beta test began now
i will collect hourly the user_stats from SGS and GCW13
if the hourly wget is a problem, please post and I will switch to other rhythm
What kind of stats do you need? Are the stats you need available on one of the stats pages? How do you intend to use the stats?
ad1) I like to see daily progress of users on single ports
ad2) As far as I know nobody collects and present user-stats for PrimeGrid PRPNet-Ports except of the user_stats.html, which only shows actual standings but not progress etc.
ad3) I will share it to PrimeGrid_Community and if you like it, you can get my skripting, database-export and so on ... (nothing hidden)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
warddr Volunteer tester
 Send message
Joined: 7 Feb 08 Posts: 254 ID: 18735 Credit: 24,054,820 RAC: 26
           
|
|
I wrote a script to parse the stats page to something more usable:
http://primegrid.server-ubuntu.co.cc/11000.php
(this is for port 11000, I can do it for all the ports)
I didn't include the table headers, but they are the same and in the same order as these here: http://uwin.mine.nu:11000/user_stats.html
I can do this for every stats page, and I can host the scripts.
If you click the link it's possible you have to wait a litle, this is becouse I get the most recent user_stats page and parse it imediately so the things you see are the 'latest stats'.
I can also use a database to cache them and use a cron every hour to get the new data, if someone is interested just ask!
I've got 2 VPS servers so I got plenty of resources.
I can also host a php-stats scripts if anyone writes one. Than we can use a database.
____________
|
|
|
warddr Volunteer tester
 Send message
Joined: 7 Feb 08 Posts: 254 ID: 18735 Credit: 24,054,820 RAC: 26
           
|
|
I see you were looking for SGS;
Check this:
http://primegrid.server-ubuntu.co.cc/12000.php
Again the table headers are just the same you can find here:
http://prpnet.primegrid.com:12000/user_stats.html
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
thank you for your hosting offer
perhaps i will later come back to it ...
Meanwhile first data are collected.
You are welcome to visit
http://vcn94.homelinux.org/PRPNet/
and have a look where the journey goes.
other stats-views will follow and - yes - layout is under construction, too ;)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Meanwhile first data are collected.
You are welcome to visit
http://vcn94.homelinux.org/PRPNet/
and have a look where the journey goes.
other stats-views will follow and - yes - layout is under construction, too ;)
FPS, PPSE and PPSE10K integrated
PPSE11K is prepared, but had to been tested before integration (port is at the moment not reachable)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Meanwhile first data are collected.
You are welcome to visit
http://vcn94.homelinux.org/PRPNet/
and have a look where the journey goes.
other stats-views will follow and - yes - layout is under construction, too ;)
FPS, PPSE and PPSE10K integrated
PPSE11K is prepared, but had to been tested before integration (port is at the moment not reachable)
PRS, 27121, GFN32768 and GFN65536 are collected since today
I think I got all PrimeGrid-Ports. If you miss any port, please post here!
PPSE11K is still offline :(
Next will be a better overview through all PRPNet-Ports and Layout ...
For bugs and wishes, please post here! Thanks!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Good job.
This is rather a request for a feature - would be nice to have list of all projects for a selected user.
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
would be nice to have list of all projects for a selected user.
I will see what can be done next week
...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
would be nice to have list of all projects for a selected user.
I will see what can be done next week
...
your wish has been implemented!
Johns requested overview-page is the start-side.
any further suggestions?
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Wow you did a really nice job on that, I see with mine
JohnMJohnson---16515---41---0---0---0
That must mean port 20008 which is the one I do is the 16515 but for a long time its been around 70k so I'm curious if its for another port project I'm not thinking about, same with 41, if you could let me know I would love that, but don't take my questioning as a bad thing, you did an awesome job my friend, the community owes you big time for your work bro :)
PS: John approximately what date will the 3.0 be released? I didn't say definitive I just wanted an approximate :) Thanks a ton John :)
Edit- also forgot to mention, that its been a long time since I've recived any PSA credit for the port 20008 work I've been doing. just curious how many months it takes or if you guys are able to see when each work unit is done and by whom in the beta prpnet. just curious so I can deside if I want to continue or not. Thanks much :)
____________
John M. Johnson "Novex" |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Hey my friend
first of all: thanks; to you and all the others, who gave me a feedback or hints in the past
Two things:
1) out of your post I see, it would be nice to add the port-numbers to the project (through all tables)
2) I got my numbers from ...:<port>/user_stats.html. If there was a reset in the past (I collect since a few weeks), i can not handle it
btw. here you can see all your projects:
http://vcn94.homelinux.org/PRPNet/user_search?uid=JohnMJohnson
JohnMJohnson---16515---41---0---0---0
your line seems to be from SGS, that is port 12000
To you and all the other here
Have a nice weekend !
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
John Honorary cruncher
 Send message
Joined: 21 Feb 06 Posts: 2875 ID: 2449 Credit: 2,681,934 RAC: 0
                 
|
PS: John approximately what date will the 3.0 be released? I didn't say definitive I just wanted an approximate :) Thanks a ton John :)
Sometime soon.
Edit- also forgot to mention, that its been a long time since I've recived any PSA credit for the port 20008 work I've been doing. just curious how many months it takes or if you guys are able to see when each work unit is done and by whom in the beta prpnet. just curious so I can deside if I want to continue or not. Thanks much :)
All credit has been granted in the normal 1-2 week distribution for sieve work and 4-6 weeks for LLR work.
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
For bugs and wishes, please post here! Thanks!
my own wish is coded, too
a list of all primefinders of today: look here
Implementation will follow and some syntactical corrections (thanks to HAmsty)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1221 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
For bugs and wishes, please post here! Thanks!
my own wish is coded, too
a list of all primefinders of today: look here
Implementation will follow and some syntactical corrections (thanks to HAmsty)
The next release of PRPNet will have a user_primes.html page with primes found grouped by user. It will list the number, date reported, and ordered by decimal length. |
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
The next release of PRPNet will have a user_primes.html page with primes found grouped by user. It will list the number, date reported, and ordered by decimal length.
Great news.
Any chance of having data from past and make them available?
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1221 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
The next release of PRPNet will have a user_primes.html page with primes found grouped by user. It will list the number, date reported, and ordered by decimal length.
Great news.
Any chance of having data from past and make them available?
Yes and no. For now anything that is in the server will be reported. I will be adding a mechanism to delete older data from the server. I hadn't considered saving primes found before deleting the data. I will have to do that before I add any archive/delete functionality. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
The next release of PRPNet will have a user_primes.html page with primes found grouped by user. It will list the number, date reported, and ordered by decimal length.
realy good news :thumbup:
For your idea I would suggest to not publish a prime number, before it is officially reported in the TOP5000. Any user should have his time to report, not that a dishonest Prime thief, they reported.
It is not my business but my passion, so if you need support or coding of what I have done, please send me a message.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1221 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
The next release of PRPNet will have a user_primes.html page with primes found grouped by user. It will list the number, date reported, and ordered by decimal length.
realy good news :thumbup:
For your idea I would suggest to not publish a prime number, before it is officially reported in the TOP5000. Any user should have his time to report, not that a dishonest Prime thief, they reported.
It is not my business but my passion, so if you need support or coding of what I have done, please send me a message.
I hadn't thought about that, although I'm not too worry about people stealing. Chris Caldwell makes routine adjustments to the Prime Pages when mistakes are found. |
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Would be nice to add port number to overview for all PRPNet-ports on PrimeGrid, perhaps as a second line in project name column.
Something like:
GCW13
(12004)
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Would be nice to add port number to overview for all PRPNet-ports on PrimeGrid, perhaps as a second line in project name column.
Something like:
GCW13
(12004)
Implementation is a little bit difficult, because I use project name as variable for functions and in SQL statements, that I can use one function for every project ...
Meanwhile on every page is a link to "basic help" where project is mapped to port and basic stats.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Would be nice to add port number to overview for all PRPNet-ports on PrimeGrid, perhaps as a second line in project name column.
Something like:
GCW13
(12004)
Implementation is a little bit difficult,...
easier than I thought - start page modified, other pages will follow this week
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Thanks, this is helpful for orientation.
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Would it be possible to see sum of all ports as another line?
Points, tests, users, PRPs, primes, daily stats, Top User or even User stats?
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Would it be possible to see sum of all ports as another line?
Points, tests, users, PRPs, primes, daily stats, Top User or even User stats?
This short text confused me a little bit (perhaps because I am not a native english speaker).
Do you want to have a summary line on overview page (like on user search)?
give me a hint, please!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
This short text confused me a little bit (perhaps because I am not a native english speaker).
Same here, not a native english.
Do you want to have a summary line on overview page (like on user search)?
Yes, sum on overview page.
Thread sum(all projects) as another project.
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Yes, sum on overview page.
done!
moved case sensitive user search from table head to table bottom
sum makes no sense for 'top user' and 'daily stats' (imho)
sum for 'users' will follow as soon as I found a performant sql-query across the project tables; perhaps there are some database changes to do ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
A new page lets hope for weekly credit granting.
In consultation with John this summary page was created.
It will be generated in batch due to huge database traffic.
Generation time will be documented in the footer.
Note: Due to some silly behaviour the table is not sortable at the moment. Any further changes on this page will be discussed with PrimeGrid Admins (especially John) because this page will be base of PRPNet credit granting.
Meanwhile creation we discussed an additional line a user with data "total/tests since date". This data are not used for credit granting, make a lot of database traffic and imho is meaningless with batch generation, especially since John will grant credits still irregular depending on his time (I hope now more often than once a month ;-) ).
If a very large demand for these additional line exists and we can agree on fixed time intervals for the "since" data, I am willing to code another page, which will be generated in batch once or twice a day.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
sum makes no sense for 'top user' and 'daily stats' (imho)
sum for 'users' will follow as soon as I found a performant sql-query across the project tables; perhaps there are some database changes to do ...
Thanks,
sum for "top users" - work done regardless of PRPNet subproject, most productive participants etc. This makes perfect sense...as far as subprojects are giving similar points for work done.
Daily stats doesn't make much sense, ageed. Comparing projects instead of users may some some interesting numbers, perhaps not worth the effort.
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
There are some issues due to the unreachable ports during the challenge.
I had to investigate how to handle ...
UPDATE:
The main problems are avoided at the moment, lets see what I made, if fails the whole day ...
This is a good test for the stats page free of annoying bugs that may occur ;-)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Uups ...
there has been a reset on PPSE port 10K
and I am far away from my hosts :(
Stats for port PPSE10K will be silly as long as I am out of reach of my hosts.
Have a nice sunday!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
there has been a reset on PPSE port 10K
I copied the stats table to an archiv table and clean up the stats.
PPSE port 10K starts now with date 02/28/2010
the former stats will be included in an other page in the next few days ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
two more features:
1) formerly/ancient stats are listed on http://vcn94.homelinux.org/PRPNet/formerly.php;
you can reach the page over the link on the bottom of the basic stat page
2) a little online/offline overview: every update try (at the moment hourly) the port number is changed to red if it is not succesful. If the port is reachable for stats update, port number is changed to green
Have fun!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Ad 2) Nice feature :-)
Thanks
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
HAmsty Volunteer tester
 Send message
Joined: 26 Dec 08 Posts: 132 ID: 33421 Credit: 12,510,712 RAC: 0
                
|
Ad 2) Nice feature :-)
Thanks
yes, i works really well - currently every port is red
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
ESP is now included
progress should appear tomorrow
If there is any issue please be patient. Due to a business travel i will not be online before thursday ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
I do some updates on lucky PrimeFinder page
There was a bug: anyone who just started on a port and found a prime on first day was not displayed
I hope I fixed it now ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
due to the finish PFDMC (port 7171) is moved to ancient ports
last update was done at 04/15/2010
PFDMC rest in peace - maybe there is a resurrection ????? - we will see ...
Have a nice weekend!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
today I had to do some updates (soft- and hardware)
the PRPNet-stats-pages will be offline sometimes ...
Sorry to all visitors, but work had to be done!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
hej to all
I switched stats-download for Port 11K according to this
Descriptions will be changed soon ... please be patient!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
hej to all
I switched stats-download for Port 11K according to this
Descriptions will be changed soon ... please be patient!
Thanks
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
John wrote: Additionally, a few more ports have been activated in PRPNet:
* //server=GFN262144:0:1:prime2u.com:11002
* //server=GFN524288:0:1:prime2u.com:11001
* //server=TRPDC:0:1:prime2u.com:11003
stats are online for these ports, progress will follow tomorrow, help page will be updated soon ...
If you catch any bug, be quick or patient: I am on holiday from june 12 to 20 and far away from my website....
Have fun with the new GFN searches
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
what happens?
I am still on holiday and can not reach my servers at home
The whole communication interfaces are offline/unreachable
Tomorrow I will be back at home and see what happens
Please be patient ...
update:
DynDNS reports the IP-exchange last more than 36 hours.
imho there is a routing problem at home or at my internet service provider
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
update:
DynDNS reports the IP-exchange last more than 36 hours.
imho there is a routing problem at home or at my internet service provider
another update:
DynDNS reports a new IP-exchange
stats page is online from my location, servers are running
some workunits of the challenge are reported near by the new IP exchange time
I think it was an ISP related problem, but I will check my servers tomorrow ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
some of you found it under development, now it is ready and online:
I try to collect .../user_primes.html pages in a database table. If you make a user search, in the first table the user stats of any port is presented and (new) in a second table you find the users primes, which are published by PrimeGrid on user_primes.html page. As always table is sortable ..
Once again a big bold Thanks! to PrimeGrid user "grueny", who made me aware of the user_primes.html page.
help page has been further enhanced, in section "basic stats at PrimeGrid" you can find a link to .../user_primes.html page of any port
By the way: you can address most of my php pages directly. For user search type "http://vcn94.homelinux.org/PRPNet/user_search?uid=" followed by your PRPNet user id. But beware, abbreviations lead to wrong outcomes!
As example my own user search page is adressed http://vcn94.homelinux.org/PRPNet/user_search?uid=SysadmAtNbg
I hope you have fun with my little stats page.
And remeber: any suggestion is welcome!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Wow, Great Job!
I really like the additions :)
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
a "quickwin" from the prime table on my database:
you can get a list of all (probable) primes found by PrimeGrid PRPNet at http://vcn94.homelinux.org/PRPNet/primelist.html, linked on start page near by the lucky prime finder.
It is static generated once an hour to lower database traffic.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Nice.
I can see some strange decimal lenght of 35-42...
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
I can see some strange decimal lenght of 35-42...
I have send a private message to lennart in order to know whether it PrimeGrid corrected or if I intervene with php-coding
please be patient according to the notes at top of the table!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Some of you may registered yesterday a short outage round about 20:00 UTC
Due to a PSU-damage the system goes down ...
It was up again about half an hour later. I bridged the power from an other system.
Now I have to shutdown the system again to rebuild the bridge and to incorporate the new PSU. I hope stats side will be up soon ...
Please be patient!
Update:
Its up and running again!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
tonight there was a main poweroutage while I sleep
servers now are up and running ...
thanks for your patient!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Would it be possible to show WUs available for each PRPNet sub-project?
Perhaps as 3rd line in Project column...
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Thanks for your feedback!
At the moment it isnt possible to show available workunits due to scanning only "user_stats.html" and "user_primes.html". I had to scan "server_stats.html" for this information.
It would be an advantage, to have an overview of available workunits. So I will think about it, please be patient!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Would it be possible to show WUs available for each PRPNet sub-project?
Perhaps as 3rd line in Project column...
There is growing!
But as you can watch it has become the second column ...
detailed overviews (perhaps grafics) will follow
Have fun with it
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Nice work, thanks :-)
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1221 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
There is growing!
But as you can watch it has become the second column ...
detailed overviews (perhaps grafics) will follow
Have fun with it
Trend Micro does not like your website. I'll have to try from home.
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Trend Micro does not like your website. I'll have to try from home.
Argghhh - not again
Its time to look for a stable server-hoster to end the 24h-reconnect with new IP :(
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
A small bug - server stats for GFN65536 and GFN32768 shows wrong numbers under Completed Thru, probably wrong variable.
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
A small bug - server stats for GFN65536 and GFN32768 shows wrong numbers under Completed Thru, probably wrong variable.
Good evening Honza
I must be blind - I cant find any columne "Completed Thru" ...
Please specify the URL and the columne name as displayed on my page
Otherwise it is difficult to find the bug
Thanks in advance
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
http://prpnet.primegrid.com:12005/server_stats.html
GFN32768
Completed Thru says 32768 (?!), while Min B is 3093872.
Leading Edge is 3208364, that is correct.
Same for GFN65536.
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
ehm ...
in my responsibility are only pages on the URL http://vcn94.homelinux.org/PRPNet/ ...
But I think PrimeGrid-admin (especially Lennart as PRPNet-server-admin) are aware of the bug right now according to my inbox ;)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1221 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
http://prpnet.primegrid.com:12005/server_stats.html
GFN32768
Completed Thru says 32768 (?!), while Min B is 3093872.
Leading Edge is 3208364, that is correct.
Same for GFN65536.
That is definitely a code bug in PRPNet. The bug in in GFNStatsUpdater.cpp. Replace the appropriate section with lines of code:
if (nextToTest == 0)
sprintf(completedSQL, "(select max(b) from Candidate where n = %d)", theN);
else
sprintf(completedSQL, "ifnull((select max(b) from Candidate where n = %d and b < %d), %d)",
theN, nextToTest, nextToTest); |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
something wrong with Primorial ??
today one workunit crunched - 2,300,682 points earned for this??
I cant believe that ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
something wrong with Primorial ??
today one workunit crunched - 2,300,682 points earned for this??
I cant believe that ...
I have got some errors on that port when I upgraded it.
I am working on it.
Lennart |
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1221 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
|
I've sent Lennart a patch. This was purely my mistake. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
!Announcement!
Due to a power outage I had to shutdown my servers today round about 12:00 UTC. Restart will not be before 24:00 UTC ...
Thanks for your patience
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
HAmsty Volunteer tester
 Send message
Joined: 26 Dec 08 Posts: 132 ID: 33421 Credit: 12,510,712 RAC: 0
                
|
|
just to promote a new feature. there is now an overtake feature available at alluser_stats.php.
for example:
http://vcn94.homelinux.org/PRPNet/alluser_stats.php?proj=PRS
click on your row and see how many days you have left for overtaking your opponents or to be overtaken.
____________
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Would it be possible to have similar on Summary page (by sum-total column)?
http://vcn94.homelinux.org/PRPNet/credit_summary.html
Perhaps some sorting as well..
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Would it be possible to have similar on Summary page (by sum-total column)?
http://vcn94.homelinux.org/PRPNet/credit_summary.html
Perhaps some sorting as well..
According to the footer
"Due to some silly behaviour it is not sortable at the moment. Any further changes on this page will be discussed with PrimeGrid Admins (especially John) because this page is base of PRPNet credit granting."
I will investigate it again, but i can not promise anything ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Would it be possible to have similar on Summary page (by sum-total column)?
http://vcn94.homelinux.org/PRPNet/credit_summary.html
Perhaps some sorting as well..
second step before first ;)
table is now sortable, please press second header row ...
first step is still under investigation!
Have fun with sorting meanwhile
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
table is now sortable, please press second header row ...
a too fast going online
seems to me there is a bug with large numbers :(
Update
fixed it - javascript-function "replace" stops after fist match if you do not use regexp
now I use it :D
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Thanks :-)
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Stats servers looks to be down.
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
seems to me like a networking problem
server reports still boinc-workunits
I think it is online but not reachable
unfortunatly I wont be back at home not before sunday ... :(
Perhaps the daily reconnect from my ISP will make it reachable tomorrow morning
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
seems to me like a networking problem
server reports still boinc-workunits
I think it is online but not reachable
can´t find any problem on my local infrastructure
done: a disconnect to my internet service provider and then a reboot of my router (including the reconnect to my internet service provider)
hope it helps
Edit: meanwhile I see some action in my webserver log ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Due to the start of a new server version on PPSE10K I will archive old data
The temporary issues will be fixed later today ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Due to the start of a new server version on PPSE10K I will archive old data
The temporary issues will be fixed later today ...
old data is available via ancient stats.
progress in PPSE10K will follow automatic tomorrow ;)
If you suspect any error or if you have any suggestion, feel free to post here or send me a private message ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
Due to the start of a new server version on PPSE10K I will archive old data
The temporary issues will be fixed later today ...
old data is available via ancient stats.
progress in PPSE10K will follow automatic tomorrow ;)
If you suspect any error or if you have any suggestion, feel free to post here or send me a private message ...
Thank you.
That gives the word prime time a new meaning :)
find . | grep test_results.log | xargs grep "PRIME" | wc -l
21
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
due to the test of PRPNet 4.0.1 on port PPSE11K a new set of ancient stats was build: PPSE11K_20101019
Update:
I have extend user_search.php: additionally, the ancient ports are listed in a second table. Now you can get an impression of your actual and ancient work done
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Thanks for the stats...I really like them....
Can I make the assumption that the current and ancient totals are represented in the totals? I am asking because I noticed some users with negative points, but am assuming that is only due to the 'ancient' stats being moved to a different table....
Thanks again for the hard work of making the stat tables....
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Can I make the assumption that the current and ancient totals are represented in the totals? I am asking because I noticed some users with negative points, but am assuming that is only due to the 'ancient' stats being moved to a different table....
Thanks for your feedback!
Indeed: it is a problem of coordination the moving. If data from old and new are mixed there is the possibility of negativ values for people, which very quick start crunching on the new. I am not 7x24h near by my database to make it just in time. Sorry, but sometimes real life is more important than negative points ;-)
My best practice to do the movement is to not stop the scanning of the port. If I be informed by PrimeGrid admin before the movement, I can do a backup copy before and clear the database tables. If the information does not reach me (because I am not 7x24h online ;-) ), I had to split the mixed table. Until it is split, there is a chance to get negative values and this can not be fixed, because the yesterday values are higher than the today low values of the new ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
fixed a bug with primes from PPSE11K
now they are stored on database and available via stats pages ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
to all, who search for up or down PRPNet servers:
right under the port description in first column is the status of port signaled by red or green
red - it is down and does not answer
green - it is up and answer to stats requests (maybe it is empty, thats shown in second column)
I check every port in an interval of 30 minutes - so you can get an quick overview by visiting http://vcn94.homelinux.org/PRPNet/
...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Due to the large amount of primes from ports 10K and 11K the complete prime list is growing to 171,84 KB at the moment. The sort function become slower and slower.
So I think it is time to split it!
Do you like a split based on month?
Do you like a split based on ports?
both?
Any other suggestions?
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Hi,
i would prefere that the splitting is done based on the ports. |
|
|
mfbabb2 Volunteer tester
 Send message
Joined: 10 Oct 08 Posts: 510 ID: 30360 Credit: 11,561,356 RAC: 0
                     
|
Due to the large amount of primes from ports 10K and 11K the complete prime list is growing to 171,84 KB at the moment. The sort function become slower and slower.
So I think it is time to split it!
Do you like a split based on month?
Do you like a split based on ports?
both?
Any other suggestions?
Ports
____________
Murphy (AtP)
|
|
|
|
|
Due to the large amount of primes from ports 10K and 11K the complete prime list is growing to 171,84 KB at the moment. The sort function become slower and slower.
So I think it is time to split it!
Do you like a split based on month?
Do you like a split based on ports?
both?
Any other suggestions?
Both - Ports then Time (as Needed) maybe Years or Quarters of a year, depends on the numbers.
you can split it up to bi-monthly if needed or even weekly - but let the number make the determination
But Ports first - as the first split then split again as needed
Steve
____________
From the High Desert in New Mexico
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Thanks for your feedback!
Coding is on my workplan, but not done yet.
During the challenge test, I found a great heat on my web server. I must now examine the fan and thermal grease, this is a time-out is necessary. I am planning for this Friday afternoon.
Thanks for your patient
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
During the challenge test, I found a great heat on my web server. I must now examine the fan and thermal grease, this is a time-out is necessary. I am planning for this Friday afternoon.
dust bunnies away from cpu fan;
applied new thermal paste;
and now cpu is back at normal temperature.
hope it will stay for a while at this level ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Stats hiccup?
My PPSE10K points just vanished.
Ralf_Recker 12,743 -349,720 362,463 0 -349,720 12,743
The overview for the sub projects look like this:
PPSE10K 12,743 (+ -349,720) 1,530 (+ -122,502) 0 (+ 0) 1 (+ -186)
The primes grow for PPSE10K for today also dropped to -83:
4,194
+ -83
primelist
____________
|
|
|
|
|
|
Looks like the PRPNet Server is making problems:
http://uwin.mine.nu:10000/user_stats.html
____________
|
|
|
John Honorary cruncher
 Send message
Joined: 21 Feb 06 Posts: 2875 ID: 2449 Credit: 2,681,934 RAC: 0
                 
|
|
PSA cobblestones for PRPNet will be suspended until we can determine what is happening. We apologize for the inconvenience.
____________
|
|
|
|
|
Stats hiccup?
My PPSE10K points just vanished.
Ralf_Recker 12,743 -349,720 362,463 0 -349,720 12,743
The overview for the sub projects look like this:
PPSE10K 12,743 (+ -349,720) 1,530 (+ -122,502) 0 (+ 0) 1 (+ -186)
The primes grow for PPSE10K for today also dropped to -83:
4,194
+ -83
primelist \
You have not been here for awhile (10K) There was a points drop in 30 October. I think this is your problem. We all have gone through this. There are some people will have the the same problem once they start 10K again. ie LookAS and JohnGalt007 will drop point like you did - Pilgrim drop over 8 Million points
See my history or any one else - 30th of October was a bad day - still haunts us :)
http://http://vcn94.homelinux.org/PRPNet/
Then select user - hit GO
Steve
____________
From the High Desert in New Mexico
|
|
|
|
|
You have not been here for awhile (10K) There was a points drop in 30 October. I think this is your problem. We all have gone through this. There are some people will have the the same problem once they start 10K again. ie LookAS and JohnGalt007 will drop point like you did - Pilgrim drop over 8 Million points
See my history or any one else - 30th of October was a bad day - still haunts us :)
http://vcn94.homelinux.org/PRPNet/
Then select user - hit GO
Steve
Thanks. My CPUs were busy at the NPLB challenge that time otherwise I might have noticed these problems earlier.
Update:
...and of course the only thing that haunts me is the new color of my PSA badge ;)
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
There has be a stats reset on 10/30/2010 due to db problems on port 10K
Good news:
I will split bad stats later the day and create a new ancient stats table up to 10/29/2010. Then a work done decrease will not more happen until next accident ...
Bad news:
work from 10/30/2010 until the db crash is lost. Neither lennart nor I could recreate the stats for this time.
This will be done later the day ...
Thanks for your patient
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
It is done!
work until 10/29/2010 can be found in ancient stats
work since 10/30/2010 can be found in normal stats
users who have not done workunits since 10/30/2010 have been droped from normal stats
user who have done workunits since 10/30/2010 are included, but only from the day of the first new workunits (e.g. the history of Ralf began on 11/13/2010)
In my opinion the stats from port 10K are fixed now. If you find any further bug, please post here ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Thank you for your efforts!
I'll switch my quad back to PRPNet after the the DNETC race.
____________
|
|
|
|
|
|
I consider Ports like 10000 and 11000 as sort of "fun"
ports because they units are fast and do not produce significant
primes.....so losing 8,000,000 points is, I guess, not the end
of the world.
However, for other ports, it DOES matter.
I would be mad as hell if I lost my 50,000,000 points on
port 12001 and even madder if I lost my +100,000,000 points
on port 9000.
"There is nothing we can do about it" would not be acceptable.
If it were to happen on those ports I would be outta here
and take my computing power to a DC project that CAN do
something about it.
Cheers |
|
|
|
|
I consider Ports like 10000 and 11000 as sort of "fun"
ports because they units are fast and do not produce significant
primes.....so losing 8,000,000 points is, I guess, not the end
of the world.
However, for other ports, it DOES matter.
I would be mad as hell if I lost my 50,000,000 points on
port 12001 and even madder if I lost my +100,000,000 points
on port 9000.
"There is nothing we can do about it" would not be acceptable.
If it were to happen on those ports I would be outta here
and take my computing power to a DC project that CAN do
something about it.
Cheers
I agree 10 & 11K are a lot fun. lots of prime but .......
a great way to boost ones self after a round of WOO SOB or even the PSP(LLR)'s of which I am running a few before the Challenge
Steve
____________
From the High Desert in New Mexico
|
|
|
|
|
|
yes, I will give something else a shot. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
"There is nothing we can do about it" would not be acceptable
I have done my very best, so you get stats until 10/29 and from db reset on 10/30 up to now
lennart has not any history on prpnet server, so a db reset cause a start on level zero
If that is not enough for you, make it on your own and share it to the world ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Hold back all of them horses. Lets take a breath..........
Stats are a little lost if you do not know where to find them.
So, Lets Find Them......
Go to Message boards:
Then - Project Staging Area:
Then - PRPNet (Top of the list, 1st thread)
Then - To the 1st post (top of the list if you sort oldest post first, or last if you sort newest post first)
In that post (message # 13329) Welcome to PRPNet!
go down the that post to Basic Stats:
Now we have links to all of the Stats we need. But sometimes one can get a little bit lost.
So lets give it a go - Select Detailed daily user stats courtesy of Sysadm@Nbg
Thank you Sysadm@Nbg
Now we are at the page overview for all PRPNet-ports on PrimeGrid
Wow .... everything about all of the ports we ever need.
red port names are off line green one are just waiting to send you all of the WU's your cruncher will want.
---------------------------
Now lets pick a project any project one that you have crunched for ...
Now click on the top three user of that project. I would say 10K because I am the #1 user in that project :)
So now click on my name or any name => link to
PRPNet-port-search for user
%Steve_Martin@SETI.USA%
Top of this page is active ports
Then ancient ports ===============Wow the missing stats
(I do not think any are missing======maybe only a few hrs if that)
Then list of (probable) primes of user
BTW: you can get to ancient ports from the bottom of the Detailed daily user stats page.
A lot of fun features here in the stats pages. have fun
=================================================================
I would like to thank Sysadm@Nbg for all of his hard work here on these pages.
=================================================================
I joined PSA in 22 Feb 2010
My first Prime PPSE 8221*2^700776+1 210959 digits long - entered the top 5000 at 1214
=> I am still a bit giddy about this one. I must have danced around for a week.
http://primes.utm.edu/primes/page.php?id=91967
=> my eyes are a bit moist now.................no tears, just moist, just a little bit
The Time I have spent here with PrimeGrid & PRPNet are......
Just a Big round of Thanks to Sysadm@Nbg & John & Lennart !!!
You have made 2010 one of the best years of my life
All of the PrimeFinders are a good family to belong to.
Thanks again for all of your Friendship,
Steve Martin
____________
From the High Desert in New Mexico
|
|
|
|
|
|
To Sysadm@Nbg:
you are taking this as an attack against the help you have provided,
lennart, and/or your coding skills.
it was not.
It is against the idea that it is inevitable that all PRPNET user stats are temporary and will eventually be wiped out for one reason or another.
"Archive stats" are not exactly the point.
The attitude that "if you don't like it code it yourself"
hardly creates a user friendly atmosphere.
Not all contributors are coders or want to be.
PRPNET users should be warned their stats are, in a sense.
temporary depending on servers db's, power outages, whatever.
Tell the Boinc users that all their stats will be wiped out, (or Seti users) and you might want to hide out.
Wouldn't fly at Seti.
Or on Boinc.
As silly as it is and has always been, people find stats and
rankings very important.
I am sure you remember the war when they changed from Clasic SETI
to the currentt SETI.
but i guess it is pointless to pursue on PrimeGrid because
it has such little financial and community support....unlike, for
instance, mersenne.org.
o.k.
I give up.
It is what it is.
Cheers. |
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
I appreciate work done on detailed stats for prpnet, great job.
But I would mind loosing real results (primes found) from PRPNet. And since I don't see them on BOINC part of PG and no progress made on this, that makes me nervous.
(not that loosing stats would make me happy of course).
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
warddr Volunteer tester
 Send message
Joined: 7 Feb 08 Posts: 254 ID: 18735 Credit: 24,054,820 RAC: 26
           
|
PSA cobblestones for PRPNet will be suspended until we can determine what is happening. We apologize for the inconvenience.
Do you mean you'll give them all later, or do you mean we won't get any cobblestones (ever) for the work we are doing now?
____________
|
|
|
|
|
|
Currently i'm neither concerned about the credits or primes, nor any stats but about one thing:
Incidents like the above are well suited to scare the volunteer developers away. I fully
understand the concerns about the possible loss of work or data on PRPnet but considering
the style of the critic the reponse was justified.
@Ward:
I guess the PSA credits for PRPNet will be granted later probably after the database problems
are solved or at least mitigated.
____________
|
|
|
John Honorary cruncher
 Send message
Joined: 21 Feb 06 Posts: 2875 ID: 2449 Credit: 2,681,934 RAC: 0
                 
|
|
For what it's worth, since the start of PRPNet on 31 December 2008, there has been only one case in which a server crashed and data was lost. This occurred 30 October 2010, and only to Port 10K. This did not affect any other ports. Because of the crash, manual cobblestones were lost. Fortunately, credit was applied just before the crash, so less than 6 hours of work were lost. We apologize for this and now have implemented daily backups...although even daily backups would not have helped much in this case.
Stats resets have happened in the past. This is quite different from the crash in which data was lost. With stats resets, technically data still remains although it doesn't show up on the specific port stats. Uli has static copies of data before the reset. Therefore, he includes these static copies in his stats collection. Now they are more visible in "ancient stats".
We fully understand the importance of stats and have done our best to maintain the integrity of them. We also understand that lack of information leads inevitably to speculation. Should any issues arise in the future, we'll do a better job communicating to everyone the details of what has happened.
p.s. As for including PRPNet primes into PrimeGrid's database, this will occur when Rytis has the time to implement.
____________
|
|
|
|
|
. Fortunately, credit was applied just before the crash, so less than 6 hours of work were lost.
I was wondering why my credit wasn't applied....is it due to the later DB problem on @ 11/12/10? I was at @2.5 mil before I restarted with PSA, and am at @5.6 mil right now, and was before the problem on 10/30/10, but haven't seen an uptick in my PSA credits. Thanks...
____________
|
|
|
John Honorary cruncher
 Send message
Joined: 21 Feb 06 Posts: 2875 ID: 2449 Credit: 2,681,934 RAC: 0
                 
|
. Fortunately, credit was applied just before the crash, so less than 6 hours of work were lost.
I was wondering why my credit wasn't applied....is it due to the later DB problem on @ 11/12/10? I was at @2.5 mil before I restarted with PSA, and am at @5.6 mil right now, and was before the problem on 10/30/10, but haven't seen an uptick in my PSA credits. Thanks...
11/12/10 was not a PSA credit issue. Less than 6 hours on 10/30/10 only on port 10000 was. You haven't seen a PSA credit update because it's been temporarily put on hold. It should resume shortly.
____________
|
|
|
|
|
. Fortunately, credit was applied just before the crash, so less than 6 hours of work were lost.
I was wondering why my credit wasn't applied....is it due to the later DB problem on @ 11/12/10? I was at @2.5 mil before I restarted with PSA, and am at @5.6 mil right now, and was before the problem on 10/30/10, but haven't seen an uptick in my PSA credits. Thanks...
11/12/10 was not a PSA credit issue. Less than 6 hours on 10/30/10 only on port 10000 was. You haven't seen a PSA credit update because it's been temporarily put on hold. It should resume shortly.
No worries....it's only credits.....just wondering....keep up the good work, and keep sending me them prime emails from the challenge....
In fact I just got another one!!!!!
____________
|
|
|
|
|
. Fortunately, credit was applied just before the crash, so less than 6 hours of work were lost.
I was wondering why my credit wasn't applied....is it due to the later DB problem on @ 11/12/10? I was at @2.5 mil before I restarted with PSA, and am at @5.6 mil right now, and was before the problem on 10/30/10, but haven't seen an uptick in my PSA credits. Thanks...
11/12/10 was not a PSA credit issue. Less than 6 hours on 10/30/10 only on port 10000 was. You haven't seen a PSA credit update because it's been temporarily put on hold. It should resume shortly.
Any updates as to when the PSA credit is going to be applied?
____________
|
|
|
|
|
. Fortunately, credit was applied just before the crash, so less than 6 hours of work were lost.
I was wondering why my credit wasn't applied....is it due to the later DB problem on @ 11/12/10? I was at @2.5 mil before I restarted with PSA, and am at @5.6 mil right now, and was before the problem on 10/30/10, but haven't seen an uptick in my PSA credits. Thanks...
11/12/10 was not a PSA credit issue. Less than 6 hours on 10/30/10 only on port 10000 was. You haven't seen a PSA credit update because it's been temporarily put on hold. It should resume shortly.
Any updates as to when the PSA credit is going to be applied?
Bump....
____________
|
|
|
|
|
|
PSA Credit is currently trickling in for me. I don't know if you were talking about PSA credit in general or just the PSA credit that was missed because of whatever happened to the server.
____________
|
|
|
|
|
|
Are there any detailed stats for BOINC as well? To show e.g. top participants in 321LLR and the like?
____________
There are only 10 kinds of people - those who understand binary and those who don't
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
not on my pages
but may I lead you to free-dc.org eg http://stats.free-dc.org/stats.php?page=userwork&proj=pgrid&subproj=321_LLR
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
not on my pages
but may I lead you to free-dc.org eg http://stats.free-dc.org/stats.php?page=userwork&proj=pgrid&subproj=321_LLR
Great, thanks!
____________
There are only 10 kinds of people - those who understand binary and those who don't
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
new feature:
During "Last 10 days of 2010 Challenge" there were some unofficial stats for SR5
Now the collaboration is offical, so the unofficial stats for SR5 became offical.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
SR5 officially, work loaded for N=600k, good.
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Pending test for SR5 looks fine but server stats seems to be stucked.
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
why do you think so?
only thing I do is save and sum http://prime2u.com:7171/server_stats.html
maybe there are some older ranges, which I delete from time to time ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
why do you think so?
Upon returning from work, I hit refresh and numbers are still the same.
John confirmed there is a problem on server-side, your detailed stats are fine.
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1221 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
|
I am aware of the issue, but am waiting for a server log from John. The stats can be reset via the admin function and the timer based code in the server should be no different, so I don't know why it isn't working. It has been working for me in my tests. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
The Riesel Problem double checks (TRPDC - Port 11003) was moved to "formerly stats on PRPNet-Stats".
Reason:
- it was not reachable a long time
- it is not listed in the project list anymore
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
two little announcements:
1) According to this post I renamed project 27121 to 27
2) Due to the migration of servers the list of user primes is not up to date until I changed the scanning of the migrated server.
In future you may ask for team stats (new feature of PRPNet). It is on the workplan ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
...
In future you may ask for team stats (new feature of PRPNet). It is on the workplan
...
There are 2 beta stats pages for team scoring:
an overview/search:
http://vcn94.homelinux.org/PRPNet/team_search?tid=<your_team_case_sensitive>
e.g. http://vcn94.homelinux.org/PRPNet/team_search?tid=SETI.Germany
a detailed project stats for a team:
http://vcn94.homelinux.org/PRPNet/team_stats?tid=<your_team_case_sensitive>&proj=<subproject>
e.g. http://vcn94.homelinux.org/PRPNet/team_stats?tid=SETI.Germany&proj=SR5
feel free to test it and make any suggestion
more to come but I have little time right now ... :(
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
1) According to this post I renamed project 27121 to 27
...
I've noticed that since this change I am no longer seeing updated stats for Port 12006 at
http://vcn94.homelinux.org/PRPNet/user_search?uid=TheDawgz
or
http://vcn94.homelinux.org/PRPNet/credit_summary.html USER=TheDawgz
Both pages are currently showing: Score = 2,993,949 Tests = 512
However the stats are changing at
http://prpnet.primegrid.com:12006/user_stats.html USER=TheDawgz
Currently showing: Score = 3,590,818 Tests = 560
The stats for the other ports that I am working on are updating properly.
John
____________
There's someone in our head but it's not us. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Thanks for the hint John
due to an scripting error no update since 01/17/2010 reached the database
from now on it will be up to date
Have a nice weekend
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Thank you for the fix - as well as all your work on the greatly appreciated PRPNet stats pages!
____________
There's someone in our head but it's not us. |
|
|
Lumiukko Volunteer tester Send message
Joined: 7 Jul 08 Posts: 165 ID: 25183 Credit: 747,914,486 RAC: 29,735
                           
|
...
In future you may ask for team stats (new feature of PRPNet). It is on the workplan
...
There are 2 beta stats pages for team scoring:
an overview/search:
http://vcn94.homelinux.org/PRPNet/team_search?tid=<your_team_case_sensitive>
e.g. http://vcn94.homelinux.org/PRPNet/team_search?tid=SETI.Germany
a detailed project stats for a team:
http://vcn94.homelinux.org/PRPNet/team_stats?tid=<your_team_case_sensitive>&proj=<subproject>
e.g. http://vcn94.homelinux.org/PRPNet/team_stats?tid=SETI.Germany&proj=SR5
feel free to test it and make any suggestion
more to come but I have little time right now ... :(
Is SR5 the only port that is updating daily?
http://vcn94.homelinux.org/PRPNet/team_search?tid=PrimeSearchTeam
I have done some work in other ports also, but those are not showing up in team_stats:
http://vcn94.homelinux.org/PRPNet/user_search?uid=Lumiukko
Or is it just because of the beta status...
--
Lumiukko
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
While creating an allteam_stats page, I was curious about this, too.
Now I found the mistake: I made the "team" index in the database table unique, so all previos saved results were droped out automaticly, and you cant see any progress.
Now I changed the faulty index
btw: SR5 is not affected
sorry for that mistake!
next feature: one project, all teams
http://vcn94.homelinux.org/PRPNet/allteam_stats?proj=<project>
e.g. http://vcn94.homelinux.org/PRPNet/allteam_stats?proj=SR5
Note: the other projects are sensless until there is a saved history (tomorrow morning I hope)
Update: I inserted the missing lines from the crash backup export, so there is some progress ;)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
due to the upgrade to v4.1.1 port PPSE11K was included in team-stats, prime collecting was fixed
new feature: Tour de Primes 2011
please follow the link on main page to http://vcn94.homelinux.org/PRPNet/tourdeprimes_2011.html
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Sysadm - is your server down, or is it just my crappy internet? I can't seem to access anything on the PRPNet stats site.
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
seems there is a problem with my internal network
I could not fix it before work :(
now I am @work until 13:00 UTC
sorry for the unplanned downtime
please be patient
btw: new server is online, but there arent any stats pages, yet
I hope I can migrate in Feb...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
hello,
the server is online? with the same url?
because I can not see my page:
http://vcn94.homelinux.org/PRPNet/user_search?uid=[AF>EDLS]_Polynesia
____________
|
|
|
|
|
|
Well it's just about 1300 UTC - hope you get it fixed soon! No rush, but I do kinda like looking at my stats for some reason.
Best of luck getting it fixed!
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
sorry for delay
I had to stay longer at work as planned
I fixed the problem here at home
now I and my server is online again (I watched some external traffic in apache logs)
I plan to move the stats page from my home server to a virtual server at a webhoster. This server is online, but there arent any stats pages on it, yet. I plan to move the stats "on the fly" in Feb; but first I had to config the server. URL will not change soon, while I am using a dyndns URL wich can point to the new server according to the description.
Again sorry!
I wish you a nice weekend
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
fixed an other typo in team_search related to integration of PPSE11K
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
sorry for delay
I had to stay longer at work as planned
I hate it when work gets in the way :)
____________
@AggieThePew
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
I split the global Prime list to reduce the file size
In year 2010 reported Primes can be found on formerly page or please follow link on top of the actual Prime list. Watch out, file size ~2 MB!
Other Prime lists (port selection, team selection or user selection) are not affected yet.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Is this still the correct url for the stats page
http://vcn94.homelinux.org/PRPNet/
and if so, then it's not up yet :)
____________
@AggieThePew
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
must be up, I can see external traffic
e.g. (the watchdog)
204.152.200.42 - - [28/Jan/2011:18:27:04 +0100] "GET /PRPNet/ HTTP/1.0" 200 125435 "-" "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)"
http://vcn94.homelinux.org/PRPNet/
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
must be up, I can see external traffic
e.g. (the watchdog)
204.152.200.42 - - [28/Jan/2011:18:27:04 +0100] "GET /PRPNet/ HTTP/1.0" 200 125435 "-" "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)"
http://vcn94.homelinux.org/PRPNet/
Sorry, had issues on my end with an ISA server. My bad!
____________
@AggieThePew
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Sorry, had issues on my end with an ISA server. My bad!
doesn´t matter :D
I hope it will more stable with the new vServer in Feb ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
hello,
That's when I could see the calculations that I do on this project in PRPNet my stats because I do not see the line move SR5 ...
I have 4 client on this project ... and units, it seems to me were sent to the server ...
http://vcn94.homelinux.org/PRPNet/user_search?uid=[AF%3EEDLS]_Polynesia
[/img]
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Sorry
I can not find you in http://prime2u.com:7171/user_stats.html
So my scripts can not import your data
possible reason:
- other username in prpnetclient.ini ?
- problem with username on the server side ?
Edit: Just seen in your prpclient.log
you crunch for psp-projekt and not the primegrid port
psp-projekt is not included in PrimeGrid-PRPNe-Stats yet
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
why I have not received taf Server 7171, ahead of PSP?
I put this before the lines / / so I should not receive ...
But it seems that other projects are empty ....
____________
|
|
|
|
|
|
Small problem with Port 10k User Primes Stats
Team and client have switched column, not a serious problem.
____________
35 x 2^3587843+1 is prime! |
|
|
John Honorary cruncher
 Send message
Joined: 21 Feb 06 Posts: 2875 ID: 2449 Credit: 2,681,934 RAC: 0
                 
|
Small problem with Port 10k User Primes Stats
Team and client have switched column, not a serious problem.
Yes, minor bug. It will be resolved in the next release...which should be out soon. :)
____________
|
|
|
|
|
|
Well now that you've brought it up ...
I've noticed that beginning sometime on Jan 28th, "new" primes found on 10K and listed on http://uwin.mine.nu:10000/user_primes.html
are not showing up on my stats page http://vcn94.homelinux.org/PRPNet/user_search?uid=TheDawgz.
However they are being counted and are showing in the (running +daily) count in the first stats table.
"New" primes found on 11K are listed correctly on personal stats page as well as the 11K's user primes page.
-John
____________
There's someone in our head but it's not us. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Well now that you've brought it up ...
I've noticed that beginning sometime on Jan 28th, "new" primes found on 10K and listed on http://uwin.mine.nu:10000/user_primes.html
are not showing up on my stats page http://vcn94.homelinux.org/PRPNet/user_search?uid=TheDawgz.
However they are being counted and are showing in the (running +daily) count in the first stats table.
"New" primes found on 11K are listed correctly on personal stats page as well as the 11K's user primes page.
-John
well - just fixed it!
due to the update to prpnet server version 4.1.4 I had to update scanning for user primes because of the additional team column.
counting based on user stats, where is no layout change ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
well - just fixed it!
due to the update to prpnet server version 4.1.4 I had to update scanning for user primes because of the additional team column.
counting based on user stats, where is no layout change ...
oh my dear - there are some more updated ports ...
I will do them this evening, please be patient until then
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
well - just fixed it!
due to the update to prpnet server version 4.1.4 I had to update scanning for user primes because of the additional team column.
counting based on user stats, where is no layout change ...
oh my dear - there are some more updated ports ...
I will do them this evening, please be patient until then
done!
team stats are available for all ports (except FPS where "No team stats found")
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
rroonnaalldd Volunteer developer Volunteer tester
 Send message
Joined: 3 Jul 09 Posts: 1213 ID: 42893 Credit: 34,634,263 RAC: 0
                 
|
oh my dear - there are some more updated ports ...
I will do them this evening, please be patient until then
done!
team stats are available for all ports (except FPS where "No team stats found")
Thank you.
____________
Best wishes. Knowledge is power. by jjwhalen
|
|
|
rroonnaalldd Volunteer developer Volunteer tester
 Send message
Joined: 3 Jul 09 Posts: 1213 ID: 42893 Credit: 34,634,263 RAC: 0
                 
|
|
Sysadm@Nbg
I am missing some points for SGS in your teamstats.
http://vcn94.homelinux.org/PRPNet/user_search?uid=rroonnaalldd and http://vcn94.homelinux.org/PRPNet/team_search?tid=ronalds should have the same number of points...
____________
Best wishes. Knowledge is power. by jjwhalen
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Sysadm@Nbg
I am missing some points for SGS in your teamstats.
http://vcn94.homelinux.org/PRPNet/user_search?uid=rroonnaalldd and http://vcn94.homelinux.org/PRPNet/team_search?tid=ronalds should have the same number of points...
If you compare
http://prpnet.primegrid.com:12000/user_stats.html and
http://prpnet.primegrid.com:12000/team_stats.html
you can see the difference too
so my stats are fine ;) but the port stats are different
Maybe it is because you crunched some workunits before server version 4.1.x (team feature introduced with this) ??
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
rroonnaalldd Volunteer developer Volunteer tester
 Send message
Joined: 3 Jul 09 Posts: 1213 ID: 42893 Credit: 34,634,263 RAC: 0
                 
|
If you compare
http://prpnet.primegrid.com:12000/user_stats.html and
http://prpnet.primegrid.com:12000/team_stats.html
you can see the difference too
so my stats are fine ;) but the port stats are different
Maybe it is because you crunched some workunits before server version 4.1.x (team feature introduced with this) ??
Maybe. I started PSA with 4.1.4beta in early morning of January 25th. The first entry in both result-logs are "[2011-01-25 03:54:21 WN] Candidate: 20194810655865*2^666667-1 Program: llr.exe Residue: 04E22DF3701723AC Time: 806 seconds" and "[2011-01-25 03:55:32 WN] Candidate: 20194799963625*2^666667-1 Program: llr.exe Residue: 980BE14F2556CA8E Time: 879 seconds"...
____________
Best wishes. Knowledge is power. by jjwhalen
|
|
|
John Honorary cruncher
 Send message
Joined: 21 Feb 06 Posts: 2875 ID: 2449 Credit: 2,681,934 RAC: 0
                 
|
Maybe it is because you crunched some workunits before server version 4.1.x (team feature introduced with this) ??
Maybe. I started PSA with 4.1.4beta in early morning of January 25th.
We've had a couple of issues with the rollout of teamid. Once everything is solid, we'll look at addressing any concerns that users would like to change.
Also note that not all ports have been updated. Any server less than v4.1.0 does not support teams.
____________
|
|
|
Vato Volunteer tester
 Send message
Joined: 2 Feb 08 Posts: 796 ID: 18447 Credit: 382,504,347 RAC: 225,569
                       
|
|
Minor cosmetic issue for the Tour de Primes stats:
In the Prime List section, the BOINC imports for SGS show +1 forms, whereas they're actually -1 form.
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Minor cosmetic issue for the Tour de Primes stats:
In the Prime List section, the BOINC imports for SGS show +1 forms, whereas they're actually -1 form.
BOINC-Primes are generated and only imported by me "as it is"
I had to inform the admins ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Vato Volunteer tester
 Send message
Joined: 2 Feb 08 Posts: 796 ID: 18447 Credit: 382,504,347 RAC: 225,569
                       
|
|
Correct forms are now in, but the cache of all the old +1 ones is still there e.g.
13638503281665*2^666666+1 is listed for me in addition to the correct 13638503281665*2^666666-1
which means I'm showing as having 3 primes instead of 2 (at the time of writing).
Later ones are correctly only in there once.
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
I did not notice the bug correction by Rytis.
Now I droped the duplicated entries out of the database, so stats should be fine on next update
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
rroonnaalldd Volunteer developer Volunteer tester
 Send message
Joined: 3 Jul 09 Posts: 1213 ID: 42893 Credit: 34,634,263 RAC: 0
                 
|
I did not notice the bug correction by Rytis.
Now I droped the duplicated entries out of the database, so stats should be fine on next update
Does this mean my missing points caused by the team feature and an older server-sw would be corrected too?
____________
Best wishes. Knowledge is power. by jjwhalen
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
the bug fix was only the format correction in the export of Primes on boinc side
The difference between user and team stats is still on the workplan as far as I know
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
rroonnaalldd Volunteer developer Volunteer tester
 Send message
Joined: 3 Jul 09 Posts: 1213 ID: 42893 Credit: 34,634,263 RAC: 0
                 
|
the bug fix was only the format correction in the export of Primes on boinc side
The difference between user and team stats is still on the workplan as far as I know
Thank for the info.
____________
Best wishes. Knowledge is power. by jjwhalen
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
today it is the day!
I switched PRPNet stats to the new vServer
If you discover any error, please post here ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
today it is the day!
I switched PRPNet stats to the new vServer
If you discover any error, please post here ...
All OK so far except graph at top of page.
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
today it is the day!
I switched PRPNet stats to the new vServer
If you discover any error, please post here ...
All OK so far except graph at top of page.
fixed (forget to install and activate gd)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
http://vcn94.homelinux.org/PRPNet/daily_stats.php
Was just wondering if this page and pages like is were also affected because they dont seem to be updated.
____________
@AggieThePew
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
http://vcn94.homelinux.org/PRPNet/daily_stats.php
Was just wondering if this page and pages like is were also affected because they dont seem to be updated.
This is not a direct access page - there must be some kind of parameters.
Access through main page seems functionable (column "daily history") ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
edit - well, the link I gave is from the PRPNet - Stats page under GO on the daily history column... anyway, it shows to have been updated yesterday.
Maybe I don't have the right link to the "main" page.
____________
@AggieThePew
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
There is still some traffic on the old webserver, so I shut em down now!!
If you can not connect, please make sure, that your DNS is up to date ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
There is still some traffic on the old webserver, so I shut em down now!!
If you can not connect, please make sure, that your DNS is up to date ...
LOL oh sure, make me do some work now :)
____________
@AggieThePew
|
|
|
|
|
today it is the day!
I switched PRPNet stats to the new vServer
If you discover any error, please post here ...
All OK so far except graph at top of page.
fixed (forget to install and activate gd)
Cool! Thanks. |
|
|
|
|
|
Don't suppose you could pm me the ip address of the new server since new/changed DNS entries take a while to circle the web.
____________
@AggieThePew
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
you may try this URL (this will be the new static)
http://u-g-f.de/PRPNet/
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
you may try this URL (this will be the new static)
http://u-g-f.de/PRPNet/
Thanks and it's rather fast as well!
____________
@AggieThePew
|
|
|
|
|
|
Hello!
A couple of newbie questions- re: http://vcn94.homelinux.org/PRPNet/user_search?uid=JAMC
1) Under the 'Primes' column I see 2 (+1)... what does the '(+1)' mean?
2) I know there is a delay in the granting of credit - right now I have 1,986,573 (+ 141,774) and 25,804.00 shows up under my accounts' Project Staging Area work>> is BOINC credit granted 1:1?
Thanks ;) |
|
|
|
|
Hello!
A couple of newbie questions- re: http://vcn94.homelinux.org/PRPNet/user_search?uid=JAMC
1) Under the 'Primes' column I see 2 (+1)... what does the '(+1)' mean?
2) I know there is a delay in the granting of credit - right now I have 1,986,573 (+ 141,774) and 25,804.00 shows up under my accounts' Project Staging Area work>> is BOINC credit granted 1:1?
Thanks ;)
It is the Change Today in " Points Tests PRPs Primes"
It will be reset to 0 each day
Your Points " 1,986,573 (+ 141,774) " means a total of 1,986,573 point total and you gained 141,774 point today
Hope this helps
Steve Martin
BTW No SR5 WU's :( ;)
____________
From the High Desert in New Mexico
|
|
|
|
|
|
Sysadm@Nbg:
http://vcn94.homelinux.org/PRPNet/tourdeprimes_2011.html#primefinder
Just notice..... The Little Jersey at the top
Cool |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Sysadm@Nbg:
http://vcn94.homelinux.org/PRPNet/tourdeprimes_2011.html#primefinder
Just notice..... The Little Jersey at the top
Cool
It is not my idea - just look at the badges of e.g. lennart ...
I only take that one for this year to my page ... ;)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
Just notice..... The Little Jersey at the top
Cool
I would make them single colored (yellow, green, red) and put only last two digits of the year (11, not 2011) and make them bigger.
Well, those badges would be rare...
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
|
|
|
Are those badges last forever? :)
____________
Polish National Team |
|
|
|
|
|
sorry to ask this here, but when the rest of my credits will be translated into points PRPNet boinc? thank you
____________
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
sorry to ask this here, but when the rest of my credits will be translated into points PRPNet boinc? thank you
See there
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Did I mentioned it ???
the native URL of the new server is http://u-g-f.de/PRPNet/.
but you can use the former dynDNS URL http://vcn94.homelinux.org/PRPNet/, too.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
Did I mentioned it ???
the native URL of the new server is http://u-g-f.de/PRPNet/.
but you can use the former dynDNS URL http://vcn94.homelinux.org/PRPNet/, too.
You did but in a response to a question I had earlier about the DNS and ip address when you changed servers.
Thanks
____________
@AggieThePew
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
to whom it may concern: a list of unreported (aka hidden) primes ...
http://vcn94.homelinux.org/PRPNet/hidden_primes.php
note:
be happy, if the list is empty - admin has reported anything outstanding
be more happy if you are on the list - you have found a prime, which will be reported by admin to Top 5000 PrimePage soon ... :D
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Announcement!
My server provider informed me that on Monday March 7 from 06:00 to 09:00 UTC
there is a planned downtime.
In this time my server may be unavailable.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
rroonnaalldd Volunteer developer Volunteer tester
 Send message
Joined: 3 Jul 09 Posts: 1213 ID: 42893 Credit: 34,634,263 RAC: 0
                 
|
|
"John" wrote: Maybe it is because you crunched some workunits before server version 4.1.x (team feature introduced with this) ??
Maybe. I started PSA with 4.1.4beta in early morning of January 25th.
We've had a couple of issues with the rollout of teamid. Once everything is solid, we'll look at addressing any concerns that users would like to change.
Also note that not all ports have been updated. Any server less than v4.1.0 does not support teams.
Any news?
____________
Best wishes. Knowledge is power. by jjwhalen
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
stats-scanning for port 11K was stopped due to bugs on my side after the upgrade to PRPNet 4.2.3
Do not expect a start in the near future because I am two weeks offline soon ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
stats-scanning for port 11K was stopped due to bugs on my side after the upgrade to PRPNet 4.2.3
Do not expect a start in the near future because I am two weeks offline soon ...
Dang, and here I was thinking I'd racked up some major numbers - LOL
____________
@AggieThePew
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
stats-scanning for port 11K was stopped due to bugs on my side after the upgrade to PRPNet 4.2.3
Do not expect a start in the near future because I am two weeks offline soon ...
I do some fixes from remote:
- user_stats are scanned again (due to the outtage today include the scoring of yesterday)
- team_stats are scanned again (...)
- server_stats are scanned again
Still not scanning:
- user_primes (unreported_primes and sum of primes are not affected, only the found primes are not listed yet)
Sorry, I can not do more at this time preparing my holiday
I hope it will work some time without error
I had to investigate the bugs, when I am back in April
Sorry again, have a nice time until then and thanks for your patient ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
Sorry, I can not do more at this time preparing my holiday
I hope it will work some time without error
I had to investigate the bugs, when I am back in April
Sorry again, have a nice time until then and thanks for your patient ...
I would like to say thank you! We are just spoiled to the wonderful work you've done.
Rick
____________
@AggieThePew
|
|
|
Neo Volunteer tester
 Send message
Joined: 28 Oct 10 Posts: 710 ID: 71509 Credit: 91,178,992 RAC: 0
                   
|
I would like to say thank you! We are just spoiled to the wonderful work you've done.
Rick
Ditto. I check my user and team stats every half hour or so. Sometimes I wake up at 3 a.m., check my stats for 2 seconds, and go back to bed.
____________
|
|
|
|
|
I would like to say thank you! We are just spoiled to the wonderful work you've done.
Rick
Ditto. I check my user and team stats every half hour or so. Sometimes I wake up at 3 a.m., check my stats for 2 seconds, and go back to bed.
Now that is commitment, or should you be committed!
Go Aggie The Pew
____________
Welcome to Holland
|
|
|
GurneyVolunteer tester Send message
Joined: 15 Oct 07 Posts: 24 ID: 13485 Credit: 7,590,126 RAC: 0
                  
|
|
Hi
What happened to stats page http://vcn94.homelinux.org/PRPNet/?
It's not working since yesterday. |
|
|
|
|
Hi
What happened to stats page http://vcn94.homelinux.org/PRPNet/?
It's not working since yesterday.
Try this address.. they changed servers
http://u-g-f.de/PRPNet/
____________
@AggieThePew
|
|
|
GurneyVolunteer tester Send message
Joined: 15 Oct 07 Posts: 24 ID: 13485 Credit: 7,590,126 RAC: 0
                  
|
Try this address.. they changed servers
http://u-g-f.de/PRPNet/
Thanks. That address works just fine.
|
|
|
|
|
|
Thanks for all the work on the stats, it's much appreciated.
Do you plan to add 5OB?
Peter
____________
35 x 2^3587843+1 is prime! |
|
|
pschoefer Volunteer developer Volunteer tester
 Send message
Joined: 20 Sep 05 Posts: 667 ID: 845 Credit: 2,374,701,989 RAC: 15,281
                          
|
Thanks for all the work on the stats, it's much appreciated.
Do you plan to add 5OB?
It's already added to the stats, it just has to be added to the overview tables. Might take some time, though, as Sysadm is on vacation right now. ;)
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Hej I am back
During my vacation my DynDNS-Account was cancelled because of the new static IP.
While I was offline, there was no chance to me, to react in the five-day-deadline :(
Sorry for this!
Please use http://u-g-f.de/PRPNet/ instead as mentioned by Gurney
5oB is online and will be included in overview stats pages soon as mentioned by pschoefer
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
Hej I am back
During my vacation my DynDNS-Account was cancelled because of the new static IP.
While I was offline, there was no chance to me, to react in the five-day-deadline :(
Sorry for this!
Please use http://u-g-f.de/PRPNet/ instead as mentioned by Gurney
5oB is online and will be included in overview stats pages soon as mentioned by pschoefer
LOL personally I'd have enjoyed my vacation and not worried about the stats page :) Glad you're back and hope you had a great time.
Rick
____________
@AggieThePew
|
|
|
|
|
|
I see 5OB has made our individual stats pages: TroubledBunny and they are updating but port 10k stats seem stuck.
Please ignore this message if you are working on it.
Thanks,
Peter |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
I see 5OB has made our individual stats pages: TroubledBunny and they are updating but port 10k stats seem stuck.
Please ignore this message if you are working on it.
Thanks,
Peter
I do not ignore it ;)
I have fixed it, now!
you may see a high increase today, because of the catch up
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
The stats page is back up and it's like Christmas with lots of credit and primes showing up all at once :)
____________
@AggieThePew
|
|
|
rroonnaalldd Volunteer developer Volunteer tester
 Send message
Joined: 3 Jul 09 Posts: 1213 ID: 42893 Credit: 34,634,263 RAC: 0
                 
|
|
Are the stats working? I see the same amount of units listed as yesterday...
____________
Best wishes. Knowledge is power. by jjwhalen
|
|
|
|
|
|
Mine are definitely updating, and I know I have machines working right now, so nothing seems out of place.
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Are the stats working? I see the same amount of units listed as yesterday...
to take a closer look: on which ports do you crunching?
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
rroonnaalldd Volunteer developer Volunteer tester
 Send message
Joined: 3 Jul 09 Posts: 1213 ID: 42893 Credit: 34,634,263 RAC: 0
                 
|
Are the stats working? I see the same amount of units listed as yesterday...
to take a closer look: on which ports do you crunching?
SGS and the last unit was done before friday 2400.
____________
Best wishes. Knowledge is power. by jjwhalen
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Are the stats working? I see the same amount of units listed as yesterday...
to take a closer look: on which ports do you crunching?
SGS and the last unit was done before friday 2400.
SGS stats look fine; no error messages in my logs.
If you done your last unit before friday 2400 (UTC ?!) there couldnt be any progress on saturday and sunday (while there is no work done on your side).
With a closer look to http://u-g-f.de/PRPNet/user_stats.php?uid=rroonnaalldd&proj=SGS: you have done 35 workunits on friday, 22 on saturday and none on sunday; day is rotated at UTC+0200
While there are no pending tests on http://prpnet.primegrid.com:12000/pending_tests.html for you, I think you have stopped crunching SGS.
can you confirm this?
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
prpnet.primegrid.com:12003 "GFN65536" was updated to PRPNet 4.3.0.
I fixed the scanning bugs on my side; stats should work again.
You can see an increase today because of the catch up.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
rroonnaalldd Volunteer developer Volunteer tester
 Send message
Joined: 3 Jul 09 Posts: 1213 ID: 42893 Credit: 34,634,263 RAC: 0
                 
|
SGS stats look fine; no error messages in my logs.
If you done your last unit before friday 2400 (UTC ?!) there couldnt be any progress on saturday and sunday (while there is no work done on your side).
With a closer look to http://u-g-f.de/PRPNet/user_stats.php?uid=rroonnaalldd&proj=SGS: you have done 35 workunits on friday, 22 on saturday and none on sunday; day is rotated at UTC+0200 One host reported the last units on friday 20:05 UTC+0200 but the other host should report their last units before saturday.
While there are no pending tests on http://prpnet.primegrid.com:12000/pending_tests.html for you, I think you have stopped crunching SGS. Yesno, either the web-access is broken (again) or simple the host was turned off. I will check this tomorrow.
____________
Best wishes. Knowledge is power. by jjwhalen
|
|
|
rroonnaalldd Volunteer developer Volunteer tester
 Send message
Joined: 3 Jul 09 Posts: 1213 ID: 42893 Credit: 34,634,263 RAC: 0
                 
|
35 workunits on friday, 22 on saturday and none on sunday Yep, all 57 units were done before friday midnight. One host reported 22 units on saturday morning after web-access-problems and none on sunday.
____________
Best wishes. Knowledge is power. by jjwhalen
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
my ISP asked me to do some updates
I don´t know, if there is an outtage ...
crash-backup was done before :D
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
my ISP asked me to do some updates
I don´t know, if there is an outtage ...
crash-backup was done before :D
sorry for the little downtime
now the server is up again an running (I hope stable)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
the new server port was integrated into stats pages
It can be found directly above PPSE10K and is named PPSElow
Progress will follow tomorrow ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
That's very cool and thanks !!! Now I will have to change some cores around once I get them freed up from a couple of other tasks :)
edit: bingo got my first set of stats on the new port. |
|
|
|
|
|
Just wondering if the stats page is being worked on. I get the header and that's it.
Rick
____________
@AggieThePew
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
seems there are some database problems
all I can do now is try a restart of the server ...
more to come later
EDIT
After restart of server it seems to run again
Later I will have a look what happend ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
seems there are some database problems
all I can do now is try a restart of the server ...
more to come later
EDIT
After restart of server it seems to run again
Later I will have a look what happend ...
It looks to be back up... thanks - I just figured you were working on some changes due to the new server and what not :)
____________
@AggieThePew
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Due to John´s announcement I will move stats for PPSE10K and PPSE11K to the ancient stats soon.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Not to complain or anything but when you removed the ports 10 and 11k from the stats, all the accumulated credits for those 2 ports disappeared as well. I was just wondering if those credits would ever show up somewhere or maybe they are and I'm not looking at the right spot.
It would be nice to have a place that shows total credits regardless of the port status.
Rick
LOL it's almost like starting over again :)
____________
@AggieThePew
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
well - I will see what I can do on user_search ...
a sum-line below "ancient ports" and below a sum-overall-line should be possible
I will have a look ...
EDIT:
... maybe I've satisfied your desire: please have a lock at your stats and give me a feedback
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
well - I will see what I can do on user_search ...
a sum-line below "ancient ports" and below a sum-overall-line should be possible
I will have a look ...
EDIT:
... maybe I've satisfied your desire: please have a lock at your stats and give me a feedback
Quite remarkable actually! Ask and receive within a few minutes.. the new additions look great !!!
Thanks Rick |
|
|
mfbabb2 Volunteer tester
 Send message
Joined: 10 Oct 08 Posts: 510 ID: 30360 Credit: 11,561,356 RAC: 0
                     
|
well - I will see what I can do on user_search ...
a sum-line below "ancient ports" and below a sum-overall-line should be possible
I will have a look ...
EDIT:
... maybe I've satisfied your desire: please have a lock at your stats and give me a feedback
The "Ancient Ports" section should have the [today's work] info zeroed out (the numbers in parentheses) so it will not show up in the grand totals section.
____________
Murphy (AtP)
|
|
|
|
|
|
Murphy, what numbers are you referring too? The stats I looked at on the archived ports don't have a number other than 0 in the (). The total or overall does but in looking I believe that's just today's totals for the active ports.
Edit: Murphy, apparently I looked at the stats page after your requested changes were done :) |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
fine tuning in progress ...
* today progress at ancient ports and overall removed
* style of table bottom changed to lightgrey
now I will do this for team_search too
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
rroonnaalldd Volunteer developer Volunteer tester
 Send message
Joined: 3 Jul 09 Posts: 1213 ID: 42893 Credit: 34,634,263 RAC: 0
                 
|
|
I see a difference in ancient ports for my user and team account...
user:
PPSE10K_20100227
PPSE10K_20101014
PPSE10K_20101029
PPSE10K_20110426
PPSE11K_20101019
PPSE11K_20110426
TRPDC_20110112
PFDMC_20100415
team:
PPSE10K_20110426
PPSE11K_20110426
____________
Best wishes. Knowledge is power. by jjwhalen
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
teamid is a new feature which was released early in 2011 (dont know the exakt version)
so ports which was closed before 2011 havent any teamid ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
According to the movement announced here I moved stats scanning today, too.
I will watch next hours, if all is working fine, because there was an upgrade of server version and I had to make some changes, too.
Thanks for your patient
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
I will watch next hours, if all is working fine, because there was an upgrade of server version and I had to make some changes, too.
Bug on GFN524288 (port: prpnet.mine.nu:11001) was solved; update is running again. You may see an increase today because of the catch up.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Announcement!
My server provider informed me that on Tuesday May 31 from 05:00 to 07:00 UTC
there is a planned downtime.
In this time my server may be unavailable.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Was just wondering if the new MEGA port 12010 would be showing up on the stats page. |
|
|
mfbabb2 Volunteer tester
 Send message
Joined: 10 Oct 08 Posts: 510 ID: 30360 Credit: 11,561,356 RAC: 0
                     
|
Was just wondering if the new MEGA port 12010 would be showing up on the stats page.
I hope it does, too.
It is not for the weak of heart. Testing times on a single core of a fast host is about 3 hours.
I have been running it about 1:18 and it is 15% done on my mediocre machine.
So it is more like 9 hours. (Core 2 Duo -- T5300 1.73 GHz)
But that is still a lot faster than the current 5OB (~62 hours).
____________
Murphy (AtP)
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
new port will come soon (I was made aware of it today)
maybe this evening (UTC) or tomorrow ...
for now real life has a higher priority ;)
please be patient
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
for now real life has a higher priority ;)
Real life ALWAYS has a higher priority!
____________
Warped
|
|
|
|
|
new port will come soon (I was made aware of it today)
maybe this evening (UTC) or tomorrow ...
for now real life has a higher priority ;)
please be patient
LOL wasn't trying to hurry ya... I agree real life is much more important.
You do a bang up job and thanks much ! |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
be sure, you hurry me ;)
Today I leave @work much sooner than the last days and than expected ...
so the basics are done:
- data is collected
- stats-pages are extended
- history will come tomorrow because today is the first day :D
You may watch a change in sort order on some pages. I have done a re-order depending on the server ports. ...
Enjoy the MEGA-PrimeSearch
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
I dont like the re-order :( |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
I dont like the re-order :(
I dont like it, too!
But like or not like doesnt help me ... please make a better suggestion!
I have had no better idea (and want to hava a logical order to not loose the overview) and the former order was not worth the name
:-/
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
I dont like the re-order :(
I dont like it, too!
But like or not like doesnt help me ... please make a better suggestion!
I have had no better idea (and want to hava a logical order to not loose the overview) and the former order was not worth the name
:-/
By name is the best before it changed ;) |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
I dont like the re-order :(
I dont like it, too!
But like or not like doesnt help me ... please make a better suggestion!
I have had no better idea (and want to hava a logical order to not loose the overview) and the former order was not worth the name
:-/
By name is the best before it changed ;)
Okay - I will give it a try
now it is sorted alphanumerical by name
any comments?
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
Okay - I will give it a try
now it is sorted alphanumerical by name
any comments?
[x] great!
PS: Dont forget the lucky primefinder list too... |
|
|
|
|
|
From what I can see it looks really good.
Well done there V
Rick |
|
|
|
|
|
Looks to me the Team Stats Column is missing.....
Wait, Was it even there? ........ :-)
Steve
____________
From the High Desert in New Mexico
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
team stats is on the workplan ...
but as you can see on my reaction-time: real life (=@work) beets me hard this moment.
what I plan today: sorting some other tables or listings by name
I hope this weekend the "hidden team stats" will be history
thanks for your patient
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
may you have a look - team stats are included
PS: I hope my beer belly and you are satisfied that the food today was somewhat narrower ... ;)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Well, how cool is that. Very nice!
Thanks for the wonderful work
Rick
a beer belly is a sign of good breeding |
|
|
|
|
may you have a look - team stats are included
PS: I hope my beer belly and you are satisfied that the food today was somewhat narrower ... ;)
Wow, That looks great, Thanks....... Didn't think it would happen that fast.
Steve
____________
From the High Desert in New Mexico
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
you may see an deep impact on PPSElow-team-stats
John and I tried to merge the different team_id
but if there are new workunits comming to the server with false team_id, on stats side the false team_id is revived ...
first candidate is "Minnesota_Cruncers"
please update your prpclient.ini to the correct team_id
Thanks in advance
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
I determined with pleasure, that the new MEGA Prime Stats (http://prpnet.mine.nu:12010/all.html) have an additional column with the expiration date of the wu's. Is it possible or in plan to add this also for the other prpnet projects?
Regards Odi |
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1221 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
I determined with pleasure, that the new MEGA Prime Stats (http://prpnet.mine.nu:12010/all.html) have an additional column with the expiration date of the wu's. Is it possible or in plan to add this also for the other prpnet projects?
Regards Odi
Lennart needs to upgrade them to PRPNet 4.3.4. |
|
|
|
|
|
Ah ok, thx a lot for the info.
Regards Odi |
|
|
mfbabb2 Volunteer tester
 Send message
Joined: 10 Oct 08 Posts: 510 ID: 30360 Credit: 11,561,356 RAC: 0
                     
|
I determined with pleasure, that the new MEGA Prime Stats (http://prpnet.mine.nu:12010/all.html) have an additional column with the expiration date of the wu's. Is it possible or in plan to add this also for the other prpnet projects?
Regards Odi
And it is a really nice/useful addition, I might add.
Thank you.
____________
Murphy (AtP)
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Today I ve made some code changes to better handle the special character in a team name. Hopefully I dont create more bugs ...
I build up a few crossreferences between users and teams, too.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Announcement!
My server provider informed me that on Thursday June 30 from 05:00 to 07:00 UTC there is a planned downtime.
In this time my server may be unavailable.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
I was made aware of a scanning bug. As far as I can see from remote, primes of SGS-port is affected.
I will fix it later this day when I am back at home ...
Please be patient
Thanks
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
I will fix it later this day when I am back at home ...
Fixed!
Have a nice weekend
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
lennart has informed me: he has done or is doing soon some upgrades to PRPNet ports.
I will correct my scanning scripts "on the fly" when I am aware of.
please be patient, @work is a lot of trouble, so I am only able to fix my scripts in the evening (MESZ)
today I made changes to: 121, 27, ESP, FPS, GCW13, PPSE, PRS
feel free to report any bug ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
@sysadm: Don't care, no bug ;) But nice to have. Is it possible, and what's more interesting with passable serverload, to add overall user/team stats for all users/team (maybe without the founded primes in detail), like behind the search boxes at the bottom of the site (for one user)?
So it would possible to compare users/team overall the ports.
It has no priority, but it would be fine if you add it on a (existing?) wishlist ;)
Regards Odi
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
hmm - for me it make no sense to compare users/teams between the ports because the work on ports is done is not compareable at all
e.g. how to compare a llr "PPSElow" with a GeneferCUDA "GFN524288"?
I am not a friend of combined stats where apples are equated pears ...
If you want to compare you with other members, take
johns credit summary. There you have all members on all ports in one table ...
EDIT:
Team is a optional and not a required field; a quick select on my database shows many team fields with NULL; a meaningful comparison can not be build with this "bad" data quality ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
First off and most importantly: Thank you for all of the great PSA-PRPNet-Stats!!
As long as we are talking "wish list items"...
It would be nice to see the addition of rank for each port with credit on the individual user stats page.
If it could be carried over to the individual team stats page that might be interesting as well.
Something along the lines of the sub-project ranking on PrimeGrid.
IE:
project points tests PRPs primes RANK
I do realize that the "top 3" are listed on the Overview Stats page, but I never seem to be 1,2 or 3 -- which must be some sort of error ;)
____________
There's someone in our head but it's not us. |
|
|
|
|
hmm - for me it make no sense to compare users/teams between the ports because the work on ports is done is not compareable at all, e.g. how to compare a llr "PPSElow" with a GeneferCUDA "GFN524288"?
I kept in mind, the points was a comparable criteria but I can err. Sure, total tests and primes not really, thats only informatively.
If you want to compare you with other members, take johns credit summary.
Thx for the info. I think the last two sum column is what I suggested.
Team is a optional and not a required field; a quick select on my database shows many team fields with NULL; a meaningful comparison can not be build with this "bad" data quality ...
Well, thats true. I didn't think of it.
It would be nice to see the addition of rank for each port with credit on the individual user stats page.
Yeah, nice idea I think.
Regards Odi
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
It would be nice to see the addition of rank for each port with credit on the individual user stats page.
If it could be carried over to the individual team stats page that might be interesting as well.
Something along the lines of the sub-project ranking on PrimeGrid.
IE:
project points tests PRPs primes RANK
I do realize that the "top 3" are listed on the Overview Stats page, but I never seem to be 1,2 or 3 -- which must be some sort of error ;)
Ranking is not saved but calculated!
The TOP3 on start page is only "a fake" (a SELECT statement ordered by points and
limited to three). On the port pages there is only a virtual ranking (initial ordered top to down) and I implemented no rank column due to some fuzz (I doesnt want to set up a hugh number of rules, how ranking is build up).
While it isnt saved it can be shown on user/team stats pages, yet.
I will think about a redesign of my table structure, so I could save the ranking; but this is not a thing to do in a few minutes ...
Have a nice weekend
PS:
My statement to the last sentence (with a twinkle in my eyes, too): do crunching more than other, then you will get your place on the stage; sorry I have enough money to life my live, so you cant buy the place on the top :D
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
No problem - it was only intended as a "wish list" item.
TheDawgz are very appreciative for the stats we have; and again offer our thanx for all your efforts!
____________
There's someone in our head but it's not us. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
autumn-time ;)
( others do it in summer, now I do it )
Beginning this week until end of september I will not be online as often as normal - time to relax and let it all hang out ...
Please be patient, if any error occurs on my pages.
Have a good time!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
fixed some bugs with rats (?? "~~~(,__,)^'>") on my stats pages.
If you have other suggestions to this ASCII art feel free to post it :D
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Are you prepared for when I change my username to "less than" "greater than" "double quote" "ampersand" ?? :-)
--Gary
p.s. Way to go Tim! Nice test case! |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Are you prepared for when I change my username to "less than" "greater than" "double quote" "ampersand" ?? :-)
--Gary
p.s. Way to go Tim! Nice test case!
The question is, what would the server pages display that I am scanning ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Hello!
I see my list of primes has stopped updating as of October 18 even though I am still getting them daily... just checking as to why.
Thanks :)
>There it goes- all is well... |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
typo in the scan script, which i had corrected
now fixed ...
dont worry - no prime is lost :)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Under all the stats pages there are the team stats. The number of WU attributed to all the people who do not have a team will soon overwhelm any team that has a name. Therefore the number 1 team for any port will all be the team with no name.
Can we not put in a script that puts anyone without a team name not to appear in the teams score lists.
I hope I explained that ok.
-Edit -for example the 121 port top 3 teams are;
Team Score
PrimeSearchTeam 7171862
13342711
Aggie_The_Pew 19106798
____________
Welcome to Holland
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
mhh - the <namless>-team is listed on the official stats (eg http://prpnet.primegrid.com:12000/team_stats.html)
I will have a look to my code, if I can supress this "team" in my team stats or exclude it from rankings ...
Otherwise the group of teamless crunchers maybe is interested in their "teamgrowth" ...
Any thoughts of teamless crunchers??
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
I will have a look to my code, if I can supress this "team" in my team stats or exclude it from rankings ...
Otherwise the group of teamless crunchers maybe is interested in their "teamgrowth" ...
On the start page I supressed the <nameless>-team in the top team ranking
On the allteam_stats page I kept it in the list to show up the many nonteam crunchers in context to the teams
On the challenge_stats page (Barbecue is a team race) I supressed the <nameless>-team in the ranking (at the moment empty, will be filled on 11/05/2011)
again: Any thoughts of teamless crunchers??
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1221 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
|
The next release of PRPNet will not show "non-teams" on the team pages. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
The next release of PRPNet will not show "non-teams" on the team pages.
then there will be a difference between total workunits crunched on server side and total workunits crunchend on team side. This difference might leads to unasked questions ...
On a balance sheet there had to be a note, not all workunits are counted!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
due to the closure (have a look here) I moved the 5oB port from active/the front page to the ancient
btw.:
team stats for ancient ports are not available yet
I hope I can do this next weekend ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
I think the project can also retire at PRPNet-Stats Help.
Regards Odi
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
I think the project can also retire at PRPNet-Stats Help.
Regards Odi
I am a little bit confused ...
I changed it yesterday before my post and I did not see any 5oB on the page
Timestamp of the page which is shown by my (german) browser firefox: "Dienstag, 8. November 2011 17:11:38"
maybe a caching problem because it is a static html page ??
please try to update your browser cache or post the timestamp of the page
thanks in advance
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Yep, you're right. Update without caching fix it.
Regards Odi
____________
|
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1221 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
then there will be a difference between total workunits crunched on server side and total workunits crunchend on team side. This difference might leads to unasked questions ...
On a balance sheet there had to be a note, not all workunits are counted!
They might not be counted on the team side, but they would be on the user side. I think it would be easy to explain to people that some users are not on teams, thus those workunits are not applied to any teams.
In the worst case, you can compute the difference to get the number of non-team workunits. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
then there will be a difference between total workunits crunched on server side and total workunits crunchend on team side. This difference might leads to unasked questions ...
On a balance sheet there had to be a note, not all workunits are counted!
They might not be counted on the team side, but they would be on the user side. I think it would be easy to explain to people that some users are not on teams, thus those workunits are not applied to any teams.
In the worst case, you can compute the difference to get the number of non-team workunits.
yes indeed!
I only laied down the brainstorm in my head ...
sometimes I should listen to my stomach ;)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
team stats for ancient ports are not available yet
I hope I can do this next weekend ...
FAIL!!!
team stats for ancient ports are available!
please notice - on older ports there has not been any team statistics, so they will be unavailable ever
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
The stats pages are different now (they have new headers). An example here: http://prpnet.mine.nu:12000/user_stats.html
This is a good improvement. However, that improvement seems to have messed up the more user friendly stats kept here (http://u-g-f.de/PRPNet/) by Sysadm@Nbg. As far as I can see, the latter is not being proper updated with today's work. |
|
|
John Honorary cruncher
 Send message
Joined: 21 Feb 06 Posts: 2875 ID: 2449 Credit: 2,681,934 RAC: 0
                 
|
The stats pages are different now (they have new headers). An example here: http://prpnet.mine.nu:12000/user_stats.html
This is a good improvement. However, that improvement seems to have messed up the more user friendly stats kept here (http://u-g-f.de/PRPNet/) by Sysadm@Nbg. As far as I can see, the latter is not being proper updated with today's work.
No worries. We are testing PRPNet 4.3.6 on that port. I have sent Sysadm@Nbg notice. I'm sure he'll update when time permits. Please note that no data is lost. Patience is appreciated. :)
____________
|
|
|
|
|
We are testing PRPNet 4.3.6 on that port. I have sent Sysadm@Nbg notice. I'm sure he'll update when time permits. Please note that no data is lost. Patience is appreciated. :)
Oh, I'm patient enough :) (and I was also aware no data was lost)
I only intended to point the issue, in case nobody else had noticed... |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Hey all
thank for the hints on all channels - please stop it now!!!! I am aware of the change..
please notice - there is a real life, what is financing my servers and other things
I have to do something else - so there will be no quick fix ...
Please be patient - maybe this evening maybe this week maybe this year
Sincerly yours
Uli aka Sysadm@Nbg
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
No update since yesterday except PPSElow port: prpnet.mine.nu:12000.
I think it's because page format on almost all ports was slightly changed. |
|
|
John Honorary cruncher
 Send message
Joined: 21 Feb 06 Posts: 2875 ID: 2449 Credit: 2,681,934 RAC: 0
                 
|
No update since yesterday except PPSElow port: prpnet.mine.nu:12000.
I think it's because page format on almost all ports was slightly changed.
Yes, Lennart updated all the servers yesterday, and we were late on notifying Sysadm@Nbg. I'm sure that as soon as he sees the changes, he'll make his updates and all will be back to normal.
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
noticed now (back from @work)
will update soon ... please be patient!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
update done
I expect some errors because I changed every script except "PPSElow" and (the not yet updated) "ESP".
Feel free to report any bug, I will be online an hour or be patient until tomorrow evening UTC
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
ESP was updated now
PPSElow2 was added (progress will follow tomorrow)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
The next days I am working on including wwww to the official stats.
Unfortunately I do not have enough time to stay consistently on change.
I think will turn up one or other errors.
Stay calm, I'm over it. An error message is not necessary, yet.
I let you know when I think I'm done and then ...
Thanks in advance
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
7 days after ...
- WSS and WFS are included in official stats
- ESP was archieved and started new
todo:
- a little tip text (as in beta) at index.php in first column
- testing, testing, testing
- bug repair
Feel free to report any bugs or further suggestions!
long term todo:
- saving ranking per day
- code optimization
not yet on the workplan
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Is it planned to add WFS and WSS at the "Basic Help" http://u-g-f.de/PRPNet/help.html. I noticed that these ports are not present at this page.
Regards Odi
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Is it planned to add WFS and WSS at the "Basic Help" http://u-g-f.de/PRPNet/help.html. I noticed that these ports are not present at this page.
Regards Odi
right now I have updated the page
If you dont see a change, try to clear your browser cache (it is a static html page)
thanks for the hint!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Thx. Looking good. I remember my fault last time, that's why I clear the cache of my browser several times before asking here ;)
Regards Odi
____________
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
if you wonder ...
today early morning (UTC) there was an unannounced downtime of ~ 1 hour
I am asking my hoster (strato ag - a child of german telekom ag) but get now answer, yet.
A reboot by my side or any hijacking can not be confirmed.
Hope the v-server runs now stabil as the past half year ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
bugs at WSS server grabbing were fixed
user and team stats failed after the update of the server software
you may see a huge increase today
thanks for the hint!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
PPSElow2 was moved from current to ancient stats due to this message from lennart
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
working on the todo and wishes list:
- display last hit on Primefinder
- user/team stats based on Prime finds (e.g. PPSElow)
- bug repair
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
- display last hit on Primefinder TheDawgz REALLY like that new info!
- user/team stats based on Prime finds. Oh no!! Not another ranking statistic for the competitively minded!! ;oP
TheDawgz have said it before - and we'll say it again .... Thank you for putting the "FUN" in PRPNet!!
____________
There's someone in our head but it's not us. |
|
|
|
|
|
A small issue, the user growth sum is wrong. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
A small issue, the user growth sum is wrong.
will fix it after my holiday, mid next week or later ...
greetings from not@home
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
some facts:
1) user growth as of project is (unique) user ID today of a single project minus (unique) user ID yesterday of the same project
2) sum user growth is (unique) user ID today of all projects minus (unique) user ID yesterday of all projects (for the freaks: it is a SELECT UNIQUE ... with many UNION joins over all the project tables)
so
- if a well known users starts crunching a second project, he will not appear in sum user growth but in users growth of the new project
- if a fresh user starts crunching two projects, he will be counted only once in sum user growth but in user growth of both projects
maybe the prefix "sum" is missleading ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
working on new features: pending tests
- scanning and saving into a database table is working
- presentation on user_search is online with some sorting bugs (i am working on)
- presentation on team_search to come
- presentation on projects to come
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Great work! Thank you, as always!! |
|
|
RogerVolunteer developer Volunteer tester
 Send message
Joined: 27 Nov 11 Posts: 1138 ID: 120786 Credit: 268,621,444 RAC: 21
                    
|
|
That's awesome! Clicking on the Project "in progress" number gives you the list of pending tests. User and Team stats lists pending tests across all PRPNet projects. Assignment and Expiry time is useful and the lists will make performance comparison much easier.
____________
|
|
|
|
|
|
Another issue with stats at primefinder:
(last hit 103 days ago) for SR5 but last find was 2 days ago |
|
|
|
|
|
I think thats because the prime you're talking about is still 'pending'
because it hasn't been reported to top5000 yet... |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Another issue with stats at primefinder:
(last hit 103 days ago) for SR5 but last find was 2 days ago
I cant grab the exact prime data while the found is on the "unreported" list here
When programming the feature I decide to use the proven primes.
It could be a false positiv too. Otherwise it should be named the "last probable hit".
I thought (and still think) to use the proven primes is the right way ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
The ESP stats must be reactivated. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
The ESP stats must be reactivated.
they were active, but a little bug in section server-stats was in it (user, team, pending no error)
fixed now, should work as expected ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Looks like you might have a bit of a problem with the stats for PPSELow.
1 - There is work in the queue.
2 - There is completed work shown in the server based stats.
3 - Nothing is being picked-up by your stats page(s).
Also noted that the server has been bumped up to Ver. 5.2 which is most likely why there is a problem.
As always, TheDawgz appreciate all your efforts in providing us with great PSA-PRPNet stats!!!
____________
There's someone in our head but it's not us. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Looks like you might have a bit of a problem with the stats for PPSELow.
1 - There is work in the queue.
2 - There is completed work shown in the server based stats.
3 - Nothing is being picked-up by your stats page(s).
Also noted that the server has been bumped up to Ver. 5.2 which is most likely why there is a problem.
Last notice from lennart yesterday was, that there are some errors ...
notice doesnt reach me because I wasnt online anymore at this time
I will check the status of PPSElow later the day, when I get home from @work
EDIT (~ 16:40 UTC): should be fixed now
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
The team stats of ppselow gone wild. Any fix? |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
The team stats of ppselow gone wild. Any fix?
<ignore the formerly statement>
fixed by make the database field case sensitiv
but it seems to me there was some upper/lower case changes at team-names in comparison with yesterday
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Some further thoughts:
The team ID is internal saved historical with collation utf8-general-ci. "ci" means "case insensitive". This caused the problem, when I save team IDs which only differ by upper/lower case (e.g.: Seti.Germany | SETI.Germany or BOINC.POLAND | BOINC.Poland | Boinc.Poland)
So I have to change the internal Collation.
The aftereffects have to been investigated ...
EDIT
... and :done:
utf8-general-ci was changed to utf8-bin
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
stats for project GFN524288 need to be updated on frontpage |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
stats for project GFN524288 need to be updated on frontpage
should work again ...
PS: on the 8th of December on, I'm definitely offline for a week or longer; feel free to report any bug here! I will take care not before 17th, please be patient!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
!! notice !!
I just unlocked multiple IPs
Please pay attention to the correct URL or use the following link: http://u-g-f.de/PRPNet/
The URL is case sensitive !!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
stats for PPSElow on frontpage need an update, numbers stucking |
|
|
|
|
You might want to wait until PRPNet 3.0.0+ is released as it uses MySQL. I think there will be more flexibility for the stats tables at that time.
will 3.0 include a better way to import user data ?
I have considered running prpnet but it is a 3 page print out
for the things you have to fill out when setting up I find this a little intimidating.
|
|
|
|
|
stats for PPSElow on frontpage need an update, numbers stucking
TheDawgz agree; the column "untested/in progress/total avail" for PPSELow at http://u-g-f.de/PRPNet/ does appear to be "stuck" at 589396.
Actual count of remaining work units is 421895 (at the time of this posting and according to http://prpnet.mine.nu:12000/server_stats.html) with 4645 work units in progress.
____________
There's someone in our head but it's not us. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
fixed a bug at my side, sorry!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Danke schön |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Crun-chi made me aware of some doublettes in the PPSElow prime list
this depends -in my opinion- on a server update, which I didnt notice: they were reported previous with a GMT timestamp and now with a UTC timestamp; the timestamp with the form is the unique identifier in my database table so they were stored twice; string "* GMT" is not eqal string '* UTC'
thanks for the hint Crun-chi; primelist well be cleaned with the next update
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13633 ID: 53948 Credit: 280,904,358 RAC: 40,710
                           
|
Crun-chi made me aware of some doublettes in the PPSElow prime list
this depends -in my opinion- on a server update, which I didnt notice: they were reported previous with a GMT timestamp and now with a UTC timestamp; the timestamp with the form is the unique identifier in my database table so they were stored twice; string "* GMT" is not eqal string '* UTC'
thanks for the hint Crun-chi; primelist well be cleaned with the next update
Do you have any idea when this server change happened?
____________
My lucky number is 75898524288+1 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Crun-chi made me aware of some doublettes in the PPSElow prime list
this depends -in my opinion- on a server update, which I didnt notice: they were reported previous with a GMT timestamp and now with a UTC timestamp; the timestamp with the form is the unique identifier in my database table so they were stored twice; string "* GMT" is not eqal string '* UTC'
thanks for the hint Crun-chi; primelist well be cleaned with the next update
Do you have any idea when this server change happened?
last duplicate entry was from "Saturday 17th of November 2012"
this was the date of the server update to version 5.2 (imho)
think the output was changed from the formerly GMT to the commonly used UTC
the dublicates are only in my database caused by the way I save the primes
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13633 ID: 53948 Credit: 280,904,358 RAC: 40,710
                           
|
last duplicate entry was from "Saturday 17th of November 2012"
this was the date of the server update to version 5.2 (imho)
think the output was changed from the formerly GMT to the commonly used UTC
the dublicates are only in my database caused by the way I save the primes
Ah, good. I was worried it might somehow be related to some changes we made in the last two days. One of which, btw, should keep the server clock running accurately. Tomorrow's challenge will actually start on time. :)
____________
My lucky number is 75898524288+1 |
|
|
|
|
|
Why is it that the stats here say my work units are 5 hours old (bigmac) when they are all turned in?
http://u-g-f.de/PRPNet/user_search?uid=brinktastee
Edit: Actually 3 of my pc's are reporting old units when they have been done for some time now.
Edit2: This is weird. I cant find any of the numbers from the above url in any log file on my computer. Something is not right. |
|
|
|
|
|
EDIT: The overly simplistic answer!!
There are times when:
your client requests work,
the server issues the work,
your client does not receive the work.
The server shows them as yours -
your client did not receive them and so can not return them as completed -
they will eventually time out and be re-issued.
EDIT: That is why they do not show up in any of your logs.
No harm - no foul.
____________
There's someone in our head but it's not us. |
|
|
|
|
EDIT: The overly simplistic answer!!
There are times when:
your client requests work,
the server issues the work,
your client does not receive the work.
The server shows them as yours -
your client did not receive them and so can not return them as completed -
they will eventually time out and be re-issued.
EDIT: That is why they do not show up in any of your logs.
No harm - no foul.
Thank you for the reply. I was kinda freaking out there for a while.
<big sigh of relief> |
|
|
|
|
Crun-chi made me aware of some doublettes in the PPSElow prime list
this depends -in my opinion- on a server update, which I didnt notice: they were reported previous with a GMT timestamp and now with a UTC timestamp; the timestamp with the form is the unique identifier in my database table so they were stored twice; string "* GMT" is not eqal string '* UTC'
thanks for the hint Crun-chi; primelist well be cleaned with the next update
You are welcome :)
Prime list is now without doublettes
____________
92*10^1439761-1 NEAR-REPDIGIT PRIME :) :) :)
4 * 650^498101-1 CRUS PRIME
314187728^131072+1 GENERALIZED FERMAT
Proud member of team Aggie The Pew. Go Aggie! |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
follow up cleanup:
- moved PPSElow to ancient as of today (suffix _20130106)
- Primes of 2012 in static table
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Stats for TRPDC need to be reactivated. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Stats for TRPDC need to be reactivated.
bug is fixed as of now
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
ardo  Send message
Joined: 12 Dec 10 Posts: 168 ID: 76659 Credit: 1,693,455,577 RAC: 7
                   
|
|
The stats for TRPDC and SGS can probably be moved to the ancient ports...
____________
Badge score: 2*5 + 8*7 + 3*8 + 3*9 + 1*10 + 1*11 + 1*13 = 151
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
sorry for late answer, I do some spring holidays (sadly it is still winter in Germany)
TRPDC: work is done, I will move it next week
SGS: project isnt closed, official status is "SUSPENDED", I will keep it alive and will not move it
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
TRPDC: work is done, I will move it next week
done now
if you capture any bug, feel free to report it
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
there are some problems with my stats
please be patient I will try to fix it this evening ...
UPDATE:
I fixed some bugs and watch now the further ongoing
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
deleted some duplicated entries in the prime list
thanks for the hint!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Lumiukko Volunteer tester Send message
Joined: 7 Jul 08 Posts: 165 ID: 25183 Credit: 747,914,486 RAC: 29,735
                           
|
|
Hello,
I have a suggestion for "PRPNet-Stats todays PrimeFinder" page.
Would it be possible to keep the name of the last primefinder(s) in the list?
It would also be nice to have links to primefinder lists in Primegrid server.
Maybe looking something like this:
Primefinder
Just a late Sunday night idea...
Best regards,
Lumiukko |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
it isnt quite easy - i had to think on how to
EDIT:
just half an hour later: done (just code a link and a complete different SELECT statement)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Lumiukko Volunteer tester Send message
Joined: 7 Jul 08 Posts: 165 ID: 25183 Credit: 747,914,486 RAC: 29,735
                           
|
|
That was fast.
Thanks for the great stats!
--
Lumiukko |
|
|
|
|
|
Agree! A nice, fun addition to the stats. Thanks!
--Gary |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
under investigation: negative numbers on 06/03/13 at SR5 port
2013-06-02 711,001 1,058 182 2 0 0 49 0
2013-06-03 442,792 -268,209 182 0 0 0 49 0
2013-06-04 443,844 1,052 182 0 0 0 49 0
http://u-g-f.de/PRPNet/proj_stats?proj=SR5
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13633 ID: 53948 Credit: 280,904,358 RAC: 40,710
                           
|
under investigation: negative numbers on 06/03/13 at SR5 port
2013-06-02 711,001 1,058 182 2 0 0 49 0
2013-06-03 442,792 -268,209 182 0 0 0 49 0
2013-06-04 443,844 1,052 182 0 0 0 49 0
http://u-g-f.de/PRPNet/proj_stats?proj=SR5
The problem is understood and should be corrected next weekend, after the PRPNet challenge is over. I don't want to try and fix it now and risk having PRPNet down when the challenge starts.
____________
My lucky number is 75898524288+1 |
|
|
|
|
The problem is understood and should be corrected next weekend, after the PRPNet challenge is over. I don't want to try and fix it now and risk having PRPNet down when the challenge starts.
@Uli and Mike - Thank you!
____________
There's someone in our head but it's not us. |
|
|
JimB Honorary cruncher Send message
Joined: 4 Aug 11 Posts: 916 ID: 107307 Credit: 974,532,191 RAC: 0
                    
|
|
The problem should now be fixed. I had the SR5 port down for about 15 minutes while redoing the stats. We had to wait until after the PRPNet SR5 Challenge stats were finalized. |
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13633 ID: 53948 Credit: 280,904,358 RAC: 40,710
                           
|
|
The challenge is over, the problem is fixed, and PRPNet credit is now being awarded again. It couldn't be done last week, pending resolution of all the statistics. So, no credit last week, lots of credit this week.
____________
My lucky number is 75898524288+1 |
|
|
|
|
|
The SR5 port could be removed now from stats. |
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13633 ID: 53948 Credit: 280,904,358 RAC: 40,710
                           
|
The SR5 port could be removed now from stats.
Rebirther, I'm not sure the people who ran the last jobs from that port and haven't yet gotten credit will appreciate having the stats turned off early. Most people like getting credit for the tasks they crunch.
____________
My lucky number is 75898524288+1 |
|
|
|
|
The SR5 port could be removed now from stats.
Rebirther, I'm not sure the people who ran the last jobs from that port and haven't yet gotten credit will appreciate having the stats turned off early. Most people like getting credit for the tasks they crunch.
But the port is empty and stats are going to ancient :o |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
I will move it to ancient, if I can catch some time to do it
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13633 ID: 53948 Credit: 280,904,358 RAC: 40,710
                           
|
I will move it to ancient, if I can catch some time to do it
Looking at the stats, I was mistaken. Moving SR5 to ancient won't affect the credit, so feel free to move it at your convenience.
____________
My lucky number is 75898524288+1 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
I will move it to ancient, if I can catch some time to do it
done now!
Suffix of saved table (last saved day): "_20130625"
no credits are lost (only column is renamed)
I think I have done all necessary changes
Feel free to report any bug (thanks for the many hints in the past!)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
lost off near WWW is planed?
( I have only one) and I know near all work must be redone: so it is normal?
____________
92*10^1439761-1 NEAR-REPDIGIT PRIME :) :) :)
4 * 650^498101-1 CRUS PRIME
314187728^131072+1 GENERALIZED FERMAT
Proud member of team Aggie The Pew. Go Aggie! |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
wwwwcl was faulty (please have a look in the other thread)
all "finds" maybe or not
according to serverside I dropped them all out and fill in the official (knowing there are some duplicates yesterday)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
OK, thanks for explanation...
P.S Why dont you remove SGS, it is empty long time ago...
____________
92*10^1439761-1 NEAR-REPDIGIT PRIME :) :) :)
4 * 650^498101-1 CRUS PRIME
314187728^131072+1 GENERALIZED FERMAT
Proud member of team Aggie The Pew. Go Aggie! |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
SGS was moved to "ancient" ...
have a look at discussion here
maybe there will be a SGS effort in future starting at zero
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
! downtime announcement !
my ISP just informed me about a downtime tomorrow (07/18/2013) between 07.00 and 09.00 MESZ (05.00 to 07.00 UTC)
there will be a reboot, so the server will be unavailable a few minutes in this timeframe
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
In your interest:
I am currently only sporadically on the internet with a small netbook because my computer has a non-repairable hardware defect.
I hope to be ready for use until the end of the week
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
keep cool and relax!
... and so do I: I am on holidays and will not be online for the next weeks
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Trying to switch from Total to Prime view on WSS gives me error
Fehlermeldung = Unknown column 'Prime' in 'field list'
http://u-g-f.de/PRPNet/alluser_stats.php?proj=WSS&selcol=Prime
This link seems to work fine - http://u-g-f.de/PRPNet/findlist_adv.php?proj=WSS
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
hmm - seems to me like a bug because of the pimes/finds difference
I will have a deeper look at it later this evening (UTC) ...
EDIT:
should work now
I had to include a decision construct for WFS and WSS
and of course I use the near_finds ;-)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
|
Thanks for the fix of tables.
Just minor issue - hyperlink "near_WSS And the future looks like" is over two lines.
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
Just minor issue - hyperlink "near_WSS And the future looks like" is over two lines.
this is fixed!
some behind the scene scanning scripts for team stats are fixed, too.
(maybe a relationship to the server move ?? 5 lines are lost in team_stats at 121, 27, ESP, FPS, GCW13, MEGA and PRS)
some behind the scene scanning scripts for user stats are fixed, too
(maybe a relationship to the server move ?? GFN column loss in user_stats at FPS, GCW13 and PRS)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
JimB Honorary cruncher Send message
Joined: 4 Aug 11 Posts: 916 ID: 107307 Credit: 974,532,191 RAC: 0
                    
|
|
We went from PRPNet Server 5.2.0 to 5.2.8 on all ports. Previously most were running 5.2.0 while WSS was 5.2.5 and the GFN's were all 5.2.8 already. That's probably responsible for the differences you're seeing. It's hard to tell from your description but are you missing real information that you need for the stats? |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
It's hard to tell from your description but are you missing real information that you need for the stats?
as far as I can concern: no!
the changes on team stats belong to layout, which I had to delete before scanning and import because of confusing my scanning scripts - so I had to delete less lines
the GFN-column on Prime-Ports has been saved into database but not displayed
in the past at the affected ports had never been found any GFN, so a lot of zeros were scanned and saved
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
The page http://www.primegrid.com/download/ppsehigh_all.html has broken links to
http://www.primegrid.com/download/server_stats.html
http://www.primegrid.com/download/pending_tests.html
http://www.primegrid.com/download/user_stats.html
http://www.primegrid.com/download/user_primes.html
http://www.primegrid.com/download/user_gfns.html
http://www.primegrid.com/download/userteam_stats.html
http://www.primegrid.com/download/teamuser_stats.html
http://www.primegrid.com/download/team_stats.html
http://www.primegrid.com/download/team_primes.html
____________
|
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13633 ID: 53948 Credit: 280,904,358 RAC: 40,710
                           
|
The page http://www.primegrid.com/download/ppsehigh_all.html has broken links to...
I'm not sure what that page is for, honestly. It looks like a capture of the status page from a long-retired prpnet port. Perhaps it was placed there for posterity.
It's NOT a live prpnet port. The links can never work.
There's a similar "static" status page for 5ob, too.
____________
My lucky number is 75898524288+1 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
:(
the update has been caused a downtime of the webserver; sorry I wasnt aware of the duration
now it is up an running again
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
today at 9:33 MESZ an iPad from NL was blocked because it asked for some images which doesnt exist (apache 404)
the problem isnt new at all to me, so I create some symbolic links which should fix the problem; the IP was blocked because of an abuse rule
the IP from the iPad is unblocked now
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
just made an emergency reboot because server was unavailable (notice came from my external watchdog)
after a quick look I cant see any cause, stats should be okay as far as I can see
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
ESP has been moved to 'ancient'
more info in this thread
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Alert!
My ISP will restart my Server in the next 70 hours because of reasons.
The reboot may cause a downtime, so the services could be temporarily unavailable ...
I hope this will have not any impact to the upcomming challenge.
Personally I have no influence at what time they do the reboot.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Hi,
long time ago, I've asked if it was possible to query detailed stats based on email rather than on UID. If I well remember it was not possible because you don't have the email info right?
The reason is that I've changed my UID and then I need to 'manually' query & merge data to have a whole, unified stat.
I think about a solution,, but I don't know if it's feasible or if you want/have time to do it.
What about managing multiple uid info in the URL and 'group' the result:
http://u-g-f.de/PRPNet/user_search?uid=MyID1?uid=MyID2?uid=MyIDx
Thanks
____________
Badge Score: 1*2 + 5*5 + 9*6 + 3*7 + 2*8 + 1*9 = 127 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
While I have no direct access to the servers, email is not possible (only admin knows it)
Maybe I can do some tricks this weekend, if weather isnt as smart as today ;-)
I will keep it in mind fka todo-list :)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Thanks a lot. That's good news.
PS: I won't wish you storm and hailstones this week end :p
____________
Badge Score: 1*2 + 5*5 + 9*6 + 3*7 + 2*8 + 1*9 = 127 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
for testing only, could be buggy, does not make sense in some cases ...
two_user_search?uid1=<user-id 1>&uid2=<user-id 2>
e.g.
http://u-g-f.de/PRPNet/two_user_search?uid1=SysadmAtNbg&uid2=Aillas
please say, two different user are enough for you; its organic growed php-code so it isnt easy to make the included sql-statements high flexible ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
new feature (from the todo list): grafical view of range stats
e.g.
http://u-g-f.de/PRPNet/range_stats.php?proj=121
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1905 ID: 352 Credit: 4,056,750,098 RAC: 4,353,900
                                 
|
new feature (from the todo list): grafical view of range stats e.g. http://u-g-f.de/PRPNet/range_stats.php?proj=121
Nice one, I like it.
It is possible to decode color meaning based on numbers in the table but it might be convenient to put a legend as well.
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
|
|
|
FANTASTIC !!!!!
It's working very well.
for testing only, could be buggy, does not make sense in some cases ...
two_user_search?uid1=<user-id 1>&uid2=<user-id 2>
e.g.
http://u-g-f.de/PRPNet/two_user_search?uid1=SysadmAtNbg&uid2=Aillas
No sun today? ;)
please say, two different user are enough for you; its organic growed php-code so it isnt easy to make the included sql-statements high flexible ...
Yes, it's enough, at least for me.
____________
Badge Score: 1*2 + 5*5 + 9*6 + 3*7 + 2*8 + 1*9 = 127 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
It is possible to decode color meaning based on numbers in the table but it might be convenient to put a legend as well.
I will have a look into the manuals what could be done; but not today because today there is sun again, not a silly weather like yesterday ...
EDIT Jun 16th
- legend included on left bottom
- axis title included
- form is rotated by 90° if there are more than 5 forms (better reading)
- WFS / WSS handling (because there is no specific form)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
My ISP just informed me that there will be a reboot in the next 72 hours.
So the server and the stats may be unavailable
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
due to an user error the pending-table was dropped (face to desk)
but dont panic: within an hour it should be refilled ;)
sorry for that ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
MEGA was moved to ancient
last day was 07/17/14 --> suffix _20140717
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Hi,
it seems that since you move MEGA to 'old', stat with 2 users doesn't work anymore.
It's nor urgent, I can wait a rainning day ;)
Thanks
____________
Badge Score: 1*2 + 5*5 + 9*6 + 3*7 + 2*8 + 1*9 = 127 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
it seems that since you move MEGA to 'old', stat with 2 users doesn't work anymore.
from remote it seems to me I missed a fix
later the day I will repair it ...
EDIT
... :done: should work again
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
My ISP just informed me that there will be a shutdown on 07/30/2014 between 7 and 9 MESZ (means 5 and 7 UTC).
So the server and the stats may be unavailable in this time frame.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
My ISP just informed me that there will be a shutdown on 09/03/2014 between 9 and 11 MESZ (means 7 and 9 UTC).
So the server and the stats may be unavailable in this time frame.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
I realised a feature request: original prpnet-ports are available via hyperlink in column one at starting page
benefit: quick link to the server at primegrid
drawback: the availability of a server is only shown by color of the "port:" text (red/offline or green/online)
any thoughts?
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Tyler Project administrator Volunteer tester Send message
Joined: 4 Dec 12 Posts: 1077 ID: 183129 Credit: 1,356,894,427 RAC: 18,050
                      
|
I realised a feature request: original prpnet-ports are available via hyperlink in column one at starting page
benefit: quick link to the server at primegrid
drawback: the availability of a server is only shown by color of the "port:" text (red/offline or green/online)
any thoughts?
Could you not have colored hyperlinks?
____________
275*2^3585539+1 is prime!!! (1079358 digits)
Proud member of Aggie the Pew
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
I realised a feature request: original prpnet-ports are available via hyperlink in column one at starting page
benefit: quick link to the server at primegrid
drawback: the availability of a server is only shown by color of the "port:" text (red/offline or green/online)
any thoughts?
Could you not have colored hyperlinks?
I thought about not to link if the port is down;
anyhow: i only check twice an hour, so it may come back while I am not linking to it
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
I realised a feature request: original prpnet-ports are available via hyperlink in column one at starting page
benefit: quick link to the server at primegrid
drawback: the availability of a server is only shown by color of the "port:" text (red/offline or green/online)
any thoughts?
TheDawgz like the changes and issue our Tail_Wag_Of_Approval
____________
There's someone in our head but it's not us. |
|
|
|
|
I realised a feature request: original prpnet-ports are available via hyperlink in column one at starting page
benefit: quick link to the server at primegrid
drawback: the availability of a server is only shown by color of the "port:" text (red/offline or green/online)
any thoughts?
I like it; keep it, keep it. /JeppeSN |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
I'm offline until next saturday!
If somethings happens with stats and/or my server - never mind, be patient and have a cup of tea ... ;-)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Thank You Very Much for the regular updates / translations of the PRPNet points into PrimeGrid's credits.
Received my first PSA badge :)
Thank You
Philippe |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
while I have to update my server operating system, service is unavailable for the next hours
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
all should be up and running
feel free to report any bug or misbehaviour
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
On the page http://u-g-f.de/PRPNet/findlist_adv.php?proj=WFS I see two entries with the same number, 7915127223513593. One says reported 4:48 in the morning, the other 10:34 in the night (or 22:34).
Why is this?
I noticed because upon copy-pasting to a speadsheet, there was one row too many, compared to the known number of near-finds.
The page http://prpnet.primegrid.com:13000/user_finds.html claims it was reported at the early morning time.
/JeppeSN |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
maybe a relict of a change or of a bug
I dropped it from my database
if it appear again, I had to investigate ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
because of some abuse of my server in the last days I activated some kind of blocking based on IP
if you are blocked in error,
- change your IP
- wait some hours (up to 24 hours in serious cases)
- send me a private message with your IP, so I can unblock it, if I am online
thanks
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
my server was unreachable (webserver seemed to respond),
so I asked my ISP for an hard reboot
seems to run again now ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
some kind of misconfiguration in my http-server causes a little downtime
it is up and running again
if you get any error, feel free to report it
(I hope there isn't any other bug)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
my isp informed me, that there are some internet connection issues of unknown origin at his infrastructure;
my own monitoring shows no downtime of my http server.
I hope this will last in that state; if not please be patient, there is nothing I can do ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
sorry for a little hickup
I had to restart the database during the installation of some security problems fixing packages
challange statistics should not been affected
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
because of a ddos I had to lock a lot of IP ranges
if it is ongoing, many will follow
you can complain to the attackers
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
seems to me, it is over (for now)
meanwhile I update me iptables-rules so you can be blocked earlier than before
sorry for this, but I had to protect the integrity of my server
I regret to do this strict reglementations, but there is people, who likes to destroy instead to improve ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
I have to reboot my server; it may be temorarily unavailable in a few minutes for a short time
---
It is up again and working, as far as I can see
if there are any issues please contact me
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
!! DOWNTIME-Announcement !!
my isp informed me that there will be a downtime (reboot) for my server on 10/14/2015 between 0700 to 0900 MESZ (0500 to 0700 UTC)
EDIT:
Seems to me it was done some minutes before
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
I moved GFN 32768 and GFN 66536 to ancient port (with suffix as of today "_20151018")
there is no outstanding work at the ports, so I think Mike will shut down them soon (see here)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13633 ID: 53948 Credit: 280,904,358 RAC: 40,710
                           
|
I moved GFN 32768 and GFN 66536 to ancient port (with suffix as of today "_20151018")
there is no outstanding work at the ports, so I think Mike will shut down them soon (see here)
You're one step ahead of me -- I was going to contact you today to let you know those ports can be moved to "ancient". Now that this is done, we can fully shut them down.
____________
My lucky number is 75898524288+1 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
I moved GFN 32768 and GFN 66536 to ancient port (with suffix as of today "_20151018")
there is no outstanding work at the ports, so I think Mike will shut down them soon (see here)
You're one step ahead of me -- I was going to contact you today to let you know those ports can be moved to "ancient". Now that this is done, we can fully shut them down.
\o/ call it a sort of telepathy ... ;-)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
you may notice the loss of some WSS near find
I asked Mike to drop some small, erroneous reported ...
EDIT: the primefinder-page doesnt work at the moment for WSS; there is a unsolved problem due to the drop of finds
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Dave  Send message
Joined: 13 Feb 12 Posts: 2902 ID: 130544 Credit: 1,293,992,146 RAC: 3,662,700
                      
|
you may notice the loss of some WSS near find
I asked Mike to drop some small, erroneous reported ...
That's better - cleaner look.
And well done Mattozan on the 6th find! |
|
|
Dave  Send message
Joined: 13 Feb 12 Posts: 2902 ID: 130544 Credit: 1,293,992,146 RAC: 3,662,700
                      
|
you may notice the loss of some WSS near find
I asked Mike to drop some small, erroneous reported ...
That's better - cleaner look.
And well done Mattozan on the 6th find!
...Apparently this find is an error :(. |
|
|
|
|
And well done Mattozan on the 6th find!
Mattozan made that find back in April, a long time before the Coma Wall Challenge, so it is not 6th one in the current challenge.
Edit: Ah, I see you already realized that.
/JeppeSN |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
I implemented a notice mechanism if there is a duplicate entry in the findlist;
hopefully I can locate the duplicate entries earlier;
challenge is: there are two rightfully duplicate entries at the moment
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
I implemented a notice mechanism if there is a duplicate entry in the findlist;
hopefully I can locate the duplicate entries earlier;
That sounds really good. Thanks!
challenge is: there are two rightfully duplicate entries at the moment
Can you explain that in more details? How are they "rightfully duplicate"?
When I look at http://u-g-f.de/PRPNet/primelist_adv.php?proj=27, I see the largest find occurring twice. I suspect the oldest date is always the correct one. In this case, the official announcement agrees with me.
/JeppeSN |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
challenge is: there are two rightfully duplicate entries at the moment
Can you explain that in more details? How are they "rightfully duplicate"?
beware: finds, not primes!
the two near_finds are
2930875090703129 (0 -192 p)
2943520566730759 (0 +183 p)
if I mentioned it right this came from a double check because a maybe bad application ?!
EDIT: as of now I m checking primes, if there is "the same" problem
EDIT2:
at the moment there are no duplicate primes in active projects
I set up a check script to monitor this, too
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
as of sunday 12:00 MEZ there was a duplicate entry in the finds list: "1347577483826921 (0 +611 p)"; I eliminated it now
diagnosis shows a network error between saturday and sunday during one of the update processes
I'm on the trail of the bug ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Because of some script kiddies I had to do some improvements to protect my server.
If you are locked out let me know and I will check my settings
Sorry for this and especially if you are locked out unprovocked, but a running server with most regular users is better than no server ... :-/
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
it's a loaded word, but three more IP's are "banned for life"
[SPOILER]
hey chinese script kiddies, a ban time of 24 hours does not keep you from it there every time to search again - kiss my ass and search to the infinity!
[/SPOILER]
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
!! DOWNTIME-Announcement !!
my isp informed me that there will be a short downtime (reboot) for my server this night between 2300 to 0600 MESZ (2200 to 0500 UTC)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
On the page http://u-g-f.de/PRPNet/findlist_adv.php?proj=WSS, the entry which seems to be newest, 164592680045437421, is an error. It is anomalous in that it is missing the parenthesis indicating how "near" to a real WSS it is. Testing with the PARI/GP function I mentioned elsewhere shows that it is false entry (it is not a near-WSS).
This wrong entry does not seem to appear on http://prpnet.primegrid.com:13001/user_finds.html and should be deleted.
/JeppeSN |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
On the page http://u-g-f.de/PRPNet/findlist_adv.php?proj=WSS, the entry which seems to be newest, 164592680045437421, is an error. It is anomalous in that it is missing the parenthesis indicating how "near" to a real WSS it is. Testing with the PARI/GP function I mentioned elsewhere shows that it is false entry (it is not a near-WSS).
This wrong entry does not seem to appear on http://prpnet.primegrid.com:13001/user_finds.html and should be deleted.
/JeppeSN
i dropped it; thanks for the hint
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
The Wieferich port http://prpnet.primegrid.com:13000/user_finds.html currently shows three bad results:
502120133287020851 (+16 -7395 p)
502120137269331797 (+16 -7395 p)
502120140018209627 (+16 -7395 p)
These are clearly wrong (it must be +1 or -1 modulo p, we show 2 to the power of (p-1)/2; it can never be +16). Using the PARI/GP function I mentioned elsewhere, we find:
502120133287020851 (-1 -97807419906810423 p)
502120137269331797 (-1 +193523397996216218 p)
502120140018209627 (-1 +136977237859538609 p)
which shows that these three primes are not near-Wieferichs.
The same bad result are copied at http://u-g-f.de/PRPNet/findlist_adv.php?proj=WFS.
/JeppeSN
|
|
|
JimB Honorary cruncher Send message
Joined: 4 Aug 11 Posts: 916 ID: 107307 Credit: 974,532,191 RAC: 0
                    
|
The Wieferich port http://prpnet.primegrid.com:13000/user_finds.html currently shows three bad results:
502120133287020851 (+16 -7395 p)
502120137269331797 (+16 -7395 p)
502120140018209627 (+16 -7395 p)
Removed from PRPNet.
And I've just screwed up the statistics by missing a typo in a SQL statement, which I'll now have to fix. Later edit: done. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
Droped it from the findlist, too
Hopefully I got it all because I Act far away from my Computers with a smartphone
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
Droped it from the findlist, too
Hopefully I got it all because I Act far away from my Computers with a smartphone
You got them, but now I notice som older ones:
42008149220240417 (+128 -23243 p)
214714110964439699 (+16384 -29001 p)
/JeppeSN |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
as of now the list of blocked ip's is growing fast
261 ip's are blocked due to abuse
details at http://u-g-f.de/droplist.html (updated every hour)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
My ISP will reboot my server in the next few days, because of a security fix. Unfortunately the exact date was not mentioned.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
My ISP will reboot my server in the next few days
notice: today at 10:54 UTC the server was rebooted
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
On the challenge stats page, would it be possible to add a total (sum) row to show the total number of tests done by all participants and the accumulated score for all users during the challenge? /JeppeSN |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
sorry for late answer, I was on holiday and offline - as mentioned in another thread
It is possible!
Because of "user" is a requiered parameter and "team" is a possible parameter of the prpnet-client, I will count the sum only at the bottom of the user-table. There might be some user without team, so the sum of team tests would not match the sum of user tests; "blank" team isn't displayed.
first tries at the past challenge-stats
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
sorry for late answer, I was on holiday and offline - as mentioned in another thread
It is possible!
Because of "user" is a requiered parameter and "team" is a possible parameter of the prpnet-client, I will count the sum only at the bottom of the user-table. There might be some user without team, so the sum of team tests would not match the sum of user tests; "blank" team isn't displayed.
first tries at the past challenge-stats
Great! I see it at http://u-g-f.de/PRPNet/2016_12_WFS_Challenge.html, and I like it. Thanks. /JeppeSN |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
you may have noticed --> it is february and the PRIME-tour is running
all PRIME-finds of the PRPNet-ports except the wwww-ports "Wieferich/WFS" and "Wall-Sun-Sun/WSS" count for the challenge
more info in this thread
stats at this page
except the announcement at the landing page there will not be any special stats at my domain
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
!! DOWNTIME-Announcement !!
my isp informed me that there will be a downtime (some minutes) for my server on 02/21/2017 between 1100 to 1300 MEZ (1000 to 1200 UTC)
update:
currently down (since 11:25 MEZ)
update2:
currently running (since 17:07 MEZ), ISP regrets the unplanned last of downtime
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
GCW was moved to ancient
saving date (suffix): _20170501
there is no outstanding work at the port, so I think it will be closing soon. For details please have a look here
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
JimB Honorary cruncher Send message
Joined: 4 Aug 11 Posts: 916 ID: 107307 Credit: 974,532,191 RAC: 0
                    
|
|
The GCW PRPNet port is now closed and archived. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
I do some improvements for compression and caching
if you notice after now any error please let me know
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
My ISP informed me: due to security updates my server will be reboot this week, unfortunately there is no exact date.
It could happen every night between 20:00 and 05:00 CEST (this is 18:00 to 03:00 GMT).
After the reboot the server and its services should startup automaticly.
update
downtime was today from 00:18:16 to 06:26:25 CEST
I had to reactivate the server by myself; dont know what my ISP did, yet
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
tonight my server has done a reboot (downtime ~1 hour, sorry for this)
as of now I dont know why :(
later the day I will have a look at it ...
update
ISP informed me: there was a hardware issue on the node where the server was located. They had to managed it quickly and are sorry for the downtime
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
you may have noticed: the server was unreachable earlier today
my ISP informed me, that there was some serious internal DNS issues between 14:00 and 15:10 UTC
sorry for that, but doesnt matter while PRPNet ports are still down
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
fixed some parsing problems with
- the pending tests at all reopened ports and
- the user-primes at 27 & 121 ports
should work now as expected; feel free to post any further issues
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
My ISP informed me:
1) due to security updates my server will be reboot between 04/23/18 and 04/27/18, unfortunately there is no exact date. It could happen every night between 22:00 and 06:00 CEST (this is 20:00 to 04:00 GMT). After the reboot the server and its services should startup automaticly.
2) due to electricity reasons my server will be down for a few minutes on 05/02/18 between 11:00 and 13:00 CEST (this is 09:00 and 11:00 GMT)
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
first announced downtime was 04/24/18 between 23:15 and 23:30 CEST (this was 21:15 to 21:30 GMT)
waiting for the second ...
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
second announced downtime was 05/02/18 between 11:10 and 18:40 CEST (this was 09:10 to 16:40 GMT)
my ISP responds my question to the much longer than announced duration of the downtime with a short "there was a hardware problem"
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
due to a failed update my server was recovered round about 17:10 UTC to the last backup point (~14:35 UTC today);
some statistics may be not up to date now, but this should fixing itself in the next few hours;
there should be no loss of data as far as I can estimate
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
-- downtime warning --
due to the release- and update-schedule the os of my virtual machine have to be updated.
because of the policies of my hoster this will not be an upgrade but a complete reinstall of the whole machine. this will be done in the next few months by me. A distinct date isnt planed yet. I will do this, if there is a big enough spare time in my personal work-life-balance.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
I have a question about the PRPNet statistics.
On this page it says that my prpnet total is 26,495,559 http://u-g-f.de/PRPNet/user_search?uid=Dingo
On this page it says my PSA (PRPNet, Manual Sieving) is 2,292,111 http://www.primegrid.com/show_badges.php?userid=125
I guess you believe that the Primegrid one is correct but when I am doing PRPNet tasks I check the first page.
Cheers,
____________
Proud Founder of
Have a look at my WebCam
My best Prime 46776558131072+1 |
|
|
dukebgVolunteer tester
 Send message
Joined: 21 Nov 17 Posts: 240 ID: 950482 Credit: 23,670,125 RAC: 0
                  
|
I have a question about the PRPNet statistics.
On this page it says that my prpnet total is 26,495,559 http://u-g-f.de/PRPNet/user_search?uid=Dingo
On this page it says my PSA (PRPNet, Manual Sieving) is 2,292,111 http://www.primegrid.com/show_badges.php?userid=125
I guess you believe that the Primegrid one is correct but when I am doing PRPNet tasks I check the first page.
Cheers,
Boinc credit = PRPNet credit / 20 |
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13633 ID: 53948 Credit: 280,904,358 RAC: 40,710
                           
|
I have a question about the PRPNet statistics.
On this page it says that my prpnet total is 26,495,559 http://u-g-f.de/PRPNet/user_search?uid=Dingo
On this page it says my PSA (PRPNet, Manual Sieving) is 2,292,111 http://www.primegrid.com/show_badges.php?userid=125
I guess you believe that the Primegrid one is correct but when I am doing PRPNet tasks I check the first page.
Cheers,
Boinc credit = PRPNet credit / 20
That's partly true.
It's true for the current PRPNet projects, but some older PRPNet projects were 10:1.
Also, your BOINC PSA credit also includes manual sieving credit, and sometimes credit from other sources such as manual testing. For many people it's likely that their BOINC PSA credit will not be exactly 5% of their PRPNet points.
____________
My lucky number is 75898524288+1 |
|
|
|
|
|
Thanks for the reply I thought that there was a process there somewhere.
Cheers
____________
Proud Founder of
Have a look at my WebCam
My best Prime 46776558131072+1 |
|
|
|
|
That's partly true.
It's true for the current PRPNet projects, but some older PRPNet projects were 10:1.
Also, your BOINC PSA credit also includes manual sieving credit, and sometimes credit from other sources such as manual testing. For many people it's likely that their BOINC PSA credit will not be exactly 20% of their PRPNet points.
5%?
____________
My DC mathematical side :)
|
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13633 ID: 53948 Credit: 280,904,358 RAC: 40,710
                           
|
That's partly true.
It's true for the current PRPNet projects, but some older PRPNet projects were 10:1.
Also, your BOINC PSA credit also includes manual sieving credit, and sometimes credit from other sources such as manual testing. For many people it's likely that their BOINC PSA credit will not be exactly 20% of their PRPNet points.
5%?
5%
____________
My lucky number is 75898524288+1 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
-- downtime warning --
due to the release- and update-schedule the os of my virtual machine have to be updated.
because of the policies of my hoster this will not be an upgrade but a complete reinstall of the whole machine. this will be done in the next few months by me. A distinct date isnt planed yet. I will do this, if there is a big enough spare time in my personal work-life-balance.
Jan -> end of May
okay, an huge delay on my side; i actually plan to do this on thursday this week
the server might be offline a couple of hours, DON'T PANIC!
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
since a few hours the server and the websites are stable in production
feel free to report any bugs or abnormal behavior here
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
|
Sysadm@Nbg, thank you for the stats pages.
They're great.
Sysadm@Nbg wrote: ...
feel free to report any bugs or abnormal behavior here
Since you asked :)
I noticed that the user names' links on a "prophecy" page are broken.
For example, load http://u-g-f.de/PRPNet/alluser_proph.php?proj=27.
Hover the mouse cursor on a user name.
The link is something like
http://u-g-f.de/PRPNet/user_search?uid=someuser
and, if you click on it, you'll get a 404 like error page:
Not Found
The requested URL was not found on this server.
I believe the links are missing ".php" after "user_search" and should be
http://u-g-f.de/PRPNet/user_search.php?uid=someuser
as this is what I see for users' links in other pages.
Again, thanks a lot for the stats !
Edit:
Oh, I've just remembered to mention.
At the bottom, just after the table in a stat page, there is
last database update: CEST (GMT +02:00)
But the date/time of the database update does not show up.
____________
"Accidit in puncto, quod non contingit in anno."
Something that does not occur in a year may, perchance, happen in a moment. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
I noticed that the user names' links on a "prophecy" page are broken.
For example, load http://u-g-f.de/PRPNet/alluser_proph.php?proj=27.
Hover the mouse cursor on a user name.
The link is something like
http://u-g-f.de/PRPNet/user_search?uid=someuser
and, if you click on it, you'll get a 404 like error page:
Not Found
The requested URL was not found on this server.
I believe the links are missing ".php" after "user_search" and should be
http://u-g-f.de/PRPNet/user_search.php?uid=someuser
as this is what I see for users' links in other pages.
thanks for the hint, should be fixed now
Oh, I've just remembered to mention.
At the bottom, just after the table in a stat page, there is
last database update: CEST (GMT +02:00)
But the date/time of the database update does not show up.
yes, there is a problem with the database I'm investigating for a longer timespan, but at the moment no idea how to solve
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
...
thanks for the hint, should be fixed now
...
It is !
Thank you.
...
yes, there is a problem with the database I'm investigating for a longer timespan, but at the moment no idea how to solve
No problem.
Thanks !
____________
"Accidit in puncto, quod non contingit in anno."
Something that does not occur in a year may, perchance, happen in a moment. |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
...
yes, there is a problem with the database I'm investigating for a longer timespan, but at the moment no idea how to solve
No problem.
Thanks !
Sometimes you do not see the forest for the trees. I should have shown the code to a third party earlier. You do not find your own mistakes well:
A little typo with an huge impact - now the old solution should work again.
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Menipe Volunteer tester Send message
Joined: 2 Jan 08 Posts: 235 ID: 17041 Credit: 103,537,056 RAC: 20,843
                      
|
|
My ID shows up as lowercase and uppercase in the Factorial Prime Search stats and the Primorial Prime Search stats. How can I get the stats updated to use my ID with the upper case?
____________
|
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13633 ID: 53948 Credit: 280,904,358 RAC: 40,710
                           
|
My ID shows up as lowercase and uppercase in the Factorial Prime Search stats and the Primorial Prime Search stats. How can I get the stats updated to use my ID with the upper case?
You can't.
Essentially you created two separate PRPNet usernames. I combine the credit when I do the manual credit each week, but there's no way to combine the accounts together.
____________
My lucky number is 75898524288+1 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
planned outtime!
my ISP informed me, my server will be down between 02/10/2020 22:00 MEZ (21 UTC) and 02/11/2020 06:00 MEZ (05 UTC) due to security updates - maybe not all the time
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
planned outtime!
my iSP informed me, my server will be down up to two hours between 04/13/2020 19:00 UTC and 04/14/2020 04:00 UTC due to security updates
the stats will not be available during the outtage, stats calculation should work without any dataloss after the maintanance
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
planned outtime!
my iSP informed me, my server will be down up to two hours between 07/13/2020 20:00 UTC and 07/14/2020 04:00 UTC due to security updates
the stats will not be available during the outtage, stats calculation should work without any dataloss after the maintanance
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
switched to ssl/https with letsencrypt
http-request should be redirected to https, you don't need to update links
let me know, if there is any kind of missbehaviour
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
|
|
switched to ssl/https with letsencrypt
http-request should be redirected to https, you don't need to update links
let me know, if there is any kind of missbehaviour
That is nice! /JeppeSN |
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13633 ID: 53948 Credit: 280,904,358 RAC: 40,710
                           
|
switched to ssl/https with letsencrypt
http-request should be redirected to https, you don't need to update links
let me know, if there is any kind of missbehaviour
That's what we use at PrimeGrid and it has worked very well for us. The auto-renewals have worked flawlessly.
____________
My lucky number is 75898524288+1 |
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
switched to ssl/https with letsencrypt
http-request should be redirected to https, you don't need to update links
let me know, if there is any kind of missbehaviour
That's what we use at PrimeGrid and it has worked very well for us. The auto-renewals have worked flawlessly.
oh, a stable proof ;-)
thanks to let me knew
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
planned outtime!
my iSP informed me, my server will be down up to two hours between 03/01/2021 21:00 UTC and 03/02/2021 01:00 UTC due to security updates
the stats will not be available during the outtage, stats calculation should work without any dataloss after the maintanance
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
121 is history, you can find the stats in the ancient section with suffix "_20210410"
details about the run out of work in this thread[/url]
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|
Sysadm@Nbg Volunteer moderator Volunteer tester Project scientist
 Send message
Joined: 5 Feb 08 Posts: 1199 ID: 18646 Credit: 634,177,371 RAC: 345,971
                      
|
|
planned outtime!
my iSP informed me, my server will be down up to two hours between 06/24/2021 01:00 UTC and 06:00 UTC due to security updates
the stats will not be available during the outtage, stats calculation should work without any dataloss after the maintanance
____________
Sysadm@Nbg
my current lucky number: 113856050^65536 + 1
PSA-PRPNet-Stats-URL: http://u-g-f.de/PRPNet/
|
|
|