You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use Azure DocumentDB,
and use php 7.1 + mongo-php-library
DocumentDB seems auto disconnect when some time...
and php use connection pool by default (mongodb driver),
and no close function,
resulting in many CLOSE_WAIT (bad connection pool),
so next user to connection will be db error,
I changed options serverSelectionTryOnce to false,
solved db error issue, but it slow to connection db (retry),