Hello guys,<div><br></div><div>I have a problem that started to happen after I upgraded to git head last night. No configuration changes were made and this is the intriguing part.</div><div><br></div><div>I have SQLite being mounted on tmpfs on busy Dell 1950s. After some time on the busy moments of the day, FS starts to not delete channels/calls from SQLite and leaves very little trace for me to track.</div>
<div><br></div><div>I grep&#39;ed the logs for SQL errors and found nothing.. The only part of the log that I could spot and that called my attention was this line that repeated several times during the periods where the problem occurs:</div>
<div><br></div><div>switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, &quot;queued event at a lower priority %d/%d!\n&quot;, index, was);</div><div><br></div><div>11:23:13.977874 [WARNING] switch_event.c:1353 queued event at a lower priority 1/0!</div>
<div><br></div><div>Which is printed from the following code:</div><div><br></div><div><div>                   for (index = (*event)-&gt;priority; index &lt; 3; index++) {</div><div>                        int was = (*event)-&gt;priority;</div>
<div><span class="Apple-tab-span" style="white-space:pre">                        </span>if (switch_queue_trypush(EVENT_QUEUE[index], *event) == SWITCH_STATUS_SUCCESS) {</div><div><span class="Apple-tab-span" style="white-space:pre">                                </span>if (index != was) {</div>
<div><span class="Apple-tab-span" style="white-space:pre">                                        </span>switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, &quot;queued event at a lower priority %d/%d!\n&quot;, index, was);</div><div><span class="Apple-tab-span" style="white-space:pre">                                </span>}</div>
<div><span class="Apple-tab-span" style="white-space:pre">                                </span>goto end;</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>}</div></div><div><br></div><div>From what I could understand on the code, seems like there are 3 event priority queues and that message occurs when queue 0 is full. How exactly that relates to the problem, I am not sure so I see myself here lost in translation. Could the core_event_handler not receive some messages therefore not execute the sql statements? If that&#39;s the case, maybe I lost some log line telling me that we were loosing events?</div>
<div><br></div><div>I hope someone can shed some light.</div><div><br></div><div>Thank you,<br clear="all">Joćo Mesquita<br>
</div>