<div dir="ltr">If this happens just once or twice, then I wouldn&#39;t worry.<div><br></div><div>We start by allocating 100 elements to track the monitoring activities, and basically two things tend to happen:</div><div><br>
</div><div>a) Each thread is pushing elements on the stack indicating what the thread is up to;</div><div><br></div><div>b) Periodically, the monitoring thread pulls everything off the stack and updates the table sl_components to stow in the database what the thread is up to.</div>
<div><br></div><div>If, for some reason, threads are throwing things onto the stack much faster than the monitoring thread pulls them off, then the stack will need to get resized.  That&#39;s a bit unusual, hence the warning message that you are seeing.</div>
<div><br></div><div>Note that each time the stack runs out, the function monitor_state() doubles its size, which should very quickly make it implausible that you&#39;d need more space unless the monitoring code has gone pretty crazy.</div>
<div><br></div><div>When we were testing the facility, we set the initial stack size to something small (~10), so as to be sure that the &quot;need to double the size&quot; logic worked OK.  It&#39;s a wee bit surprising that you&#39;d have &gt;&gt;100 monitoring events stacked up for processing.</div>
<div><br></div><div>Have you got a cluster with a lot of nodes?</div></div>