Page 1 of 1

Methods for Loading and Unloading Feeders in memory?

Posted: Mon Aug 27, 2012 3:58 am
by fleaster
Hi all,
I just wanted to clarify the methods for unloading/loading feeders (particularly in relation to getting conditional feeders to work properly) :

(a) Shutdown+Restart Server = Unloads+Loads feeders

(b) Unload cube from memory + Use a "CellGetN" TI process to subsequently Reload the cube back to memory = Unloads+Loads feeders

(c) CubeProcessFeeders TI process = Loads (new) feeders only

(d) Delete rules = no impact on feeders as they stay in memory

...is that about right, or are there more options for refreshing feeders...?

thanks!

Matt

Re: Methods for Loading and Unloading Feeders in memory?

Posted: Mon Aug 27, 2012 7:48 am
by lotsaram
Plus save rule (either manually or with RuleLoadFromFile TI command).

Note both CubeProcessFeeders and re-saving a rule both don't just load new feeders, they load all feeders. To get rid of old feeders you need to either unload the cube (without persistent feeders) or restart the server (without persistent feeders). If there are cube dependencies then unloading a cube may not be possible but TM1 won't tell you and the unload will just fail silently.

Re: Methods for Loading and Unloading Feeders in memory?

Posted: Tue Aug 28, 2012 12:46 am
by fleaster
ok cool, thanks for the tips!