-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ODatabase Connection not getting closed #145
Comments
Hi, we are also living the same problem. We modified the source code to test by adding We are using two distributed nodes, running multithread console application with 4 threads and 1 static ODatabase object instance per thread. We are sending approx 400k commands in 10 hours and we see approx 1000 connections when we list using LIST CONNECTIONS command. When we terminate the application number of connections decrease gradually. |
Any update on this issue? |
please share me the code for oreintdb 2.2.33 database connection through c#.net |
We are running into an issue where we are reaching the max number of concurrent connections. Even calling
Close()
orDispose()
on the database instance, we are seeing the connections not being disposed properly.In the
Close()
method of theODatabase
class it does a check for_containsConnection
, but that instance variable is never set to true so the connection is never closed. Please advise if this is a bug or if there is another way to dispose the database connection. #144The text was updated successfully, but these errors were encountered: