JaedenRuiner
Well-known member
- Joined
- Aug 13, 2007
- Messages
- 340
- Programming Experience
- 10+
Well,
This is more of a "If you think it would be an interesting puzzle to play with."
I've been working on it for a while and tried different things, none of which seem to work out right, and perhaps someone else has already played with this and has the awesome solution, as this is probably more math than anything else.
Progress Meters. Simple computation, CurrentItems over MaxItems equals a Percent. Not too difficult. But what if you don't know the MaxItems exactly?
I have 16 Stages within my Applications Operation, and at the onset of each stage I know the "Max" for that stage, which I enter into _stageMaxs array (strangely enough
)
I've tried:
so basically when the First stage is known to have a max of say 5000, at first my max starts out as 5000 * 16, but when stage 2 is executed, which is say 4000, it becomes 9000 * 15...you get the picture.
This worked a little, but it ended up being very over balanced...shifting from 47% to suddenly 97% between the last two stages. Wasn't very smooth.
I've Also Tried:
Granted I did the appropriate DivByZero checks and all, but for the math, this one had other problems, like, jumping about from 40% to 23% then upto 63% then back down to 33%....oivay.
These are all based on SQL Statments and the relevant counts associated with them, So I do know at each stage exactly how many are going to be altered, changed, inserted, etc. In Some stages, there are two or three commands, so for those situations the when the subsequent commands are executed, their individual counts are just added to the _stageMaxs(CurrentStage).
The 16 Stages are as follows:
The processing stage is rather complicated, but without the hairy details of how many Updates/Summations and Inserts are made in that stage, I know the count will always be the same as Stage 13 prior to it, so I have the Max before the stage begins.
Now all I'm trying to find is an adequate computation to apply to the sum of all the stages in sequence as they are computed, in order to guesstimate the MaxItems until such time as I reach Stage 16 and Have the actual Max there.
Thanks,
This is more of a "If you think it would be an interesting puzzle to play with."
I've been working on it for a while and tried different things, none of which seem to work out right, and perhaps someone else has already played with this and has the awesome solution, as this is probably more math than anything else.
Progress Meters. Simple computation, CurrentItems over MaxItems equals a Percent. Not too difficult. But what if you don't know the MaxItems exactly?
I have 16 Stages within my Applications Operation, and at the onset of each stage I know the "Max" for that stage, which I enter into _stageMaxs array (strangely enough
I've tried:
VB.NET:
Max = _stageMaxs.Sum * (_stageMaxs.Length - CurrentStage)
This worked a little, but it ended up being very over balanced...shifting from 47% to suddenly 97% between the last two stages. Wasn't very smooth.
I've Also Tried:
VB.NET:
Max = (_stageMaxs.Sum * _stageMaxs.Length) \ CurrentStage
These are all based on SQL Statments and the relevant counts associated with them, So I do know at each stage exactly how many are going to be altered, changed, inserted, etc. In Some stages, there are two or three commands, so for those situations the when the subsequent commands are executed, their individual counts are just added to the _stageMaxs(CurrentStage).
The 16 Stages are as follows:
- SelectInto - About 3000-5000
- Update (Twice) About 3000-5000 Each
- SelectInto - Can be 0 and usually is, but sometimes may have a couple
- Delete - Same as Stg 3
- SelectInto - 75%-95% of 1
- SelectInto - 1% of Stg 5, maybe, can be 0, but is usually like 10
- Delete (Thrice) Same as Stg 6, but Stg 6 is a < 0, where 7 is <= 0 Where clause
- SelectInto - Up To 10% of Stg5, can be 0, but is often a couple 100
- Delete(Twice) - First = Stg8, second can be a little more Due to the difference between GroupBy Sums()
- Insert Into (XLS File) = Remainder in Table from Stg1 after Stg6-Stg9 Processing
- Insert Into (XLS File) = Stg3, if 0 the Export doesn't occur
- Insert Into (XLS File) = Stg6, if 0 the Export doesn't occur
- Insert Into (XLS File) = Stg8, if 0 the Export doesn't occur
- Insert Into = Remainder in Table from Stg5 after Stg6-Stg9 Processing
- Select (Used by an Adapter to file a DataTable) - Distinct from Stg14 so About 1/3 of Stg14
- Processing Stage = Stg13
The processing stage is rather complicated, but without the hairy details of how many Updates/Summations and Inserts are made in that stage, I know the count will always be the same as Stage 13 prior to it, so I have the Max before the stage begins.
Now all I'm trying to find is an adequate computation to apply to the sum of all the stages in sequence as they are computed, in order to guesstimate the MaxItems until such time as I reach Stage 16 and Have the actual Max there.
Thanks,