ODBC Driver Requests Exceeding Maximum Concurrent ConnectionsDescription<!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internalTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:0; } .sp td{ border-bottom: 1px solid; border-right: 1px solid; border-color:#E0E0E0; background-color: #ffffff; height: 20px; padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; } .sphr td{ border-right: 1px solid; border-bottom: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; height: 20px; } .title { color: #D1232B; font-weight:; font-size:25px; } .hd1{ color: #D1232B; font-weight:; font-size:18px; } .hd2{ color: #646464; font-weight:bold; font-size:16px; } .hd3{ color: #7a7a7a; font-weight:; font-size:16 px; text-decoration:; } .hd4{ color: #000000; font-weight:bold; font-size:14 px; text-decoration:; } --> ODBC Driver Requests Exceeding Maximum Concurrent Connections Problem ODBC driver connections are converted to SOAP calls before they are sent to ServiceNow. As of Helsinki, instances are configured to handle concurrent SOAP calls via the API_INT semaphore pool. Prior to Helsinki, they were handled by the Default semaphore pool. The number of SOAP calls that can be processed at any time is limited by the number of semaphores. ServiceNow ships with 4 API_INT semaphores per node. Therefore, the limit of concurrent ODBC driver calls is 4 multiplied by the number of nodes in the instance. The number of semaphores by pool can be seen under Semaphore Sets > API_INT in your instance's stats page: {your instance name}.service-now.com/stats.do Symptoms If the semaphore pools are saturated, new requests are queued up to 150 waiting requests. After the queue of 150 waiting requests is met, additional requests are rejected with the HTTP code 429. If a single session exceeds 5 waiting requests, any new request to the same session will fail with HTTP code 202. The ODBC driver reuses sessions and therefore each running instance of the driver is stuck to a single node. Keep in mind that the API_INT pool is shared by all type of inbound integrations to ServiceNow, REST, JSON, SOAP, etc. In the event that some other integration saturates the API_INT semaphore pool, the ODBC driver is blocked from processing until a semaphore becomes available. See KB0564204 (Troubleshooting Inbound Integrations performance) for more details. CauseIf the semaphore pool that handles SOAP requests becomes saturated, new inbound requests are queued until either the queue is overloaded (150) or the session waiters limit is hit (5). ResolutionEssentially the solution here is simple, do not send more ODBC queries that can be processed simultaneously. There is no single magic bullet to solve this issue but here is a recommended approach. To avoid exceeding the limit: Ensure that the ODBC queries run quickly. Before taking any other course of action, check the stats.do page and if the API_INT semaphore is busy processing long running ODBC queries, find out how to optimize those queries - Troubleshooting ODBC driver issues - KB0538943If you have optimized the ODBC queries as far as you can get them, try breaking the queries into smaller chunks and running them in smaller groups over longer periods of timeIf you are getting 202 responses, try using multiple simultaneous ODBC clients. Each client will receive its own Java session object, thus allowing you to bypass the limit of 5 session waiters.If you are certain that you have done all you can to keep ODBC queries optimized and spreading them out over time, contact ServiceNow support to see if you need more nodes.