Have more than 1024 Ros containers
I create a simple table like this:
then I insert more than1024 different values and then
run :
SELECT DO_TM_TASK('moveout');
SELECT DO_TM_TASK('mergeout');
after that, I check number of partitions by this query:
and result is:
for check number of Ros containers I run this query:
and result:
So I have more than 1024 number of Ros containers. I can insert more data and not getting any error.
but for other situations I get "too many ros containers" for having more than 1024 Ros containers.
what is happened?
0
Comments
Hi,
When you ran the TM Moveout command, you should have received an error...
Example:
You should also get an error if you try to insert directly into ROS:
Can you check the values of the following config parameters?
Example:
There's a different between blowing past the limit in a single operation and creeping up to it slowly. It's generally a bad thing to get data "stuck" in the WOS with moveout failing. I suspect if you load 900 partitions into the wos, moveout, then load 133 more you can see the behavior. The WOS isn't partitioned, so inserts there can sneak past some of the max partition count checks.
@Jim_Knicely this is very useful , thanks