I don't have an exact solution for this. You can refer to this forum thread about the cause of this wait.
However, using the MAXDOP = 1 you may get a great performance improvement.
SELECT *
FROM Table
OPTION (MAXDOP 1)
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am getting high CXSYNC_PORT waiting type for some of the quereis, all my query are of same type, the wait occurs randomly for 1-2 queires. Generally my execution time is less than 1 sec but due to this wait it goes more than 30 sec.
Below is query plan all my queries are having similar plan only it randomly waits for 1-2 query while other query execute within 1 sec.
It usually the first query which is executed if system is idle for some time.
I don't have an exact solution for this. You can refer to this forum thread about the cause of this wait.
However, using the MAXDOP = 1 you may get a great performance improvement.
SELECT *
FROM Table
OPTION (MAXDOP 1)