Hi ,
Can i know where you have seen whether the cube has been unloaded from the memory or not?
as its urgent for me.please help me gentle mans.
Seeing if a cube is unloaded.
-
- Regular Participant
- Posts: 155
- Joined: Fri May 20, 2011 8:17 am
- OLAP Product: Applix,Cognos TM!
- Version: applix9.0Cognos tm1 9.5.1
- Excel Version: Excel 2010 2007
- Steve Rowe
- Site Admin
- Posts: 2464
- Joined: Wed May 14, 2008 4:25 pm
- OLAP Product: TM1
- Version: TM1 v6,v7,v8,v9,v10,v11+PAW
- Excel Version: Nearly all of them
Re: Seeing if a cube is unloaded.
As far as I am aware it is not possible to see if a cube has been unloaded or not in the sense of looking at a flag.
If you have performance monitor running it may be possible to deduce that a cube has been unloaded by comparing stats at different times, doable in a TI but a challange to get the detection logic accurate I should think.
Cheers,
If you have performance monitor running it may be possible to deduce that a cube has been unloaded by comparing stats at different times, doable in a TI but a challange to get the detection logic accurate I should think.
Cheers,
Technical Director
www.infocat.co.uk
www.infocat.co.uk
-
- Regular Participant
- Posts: 155
- Joined: Fri May 20, 2011 8:17 am
- OLAP Product: Applix,Cognos TM!
- Version: applix9.0Cognos tm1 9.5.1
- Excel Version: Excel 2010 2007
Re: Seeing if a cube is unloaded.
HI,
Thanks for your reply.
When I opened the “}StatsByCube” cube to see the “Total Memory allocation” for cubes total
I am seeing the number like this ” 123787776”
So is it kilobytes or bytes?
Thanks.
Thanks for your reply.
When I opened the “}StatsByCube” cube to see the “Total Memory allocation” for cubes total
I am seeing the number like this ” 123787776”
So is it kilobytes or bytes?
Thanks.
-
- Site Admin
- Posts: 6667
- Joined: Sun May 11, 2008 2:30 am
- OLAP Product: TM1
- Version: PA2.0.9.18 Classic NO PAW!
- Excel Version: 2013 and Office 365
- Location: Sydney, Australia
- Contact:
Re: Seeing if a cube is unloaded.
The metric is actually "Total Memory Used", not "Total Memory allocation".mincharug.shulft wrote:HI,
Thanks for your reply.
When I opened the “}StatsByCube” cube to see the “Total Memory allocation” for cubes total
I am seeing the number like this ” 123787776”
So is it kilobytes or bytes?
So let's see what the manual has to say about it:
If that seems higher than you were expecting, then as I told you in the other thread you should looking for rules and/or feeders that may be holding the "unloaded" cube(s) in memory.The Operations Guide Which Is (Sometimes) Your Friend wrote:The total amount of memory used by a cube, measured in bytes.
"To them, equipment failure is terrifying. To me, it’s 'Tuesday.' "
-----------
Before posting, please check the documentation, the FAQ, the Search function and FOR THE LOVE OF GLUB the Request Guidelines.
-----------
Before posting, please check the documentation, the FAQ, the Search function and FOR THE LOVE OF GLUB the Request Guidelines.
-
- MVP
- Posts: 733
- Joined: Wed May 14, 2008 11:06 pm
Re: Seeing if a cube is unloaded.
For a specifc cube, you can check 'Number of populated numeric cells' (in }StatsStatsByCube) for that particular cube (in }PerfCubes) for 'LATEST' (in }TimeIntervals) .mincharug.shulft wrote:When I opened the “}StatsByCube” cube to see the “Total Memory allocation” for cubes total
So what is going to happen next? Are you setting a flag that says whether the next user can log in and view their cubes... because you've made sure that because the last cube unloaded that there's now enough memory available to load some new ones?
Are you aware that your memory management strategy is seriously unusual?
There are some alternatives:
- archive off some old data to bring down the cube sizes
- rejig rules and feeders to only address certain slices of cube data so that your entire model is not being calculated unnecessarily?
Robin Mackenzie
-
- Regular Participant
- Posts: 155
- Joined: Fri May 20, 2011 8:17 am
- OLAP Product: Applix,Cognos TM!
- Version: applix9.0Cognos tm1 9.5.1
- Excel Version: Excel 2010 2007
Re: Seeing if a cube is unloaded.
Thanks i got it.
-
- Regular Participant
- Posts: 155
- Joined: Fri May 20, 2011 8:17 am
- OLAP Product: Applix,Cognos TM!
- Version: applix9.0Cognos tm1 9.5.1
- Excel Version: Excel 2010 2007
Re: Seeing if a cube is unloaded.
HI,
we implemented the TI script using cubeunload function and we are able to see the defference once we ON "performance monitor" BUT
why we cannot see the change of the RAM-Allocation in the Taskmanager's?
Could all gentle man's help me here ?.
thanks in advance to all.
Cheers.
we implemented the TI script using cubeunload function and we are able to see the defference once we ON "performance monitor" BUT
why we cannot see the change of the RAM-Allocation in the Taskmanager's?
Could all gentle man's help me here ?.
thanks in advance to all.
Cheers.
-
- Regular Participant
- Posts: 164
- Joined: Tue May 04, 2010 10:49 am
- OLAP Product: Cognos TM1
- Version: 9.4.1 - 10.1
- Excel Version: 2003 and 2007
Re: Seeing if a cube is unloaded.
It's because the TM1 process doesn't release the RAM back to the operating system. Instead it sticks it on it's own "garbage" pile for re-use. So as far as Windows is concerned, TM1 is still using that RAM.mincharug.shulft wrote:HI,
we implemented the TI script using cubeunload function and we are able to see the defference once we ON "performance monitor" BUT
why we cannot see the change of the RAM-Allocation in the Taskmanager's?
Could all gentle man's help me here ?.
thanks in advance to all.
Cheers.
Note, this question has almost certainly been answered before (probably in more detail than I can muster right now). A quick search always helps.
Also as others have suggested, it seems unlikely the approach you're taking is the best solution to your underlying problem.