The previous two solutions are both intended to increase the rate at which outbound data channel requests are processed. Another approach to this type of problem is to reduce the overall number of outbound data channel requests that are made.
If the first two solutions in this article do not resolve the problem, engage the product team where the requests originate, to investigate possible ways to reduce the overall number of outbound data channel requests.
To determine the source of the majority of data channel requests, perform the following SQL query against the ePO database:
Select Source, count (*) as 'Number of Occurrences' from EPOAgentHandlerDataChannelWQ Group By Source Order by Source asc
The results of this query list all sources for data channel requests ordered by the number of Occurrences. The item at the top of the list is the source responsible for the most data channel requests.