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
Hi Everyone,
I have created a flask application which connects to Neo4j AuraDB Free graph database instance. I have a global Graph instance which connects my neo4j db. I have the below configuration in my code.
It works fine for 8 hours or so. After that I start to see an error message py2neo.errors.ServiceUnavailable: Cannot connect to any known routers. If I restart my flask server it starts working fine. I really need help in fixing this issue.
Here is the error stack:
File "C:\Users\USER\AppData\Local\Programs\Python\Python37\lib\site-packages\py2neo\database.py", line 518, in query
result = self.auto(readonly=True).run(cypher, parameters)
File "C:\Users\USER\AppData\Local\Programs\Python\Python37\lib\site-packages\py2neo\database.py", line 991, in run
readonly=self.readonly)
File "C:\Users\USER\AppData\Local\Programs\Python\Python37\lib\site-packages\py2neo\client\__init__.py", line 1338, in auto_run
cx = self._acquire(graph_name)
File "C:\Users\USER\AppData\Local\Programs\Python\Python37\lib\site-packages\py2neo\client\__init__.py", line 1111, in _acquire
return self._acquire_rw(graph_name)
File "C:\Users\USER\AppData\Local\Programs\Python\Python37\lib\site-packages\py2neo\client\__init__.py", line 1203, in _acquire_rw
ro_profiles, rw_profiles = self._get_profiles(graph_name, readonly=False)
File "C:\Users\USER\AppData\Local\Programs\Python\Python37\lib\site-packages\py2neo\client\__init__.py", line 1016, in _get_profiles
self.refresh_routing_table(graph_name)
File "C:\Users\USER\AppData\Local\Programs\Python\Python37\lib\site-packages\py2neo\client\__init__.py", line 1064, in refresh_routing_table
raise ServiceUnavailable("Cannot connect to any known routers")
py2neo.errors.ServiceUnavailable: Cannot connect to any known routers
The text was updated successfully, but these errors were encountered:
ashwathan
changed the title
ServiceUnavailable: Cannot connect to any known routers after some hours connecting to AuraDB
ServiceUnavailable: Cannot connect to any known routers after some hours - while connecting to AuraDB
Sep 19, 2022
Hi Everyone,
I have created a flask application which connects to
Neo4j AuraDB Free
graph database instance. I have a global Graph instance which connects my neo4j db. I have the below configuration in my code.I'm using python 3.7.8 and py2neo 2021.2.3.
It works fine for 8 hours or so. After that I start to see an error message
py2neo.errors.ServiceUnavailable: Cannot connect to any known routers
. If I restart my flask server it starts working fine. I really need help in fixing this issue.Here is the error stack:
The text was updated successfully, but these errors were encountered: