WR Updates, Not Updating (4.0.3a patch)
As I see it's our primary "enemy" right now, is the pauses in the processing..
When files are being processed, it's done at a decent speed.
Processing for 2 hours and then make an 6-8 hour pause, works OK(ish), when data is up to date..
However, when data is so far behind as it is now, we loose all progress in those pauses.
If Rollie can/will disable that pause (even if only temporary), I reckon that we can catch in less than 24 hours..
Then Rollie can re-enable the pause, if he thinks it's best for the system..
When files are being processed, it's done at a decent speed.
Processing for 2 hours and then make an 6-8 hour pause, works OK(ish), when data is up to date..
However, when data is so far behind as it is now, we loose all progress in those pauses.
If Rollie can/will disable that pause (even if only temporary), I reckon that we can catch in less than 24 hours..
Then Rollie can re-enable the pause, if he thinks it's best for the system..
Doing census mainly on Draenor; Raluf - Nimsay - Lusmo - Quixx - Sosyan - Garthog - Trubin - Zalistra - Zesmi and Djaang
- bringoutyourdead
- Forums Admin & general flunky
- Posts: 1432
- Joined: Fri Nov 07, 2008 1:11 pm
- Location: Texas, USA
I don't think that Rollie has enabled a 'Pause'. I expect that what you think are pauses are nothing more than the database engine working on data you aren't aware of. We don't know how Rollie has his database environment setup (what engine, what tables, indices and other structures)FuxieDK wrote:As I see it's our primary "enemy" right now, is the pauses in the processing..
If Rollie can/will disable that pause (even if only temporary), I reckon that we can catch in less than 24 hours..
Then Rollie can re-enable the pause, if he thinks it's best for the system..
Which is exactly why I wrote "If Rollie can/will disable...."bringoutyourdead wrote:I don't think that Rollie has enabled a 'Pause'. I expect that what you think are pauses are nothing more than the database engine working on data you aren't aware of. We don't know how Rollie has his database environment setup (what engine, what tables, indices and other structures)FuxieDK wrote:As I see it's our primary "enemy" right now, is the pauses in the processing..
If Rollie can/will disable that pause (even if only temporary), I reckon that we can catch in less than 24 hours..
Then Rollie can re-enable the pause, if he thinks it's best for the system..

Doing census mainly on Draenor; Raluf - Nimsay - Lusmo - Quixx - Sosyan - Garthog - Trubin - Zalistra - Zesmi and Djaang
Can't that compile of total stats be skipped, until we have catched up?Rollie wrote:Yeah, that pause isn't so much of a pause in processing, but a pause in active file processing while it compiles total stats. There is a long post-processing routine that is run that basically gets all this raw data into a form that allows me to display it quickly on the site.
Right now, you've disabled upload, which means we loose critical data for people that level... However, there is no improvement in process speed, which, overall, is aworse situation now, than before..
Doing census mainly on Draenor; Raluf - Nimsay - Lusmo - Quixx - Sosyan - Garthog - Trubin - Zalistra - Zesmi and Djaang
I'll leave your question to Rollie...
But as to losing data... I have started to cut out the .lua and put it into folders called Lua Unsent 1, Lua Unsent 2, etc, because I now no longer can prune/purge submitted data since I can't submit. That way, when Rollie is able to restore uploading function, I'll have at least something to submit. But, admittably and truth be told, it's a stopgap method at best.
And we face another storm... We are seeing an unprecedented scale of new data... and most of it passes us by. Rollie, any chance of getting a temporary upgrade of the addon out quickly, even if it's English only, lacks bars, new faces, WIM / wholib support, etc... but just had the basic coding necessary to catch goblins, worgen and 81+ to at least some degree?
Balgair has most graciously shared some of her work with me, so I am slightly better off than the general public. But basically... I believe we, the submission makers, would appreciate even limited tools to work with while you go through (undoubtably huge effort of) tinkering the site to Cataclysm compatible form and refine the code to higher level of "play togehter" with other addons.
As usual, thank you for everyone who managed to finish reading my musings.
Comments most welcome, also. 
But as to losing data... I have started to cut out the .lua and put it into folders called Lua Unsent 1, Lua Unsent 2, etc, because I now no longer can prune/purge submitted data since I can't submit. That way, when Rollie is able to restore uploading function, I'll have at least something to submit. But, admittably and truth be told, it's a stopgap method at best.
And we face another storm... We are seeing an unprecedented scale of new data... and most of it passes us by. Rollie, any chance of getting a temporary upgrade of the addon out quickly, even if it's English only, lacks bars, new faces, WIM / wholib support, etc... but just had the basic coding necessary to catch goblins, worgen and 81+ to at least some degree?
Balgair has most graciously shared some of her work with me, so I am slightly better off than the general public. But basically... I believe we, the submission makers, would appreciate even limited tools to work with while you go through (undoubtably huge effort of) tinkering the site to Cataclysm compatible form and refine the code to higher level of "play togehter" with other addons.
As usual, thank you for everyone who managed to finish reading my musings.


So am I, but sadly, that isn't what everyone is doing1974ER wrote:But as to losing data... I have started to cut out the .lua and put it into folders called Lua Unsent 1, Lua Unsent 2, etc,

I've also tried to change
Code: Select all
local MAX_CHARACTER_LEVEL = 80;

Doing census mainly on Draenor; Raluf - Nimsay - Lusmo - Quixx - Sosyan - Garthog - Trubin - Zalistra - Zesmi and Djaang
You need to edit the actual scan process bit, that tells it what to search for - a fair way down in the lua, under the section labelled "Take a CensusPlus" is a segment of code like this:
That's how I've edited it, originally the numbers were 71, 79, and 80, 80. Yes it looks more logical to tell it to do 81-84 but I broke it when I tried that and it didn't search 71-80, so just using a clunky search band to get results at all
I'm actually not censusing that much atm, probably should be but since I'm not going to get goblins or worgens (totally broke the addon when I tried adding them so gave up, that's evidently beyond me!), it feels less effective than if I could see everything. Plus I overdid it last month and want to just enjoy playing atm (even if my copy STILL hasn't arrived so I'm actually only playing my troll druid /sigh
)
Code: Select all
local job = CensusPlus_CreateJob( 71, 84, nil, nil, nil );
InsertJobIntoQueue(job);
job = CensusPlus_CreateJob( 85, 85, nil, nil, nil );
InsertJobIntoQueue(job);

I'm actually not censusing that much atm, probably should be but since I'm not going to get goblins or worgens (totally broke the addon when I tried adding them so gave up, that's evidently beyond me!), it feels less effective than if I could see everything. Plus I overdid it last month and want to just enjoy playing atm (even if my copy STILL hasn't arrived so I'm actually only playing my troll druid /sigh
