Unfortunatety, there is no way to resume the execution of the pending orders but there is a workaround to avoid this situation. It consists of disabling the BE L1 cache (deactivation of cache). To do this, edit the orchestrator cdd file and:
1). Add the property "be.om.localCache.className" in the agent class level for the Inference Agent as follows:
===============
<inference-agent-class>
......
<property-group>
<property name="be.om.localCache.className" value="com.tibco.cep.runtime.service.om.impl.invm.NoOpLocalCache"/>
</property-group>
</inference-agent-class>
=================
2). Set the local cache size to 0 in " agent-classes-> inference-agent-class -> local-cache"(default is 1024).
=========
<local-cache>
<eviction>
<max-size>0</max-size>
<max-time>900</max-time>
</eviction>
</local-cache>
========