Written by

Senior Startups and Community Programs Manager at InterSystems Corporation
Article Evgeny Shvarov · Aug 31, 2016 1m read

DeepSee cubes building troubleshooting

Hi!

Sometimes you see that call to DeepSee cube building method:

w ##class(%DeepSee.Utils).%BuildCube("CubeName")

does nothing.

Here are my 2 cents on possible reasons.

1. Run DeepSee Reset method in certain Namespace:

NAMESPACE> w ##class(%DeepSee.Utils).%Reset()

and try again.

2. Make sure, that all the indices in your base class for the cube are rebuilt, rebuild them and run it again:

w ##class(%DeepSee.Utils).%BuildCube("CubeName")

Hope this will save some time for you, and will be helpful as was to me.

Comments

Alessandro Marin · Oct 4, 2016

Thank you for the tip.

This problem never happened to me so I am curious to hear what is the output of 

w ##class(%DeepSee.Utils).%BuildCube("CubeName")

is when the problem occurs. 

To understand the underlying cause of the problem is there any way this problem can be reproduced? 

0
Evgeny Shvarov  Oct 4, 2016 to Alessandro Marin

That's easy. Add some indices to the Cube's source class and do not rebuild it. Voila.

0