We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Nebula:2.6.1. Kubernetes: 1.20.7 Azure
Nebula Cluster Info: graphd: 1 storaged: 2 metad: 1
We're getting below error when ingesting data:
Storage Error: More than one request trying to add/update/delete one edge/vertex at the same time.
Any idea how to fix this error?
Using Python library to ingest data.
` config = Config() config.max_connection_pool_size = 1
ok = connection_pool.init([('10.155.51.233', 9669)], config) session = connection_pool.get_session('root', 'nebula')
`
The text was updated successfully, but these errors were encountered:
Did you use the same session instance with multiple threads? The session is not thread-safe.
Sorry, something went wrong.
It seems you are inserting the same edge with 2 different sessions. Is this intended? Please check the data input source if this is not.
There is no more info about this issue. I will close it first, and you can reopen anytime it if needed. Thanks.
Aiee
No branches or pull requests
Nebula:2.6.1.
Kubernetes: 1.20.7
Azure
Nebula Cluster Info:
graphd: 1
storaged: 2
metad: 1
We're getting below error when ingesting data:
Storage Error: More than one request trying to add/update/delete one edge/vertex at the same time.
Any idea how to fix this error?
Using Python library to ingest data.
`
config = Config()
config.max_connection_pool_size = 1
`
The text was updated successfully, but these errors were encountered: