Environment
- YugabyteDB - All versions
Issue
When connecting from .NET Application to Yugabyte DB, the client application fails with timeout errors.
Resolution
By default, the .NET driver queries and brings a large number of system tables. This can potentially result in timeout issues. To avoid this error the below configuration can be set while creating a connection from the .NET application
connStringBuilder.ServerCompatibilityMode = ServerCompatibilityMode.NoTypeLoading;
Comments
0 comments
Please sign in to leave a comment.